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.

132 lines
5.6 KiB

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