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.

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