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.

86 lines
3.7 KiB

15 years ago
15 years ago
  1. =======================
  2. Mumble-Django changelog
  3. =======================
  4. Version 0.8, 11 July 2009:
  5. ------------------------------
  6. * Added Ice connector objects. Now MD can connect via both DBus and Ice.
  7. * Connectors can be used simultaneously, so managing 1.1.8 and 1.2.0 Murmurs
  8. is possible with a single instance of Mumble-Django.
  9. * Full compatibility to Murmur 1.2.0.
  10. * Added Channel descriptions to channel viewer for 1.2.0 servers.
  11. * management.py can now *always* add servers with a non-default connstring,
  12. not only when the default connstring doesn't resolve.
  13. * management.py tries to get connstring from an environment variable.
  14. * Changed channel viewer to use <div>s instead of a table, which is a lot
  15. cleaner to generate.
  16. * Fixed username@ missing in the channel links.
  17. * Merged mmServer object directly into Model and cleaned up mmobjects.py.
  18. * Added "Default connstring" and "Slice Version" fields to settings.py.
  19. * Added a Munin plugin to display the number of players on each server.
  20. * Added a few UNIQUE statements to the Models to prevent get() errors.
  21. Version 0.7, 27 May 2009:
  22. ------------------------------
  23. * Added copyright information about the Icons in the channel viewer to
  24. COPYRIGHT.
  25. * Fixed bug that prevented various settings from being applied to Murmur.
  26. * Fixed Python 2.4 incompatibility.
  27. * Various minor bug fixes.
  28. * Added setting users' textures.
  29. * Added Mumble icon as favicon.
  30. * Replaced YAML by a self-written template due to license problems.
  31. Version 0.6, 02. May 2009:
  32. ------------------------------
  33. * Re-Licensed the complete project under the GPL v2+, added License tags
  34. to code files.
  35. * Added "default channel", "player name", "channel name", "IP obfuscation"
  36. settings to Mumble model, therefore now supporting every one of Murmur's
  37. config options.
  38. * IMPORTANT: If updating from a version <= 0.5, please run:
  39. ./update-v0.5-v0.6.sh
  40. in the pyweb directory. That way, you will update the database without
  41. losing any data. If you are newly installing Mumble-Django, this does not
  42. apply.
  43. * Various minor bug fixes.
  44. Version 0.5, 18 April 2009:
  45. ------------------------------
  46. * Added redirect for / into urls.py, as this is easier than configuring
  47. it in the Apache config because it doesn't require the user to do
  48. anything.
  49. * Completely refurbished the user interface, now using a YAML template
  50. and ExtJS for some extra cool stuff. Still, the page does not _require_
  51. JavaScript to be enabled in order to function correctly, users with JS
  52. disabled will only see the registration forms and a hint to enable JS.
  53. Version 0.4, 10 April 2009:
  54. ------------------------------
  55. * Various bug fixes.
  56. * Added settings for django-registration to settings.py, so users can
  57. actually find them and don't need to figure these out on their own.
  58. * Added a form for Server Admins (people added to the Admin group on the
  59. root channel) to change a few settings like server password and MOTD.
  60. Version 0.3, 25 March 2009:
  61. ------------------------------
  62. * added basepath autodetection.
  63. * added "Admin on root channel" field that allows editing the ACL of the
  64. root channel, to grant or revoke membership in the "admins" group,
  65. thereby granting/revoking Administrator privileges.
  66. Version 0.2, 24 March 2009:
  67. ------------------------------
  68. * Reorganized settings.py, so only one single line needs to be edited in
  69. order to configure everything.
  70. * Added a syncdb hook that looks for already configured Murmur instances
  71. whenever syncdb is run, and writes found instances and users into the
  72. database.
  73. * Various minor bug fixes.
  74. Version 0.1, 21 February 2009:
  75. ------------------------------
  76. * Set up a Django project that uses the Mumble application to make use
  77. easier for Django inexperienced users
  78. * First official Release