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.

290 lines
13 KiB

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