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.

68 lines
2.7 KiB

15 years ago
15 years ago
  1. =======================
  2. Mumble-Django changelog
  3. =======================
  4. Version 0.7, 27 May 2009:
  5. ------------------------------
  6. * Added copyright information about the Icons in the channel viewer to
  7. COPYRIGHT.
  8. * Fixed bug that prevented various settings from being applied to Murmur.
  9. * Fixed Python 2.4 incompatibility.
  10. * Various minor bug fixes.
  11. * Added setting users' textures.
  12. * Added Mumble icon as favicon.
  13. * Replaced YAML by a self-written template due to license problems.
  14. Version 0.6, 02. May 2009:
  15. ------------------------------
  16. * Re-Licensed the complete project under the GPL v2+, added License tags
  17. to code files.
  18. * Added "default channel", "player name", "channel name", "IP obfuscation"
  19. settings to Mumble model, therefore now supporting every one of Murmur's
  20. config options.
  21. * IMPORTANT: If updating from a version <= 0.5, please run:
  22. ./update-v0.5-v0.6.sh
  23. in the pyweb directory. That way, you will update the database without
  24. losing any data. If you are newly installing Mumble-Django, this does not
  25. apply.
  26. * Various minor bug fixes.
  27. Version 0.5, 18 April 2009:
  28. ------------------------------
  29. * Added redirect for / into urls.py, as this is easier than configuring
  30. it in the Apache config because it doesn't require the user to do
  31. anything.
  32. * Completely refurbished the user interface, now using a YAML template
  33. and ExtJS for some extra cool stuff. Still, the page does not _require_
  34. JavaScript to be enabled in order to function correctly, users with JS
  35. disabled will only see the registration forms and a hint to enable JS.
  36. Version 0.4, 10 April 2009:
  37. ------------------------------
  38. * Various bug fixes.
  39. * Added settings for django-registration to settings.py, so users can
  40. actually find them and don't need to figure these out on their own.
  41. * Added a form for Server Admins (people added to the Admin group on the
  42. root channel) to change a few settings like server password and MOTD.
  43. Version 0.3, 25 March 2009:
  44. ------------------------------
  45. * added basepath autodetection.
  46. * added "Admin on root channel" field that allows editing the ACL of the
  47. root channel, to grant or revoke membership in the "admins" group,
  48. thereby granting/revoking Administrator privileges.
  49. Version 0.2, 24 March 2009:
  50. ------------------------------
  51. * Reorganized settings.py, so only one single line needs to be edited in
  52. order to configure everything.
  53. * Added a syncdb hook that looks for already configured Murmur instances
  54. whenever syncdb is run, and writes found instances and users into the
  55. database.
  56. * Various minor bug fixes.
  57. Version 0.1, 21 February 2009:
  58. ------------------------------
  59. * Set up a Django project that uses the Mumble application to make use
  60. easier for Django inexperienced users
  61. * First official Release