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.

96 lines
3.9 KiB

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