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.

255 lines
11 KiB

14 years ago
14 years ago
14 years ago
14 years ago
14 years ago
15 years ago
15 years ago
15 years ago
15 years ago
15 years ago
15 years ago
15 years ago
15 years ago
  1. =======================
  2. Mumble-Django changelog
  3. =======================
  4. Version 2.1, 27 Apr 2010:
  5. ------------------------------
  6. * Fixed a few encoding issues in the Munin plugin and the DBus Ctls.
  7. * Ping Murmur to see if it is actually reachable before trying to connect.
  8. * Imrove performance by caching the server version, which is used a few times
  9. when loading the page.
  10. * Add displaying Gravatars and setting them as the default avatar.
  11. * Add reading the default port from the server's default config where appropriate.
  12. Version 2.0, 14 Mar 2010:
  13. ------------------------------
  14. * Prevent unwanted erasing of the supw and defaultchannel fields.
  15. * Review syncdb verbosity levels to display messages in a sensible context.
  16. * Order servers by name in the server list, and display a helpful message
  17. when none have been entered into the db
  18. * Improve the way MD handles servers being offline, unavailable modules and
  19. configuration issues.
  20. * Add XML and JSON data sources for Mumbleviewer-ng:
  21. http://bitbucket.org/nodefab/mumbleviewer-ng
  22. * Take "position" parameter into account when sorting channels in the channel
  23. viewer.
  24. * Various bug fixes.
  25. * Disable Polish and Croatian translations, as their authors disappeared and
  26. the files are horribly outdated.
  27. Version 2.0beta3, 7 Mar 2010:
  28. ------------------------------
  29. * Fix the channel viewer crashing when PIL doesn't recognize the image format
  30. of one user's Texture.
  31. * Disable the Texture stuff for Murmur 1.2.2, as its implementation is buggy.
  32. * Add a French translation.
  33. * Update Italian translation.
  34. * Add banning users.
  35. Version 2.0beta2, 5 Mar 2010:
  36. ------------------------------
  37. * Drop "NOT NULL" constraint on the port column during the database transition.
  38. * Display users' FQDN and IP Adresses to admins.
  39. * Fix updating the user texture.
  40. * Fix the admin to correctly handle Murmur processes that are not currently running.
  41. * Move the database file to the "db" subdirectory, because people tend to set the
  42. permissions with "chown -R user <md-dir>/*" instead of "chown -R user <md-dir>",
  43. which has been repeatedly causing problems in the past. The database file will
  44. be moved automatically when needed.
  45. Version 2.0beta1, 28 Feb 2010:
  46. ------------------------------
  47. * Remove a lot of columns from MDs database and replace them with properties. That
  48. way, MD will be far more easily extendable in the future without requiring a
  49. database update; and it reduces redundancy.
  50. The database will be converted automatically, but keeping Backups is not a bad
  51. idea. :)
  52. * Fix a few bugs that caused the default channel selector to break the creation of
  53. new server instances.
  54. * Merge mumble-django-nat into the main branch.
  55. * Add support for Murmur installations protected by an Ice secret.
  56. * Add automatically fetching the slice using Murmur's getSlice method.
  57. * Add getslice management command that checks if the slice can be fetched using
  58. Murmur's getSlice method.
  59. * Add support for new configuration fields in Murmur.
  60. * Adapt to the new texture handling introduced in Murmur 1.2.2.
  61. * Add kicking users.
  62. * Various minor bug fixes.
  63. Version 1.5, 15 Feb 2010:
  64. ------------------------------
  65. * Add a few checks for common problems in the Slice path, like spaces or the file
  66. name not ending with `.ice', to prevent nonsense Exceptions from Ice.
  67. * Change the Ice CTL to only load the slice when there is no "Murmur" module.
  68. * Replace SECRET_KEY variable with code to automatically generate it and store it
  69. in .secret.txt.
  70. * Fix a bug in the Munin plugin that caused Munin to only graph the alphabetically
  71. first server instance.
  72. * Display the aclAdmin property in the Admin instead of using isAdmin, to display
  73. changes in the ACLs directly.
  74. * Change the CTL mechanism to be completely independent from MD, thereby making it
  75. easily reusable.
  76. * Add view to feed Antiarc's AJAX channel viewer with data. See here for more details:
  77. http://github.com/cheald/murmur-manager/tree/master/widget/
  78. * Add a script that provides a CLI for the CTL objects, allowing to change Murmur's
  79. configuration directly from the shell.
  80. * Change the `default channel' field to a DropDown list.
  81. Version 1.4, 9 Feb 2010:
  82. ------------------------------
  83. * Remove automatic Murmur version detection, as it isn't possible with Ice.
  84. http://www.zeroc.com/forums/help-center/4781-multiple-connections-different-server-versions.html
  85. * Remove packaged slices for Murmur, due to the massive overhead the packaging
  86. creates compared to the little gain - whether people need to configure the slice
  87. version or path doesn't really matter anyway.
  88. * Enhance checkenv command to check:
  89. - for the root directory's permissions.
  90. - if the slice file is configured and readable.
  91. * Remove getslice command which is now unnecessary.
  92. Version 1.3, 7 Feb 2010:
  93. ------------------------------
  94. * Added getslice command that downloads the current HEAD slice version from
  95. Mumble's Git repository.
  96. * Added slice for 1.2.2 and updated settings.SLICE_VERSION accordingly.
  97. Version 1.2, 31 Jan 2010:
  98. ------------------------------
  99. * Cleaned up the code a lot.
  100. * Don't link to non-booted server instances to prevent the user from getting an
  101. exception message.
  102. * Add detection for django-rosetta and django-extensions to settings.py.
  103. Version 1.1, 9 Jan 2010:
  104. ------------------------------
  105. * Fixed crash when someone registered without an email address.
  106. * Set default connstring to Ice.
  107. * Improved internal handling of data provided by Murmur.
  108. * Added unit test facility and a few more management commands.
  109. * Added stripped-down views for mobile phone devices.
  110. * Updated the icons to those from Murmur 1.2.0.
  111. * Added the slice for Murmur 1.2.1.
  112. Version 1.0, 10 Dec 2009:
  113. ------------------------------
  114. * Added displaying User Comments.
  115. * Changed SLICE_VERSION to (1,2,0) because Mumble 1.2.0 has been released today.
  116. Version 0.12, 29 Nov 2009:
  117. ------------------------------
  118. * Added Player name validation to the registration.
  119. * Changed syncdb to update existing instances as well.
  120. * Added Support for pre-1.1.8 versions of Murmur's DBus interface (most notably,
  121. this is useful for Debian Lenny which ships with 1.1.4).
  122. * Added account linking feature to allow users who registered through Mumble
  123. to associate their mumble-django Account with an existing Murmur account.
  124. * Added ?version= tag to connect URLs.
  125. * Added IP/Port validation: When creating a new server instance, Mumble-Django
  126. will try to bind to the specified address and port to see if they are available.
  127. * Updated 1.2.0 slice to Murmur v1.2.0 beta1.
  128. * Generally improved error handling and stability.
  129. Version 0.11, 25 Sep 2009:
  130. ------------------------------
  131. * Fixed wrong {% URL %} tag that caused the template to crash when an anonymous
  132. user joins.
  133. * Added a FastCGI handler and example confs for Apache2 and Lighttpd.
  134. * Updated registerUser and setRegistration for Murmur snapshot snapshot b58726.
  135. * Added LOGIN_REDIRECT_URL to settings.
  136. * Added checkenv command for manage.py, that runs a few basic tests on the setup.
  137. * Added Polish translation.
  138. Version 0.10, 1 Sep 2009:
  139. ------------------------------
  140. * Added protected mode, which requires users to enter the server password
  141. for registration.
  142. * Added getRegistration methods to the CTLs.
  143. * Added autoconf command to the Munin plugin.
  144. * Added user textures to the detail pages in the channel viewer.
  145. * Added a user manager for server admins.
  146. * Added reverse resolving of URLs, allowing MD to run in a shared VirtualHost.
  147. * Added shell script to automatically generate a new SECRET_KEY.
  148. * Fixed Python 2.4 incompatible syntax.
  149. Version 0.9, 23 July 2009:
  150. ------------------------------
  151. * Added i18n support, and translations to:
  152. - German
  153. - Croatian
  154. - Italian
  155. - Japanese
  156. * Added more descriptive field names and help texts to the models.
  157. * Added a rudimentary CLI.
  158. Version 0.8, 11 July 2009:
  159. ------------------------------
  160. * Added Ice connector objects. Now MD can connect via both DBus and Ice.
  161. * Connectors can be used simultaneously, so managing 1.1.8 and 1.2.0 Murmurs
  162. is possible with a single instance of Mumble-Django.
  163. * Full compatibility to Murmur 1.2.0.
  164. * Added Channel descriptions to channel viewer for 1.2.0 servers.
  165. * management.py can now *always* add servers with a non-default connstring,
  166. not only when the default connstring doesn't resolve.
  167. * management.py tries to get connstring from an environment variable.
  168. * Changed channel viewer to use <div>s instead of a table, which is a lot
  169. cleaner to generate.
  170. * Fixed username@ missing in the channel links.
  171. * Merged mmServer object directly into Model and cleaned up mmobjects.py.
  172. * Added "Default connstring" and "Slice Version" fields to settings.py.
  173. * Added a Munin plugin to display the number of players on each server.
  174. * Added a few UNIQUE statements to the Models to prevent get() errors.
  175. Version 0.7, 27 May 2009:
  176. ------------------------------
  177. * Added copyright information about the Icons in the channel viewer to
  178. COPYRIGHT.
  179. * Fixed bug that prevented various settings from being applied to Murmur.
  180. * Fixed Python 2.4 incompatibility.
  181. * Various minor bug fixes.
  182. * Added setting users' textures.
  183. * Added Mumble icon as favicon.
  184. * Replaced YAML by a self-written template due to license problems.
  185. Version 0.6, 02. May 2009:
  186. ------------------------------
  187. * Re-Licensed the complete project under the GPL v2+, added License tags
  188. to code files.
  189. * Added "default channel", "player name", "channel name", "IP obfuscation"
  190. settings to Mumble model, therefore now supporting every one of Murmur's
  191. config options.
  192. * IMPORTANT: If updating from a version <= 0.5, please run:
  193. ./update-v0.5-v0.6.sh
  194. in the pyweb directory. That way, you will update the database without
  195. losing any data. If you are newly installing Mumble-Django, this does not
  196. apply.
  197. * Various minor bug fixes.
  198. Version 0.5, 18 April 2009:
  199. ------------------------------
  200. * Added redirect for / into urls.py, as this is easier than configuring
  201. it in the Apache config because it doesn't require the user to do
  202. anything.
  203. * Completely refurbished the user interface, now using a YAML template
  204. and ExtJS for some extra cool stuff. Still, the page does not _require_
  205. JavaScript to be enabled in order to function correctly, users with JS
  206. disabled will only see the registration forms and a hint to enable JS.
  207. Version 0.4, 10 April 2009:
  208. ------------------------------
  209. * Various bug fixes.
  210. * Added settings for django-registration to settings.py, so users can
  211. actually find them and don't need to figure these out on their own.
  212. * Added a form for Server Admins (people added to the Admin group on the
  213. root channel) to change a few settings like server password and MOTD.
  214. Version 0.3, 25 March 2009:
  215. ------------------------------
  216. * added basepath autodetection.
  217. * added "Admin on root channel" field that allows editing the ACL of the
  218. root channel, to grant or revoke membership in the "admins" group,
  219. thereby granting/revoking Administrator privileges.
  220. Version 0.2, 24 March 2009:
  221. ------------------------------
  222. * Reorganized settings.py, so only one single line needs to be edited in
  223. order to configure everything.
  224. * Added a syncdb hook that looks for already configured Murmur instances
  225. whenever syncdb is run, and writes found instances and users into the
  226. database.
  227. * Various minor bug fixes.
  228. Version 0.1, 21 February 2009:
  229. ------------------------------
  230. * Set up a Django project that uses the Mumble application to make use
  231. easier for Django inexperienced users
  232. * First official Release