Forked mumble-django project from https://bitbucket.org/Svedrin/mumble-django
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

172 lines
7.3 KiB

15 years ago
15 years ago
15 years ago
15 years ago
15 years ago
15 years ago
15 years ago
15 years ago
15 years ago
15 years ago
15 years ago
  1. =======================
  2. Mumble-Django changelog
  3. =======================
  4. Version 1.4, 9 Feb 2010:
  5. ------------------------------
  6. * Remove automatic Murmur version detection, as it isn't possible with Ice.
  7. http://www.zeroc.com/forums/help-center/4781-multiple-connections-different-server-versions.html
  8. * Remove packaged slices for Murmur, due to the massive overhead the packaging
  9. creates compared to the little gain - whether people need to configure the slice
  10. version or path doesn't really matter anyway.
  11. * Enhance checkenv command to check:
  12. - for the root directory's permissions.
  13. - if the slice file is configured and readable.
  14. * Remove getslice command which is now unnecessary.
  15. Version 1.3, 7 Feb 2010:
  16. ------------------------------
  17. * Added getslice command that downloads the current HEAD slice version from
  18. Mumble's Git repository.
  19. * Added slice for 1.2.2 and updated settings.SLICE_VERSION accordingly.
  20. Version 1.2, 31 Jan 2010:
  21. ------------------------------
  22. * Cleaned up the code a lot.
  23. * Don't link to non-booted server instances to prevent the user from getting an
  24. exception message.
  25. * Add detection for django-rosetta and django-extensions to settings.py.
  26. Version 1.1, 9 Jan 2010:
  27. ------------------------------
  28. * Fixed crash when someone registered without an email address.
  29. * Set default connstring to Ice.
  30. * Improved internal handling of data provided by Murmur.
  31. * Added unit test facility and a few more management commands.
  32. * Added stripped-down views for mobile phone devices.
  33. * Updated the icons to those from Murmur 1.2.0.
  34. * Added the slice for Murmur 1.2.1.
  35. Version 1.0, 10 Dec 2009:
  36. ------------------------------
  37. * Added displaying User Comments.
  38. * Changed SLICE_VERSION to (1,2,0) because Mumble 1.2.0 has been released today.
  39. Version 0.12, 29 Nov 2009:
  40. ------------------------------
  41. * Added Player name validation to the registration.
  42. * Changed syncdb to update existing instances as well.
  43. * Added Support for pre-1.1.8 versions of Murmur's DBus interface (most notably,
  44. this is useful for Debian Lenny which ships with 1.1.4).
  45. * Added account linking feature to allow users who registered through Mumble
  46. to associate their mumble-django Account with an existing Murmur account.
  47. * Added ?version= tag to connect URLs.
  48. * Added IP/Port validation: When creating a new server instance, Mumble-Django
  49. will try to bind to the specified address and port to see if they are available.
  50. * Updated 1.2.0 slice to Murmur v1.2.0 beta1.
  51. * Generally improved error handling and stability.
  52. Version 0.11, 25 Sep 2009:
  53. ------------------------------
  54. * Fixed wrong {% URL %} tag that caused the template to crash when an anonymous
  55. user joins.
  56. * Added a FastCGI handler and example confs for Apache2 and Lighttpd.
  57. * Updated registerUser and setRegistration for Murmur snapshot snapshot b58726.
  58. * Added LOGIN_REDIRECT_URL to settings.
  59. * Added checkenv command for manage.py, that runs a few basic tests on the setup.
  60. * Added Polish translation.
  61. Version 0.10, 1 Sep 2009:
  62. ------------------------------
  63. * Added protected mode, which requires users to enter the server password
  64. for registration.
  65. * Added getRegistration methods to the CTLs.
  66. * Added autoconf command to the Munin plugin.
  67. * Added user textures to the detail pages in the channel viewer.
  68. * Added a user manager for server admins.
  69. * Added reverse resolving of URLs, allowing MD to run in a shared VirtualHost.
  70. * Added shell script to automatically generate a new SECRET_KEY.
  71. * Fixed Python 2.4 incompatible syntax.
  72. Version 0.9, 23 July 2009:
  73. ------------------------------
  74. * Added i18n support, and translations to:
  75. - German
  76. - Croatian
  77. - Italian
  78. - Japanese
  79. * Added more descriptive field names and help texts to the models.
  80. * Added a rudimentary CLI.
  81. Version 0.8, 11 July 2009:
  82. ------------------------------
  83. * Added Ice connector objects. Now MD can connect via both DBus and Ice.
  84. * Connectors can be used simultaneously, so managing 1.1.8 and 1.2.0 Murmurs
  85. is possible with a single instance of Mumble-Django.
  86. * Full compatibility to Murmur 1.2.0.
  87. * Added Channel descriptions to channel viewer for 1.2.0 servers.
  88. * management.py can now *always* add servers with a non-default connstring,
  89. not only when the default connstring doesn't resolve.
  90. * management.py tries to get connstring from an environment variable.
  91. * Changed channel viewer to use <div>s instead of a table, which is a lot
  92. cleaner to generate.
  93. * Fixed username@ missing in the channel links.
  94. * Merged mmServer object directly into Model and cleaned up mmobjects.py.
  95. * Added "Default connstring" and "Slice Version" fields to settings.py.
  96. * Added a Munin plugin to display the number of players on each server.
  97. * Added a few UNIQUE statements to the Models to prevent get() errors.
  98. Version 0.7, 27 May 2009:
  99. ------------------------------
  100. * Added copyright information about the Icons in the channel viewer to
  101. COPYRIGHT.
  102. * Fixed bug that prevented various settings from being applied to Murmur.
  103. * Fixed Python 2.4 incompatibility.
  104. * Various minor bug fixes.
  105. * Added setting users' textures.
  106. * Added Mumble icon as favicon.
  107. * Replaced YAML by a self-written template due to license problems.
  108. Version 0.6, 02. May 2009:
  109. ------------------------------
  110. * Re-Licensed the complete project under the GPL v2+, added License tags
  111. to code files.
  112. * Added "default channel", "player name", "channel name", "IP obfuscation"
  113. settings to Mumble model, therefore now supporting every one of Murmur's
  114. config options.
  115. * IMPORTANT: If updating from a version <= 0.5, please run:
  116. ./update-v0.5-v0.6.sh
  117. in the pyweb directory. That way, you will update the database without
  118. losing any data. If you are newly installing Mumble-Django, this does not
  119. apply.
  120. * Various minor bug fixes.
  121. Version 0.5, 18 April 2009:
  122. ------------------------------
  123. * Added redirect for / into urls.py, as this is easier than configuring
  124. it in the Apache config because it doesn't require the user to do
  125. anything.
  126. * Completely refurbished the user interface, now using a YAML template
  127. and ExtJS for some extra cool stuff. Still, the page does not _require_
  128. JavaScript to be enabled in order to function correctly, users with JS
  129. disabled will only see the registration forms and a hint to enable JS.
  130. Version 0.4, 10 April 2009:
  131. ------------------------------
  132. * Various bug fixes.
  133. * Added settings for django-registration to settings.py, so users can
  134. actually find them and don't need to figure these out on their own.
  135. * Added a form for Server Admins (people added to the Admin group on the
  136. root channel) to change a few settings like server password and MOTD.
  137. Version 0.3, 25 March 2009:
  138. ------------------------------
  139. * added basepath autodetection.
  140. * added "Admin on root channel" field that allows editing the ACL of the
  141. root channel, to grant or revoke membership in the "admins" group,
  142. thereby granting/revoking Administrator privileges.
  143. Version 0.2, 24 March 2009:
  144. ------------------------------
  145. * Reorganized settings.py, so only one single line needs to be edited in
  146. order to configure everything.
  147. * Added a syncdb hook that looks for already configured Murmur instances
  148. whenever syncdb is run, and writes found instances and users into the
  149. database.
  150. * Various minor bug fixes.
  151. Version 0.1, 21 February 2009:
  152. ------------------------------
  153. * Set up a Django project that uses the Mumble application to make use
  154. easier for Django inexperienced users
  155. * First official Release