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.

59 lines
2.3 KiB

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