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.

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