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.

67 lines
2.6 KiB

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