##// END OF EJS Templates
Doc and version changes for 0.6.1 release....
Jean-Philippe Lang -
r963:c00b8fd12e12
parent child
Show More
@@ -5,6 +5,65 Copyright (C) 2006-2007 Jean-Philippe Lang
5 http://www.redmine.org/
5 http://www.redmine.org/
6
6
7
7
8 == 2007-12-10 v0.6.1
9
10 * Rails 2.0 compatibility
11 * Custom fields can now be displayed as columns on the issue list
12 * Added version details view (accessible from the roadmap)
13 * Roadmap: more accurate completion percentage calculation (done ratio of open issues is now taken into account)
14 * Added per-project tracker selection. Trackers can be selected on project settings
15 * Anonymous users can now be allowed to create, edit, comment issues, comment news and post messages in the forums
16 * Forums: messages can now be edited/deleted (explicit permissions need to be given)
17 * Forums: topics can be locked so that no reply can be added
18 * Forums: topics can be marked as sticky so that they always appear at the top of the list
19 * Forums: attachments can now be added to replies
20 * Added time zone support
21 * Added a setting to choose the account activation strategy (available in application settings)
22 * Added 'Classic' theme (inspired from the v0.51 design)
23 * Added an alternate theme which provides issue list colorization based on issues priority
24 * Added Bazaar SCM adapter
25 * Added Annotate/Blame view in the repository browser (except for Darcs SCM)
26 * Diff style (inline or side by side) automatically saved as a user preference
27 * Added issues status changes on the activity view (by Cyril Mougel)
28 * Added forums topics on the activity view (disabled by default)
29 * Added an option on 'My account' for users who don�t want to be notified of changes that they make
30 * Trac importer now supports mysql and postgresql databases
31 * Trac importer improvements (by Mat Trudel)
32 * 'fixed version' field can now be displayed on the issue list
33 * Added a couple of new formats for the 'date format' setting
34 * Added Traditional Chinese translation (by Shortie Lo)
35 * Added Russian translation (iGor kMeta)
36 * Project name format limitation removed (name can now contain any character)
37 * Project identifier maximum length changed from 12 to 20
38 * Changed the maximum length of LDAP account to 255 characters
39 * Removed the 12 characters limit on passwords
40 * Added wiki macros support
41 * Performance improvement on workflow setup screen
42 * More detailed html title on several views
43 * Custom fields can now be reordered
44 * Search engine: search can be restricted to an exact phrase by using quotation marks
45 * Added custom fields marked as 'For all projects' to the csv export of the cross project issue list
46 * Email notifications are now sent as Blind carbon copy by default
47 * Fixed: all members (including non active) should be deleted when deleting a project
48 * Fixed: Error on wiki syntax link (accessible from wiki/edit)
49 * Fixed: 'quick jump to a revision' form on the revisions list
50 * Fixed: error on admin/info if there's more than 1 plugin installed
51 * Fixed: svn or ldap password can be found in clear text in the html source in editing mode
52 * Fixed: 'Assigned to' drop down list is not sorted
53 * Fixed: 'View all issues' link doesn't work on issues/show
54 * Fixed: error on account/register when validation fails
55 * Fixed: Error when displaying the issue list if a float custom field is marked as 'used as filter'
56 * Fixed: Mercurial adapter breaks on missing :files entry in changeset hash (James Britt)
57 * Fixed: Wrong feed URLs on the home page
58 * Fixed: Update of time entry fails when the issue has been moved to an other project
59 * Fixed: Error when moving an issue without changing its tracker (Postgresql)
60 * Fixed: Changes not recorded when using :pserver string (CVS adapter)
61 * Fixed: admin should be able to move issues to any project
62 * Fixed: adding an attachment is not possible when changing the status of an issue
63 * Fixed: No mime-types in documents/files downloading
64 * Fixed: error when sorting the messages if there�s only one board for the project
65 * Fixed: 'me' doesn't appear in the drop down filters on a project issue list.
66
8 == 2007-11-04 v0.6.0
67 == 2007-11-04 v0.6.0
9
68
10 * Permission model refactoring.
69 * Permission model refactoring.
@@ -7,7 +7,7 http://www.redmine.org/
7
7
8 == Requirements
8 == Requirements
9
9
10 * Ruby on Rails 1.2.2 or higher (this release won't work with Rails 2.0)
10 * Ruby on Rails 1.2.5 or 2.0.1
11 * A database (see compatibility below)
11 * A database (see compatibility below)
12
12
13 Optional:
13 Optional:
@@ -21,7 +21,6 http://www.redmine.org/
21 6. Copy the RAILS_ROOT/files directory content into your new installation
21 6. Copy the RAILS_ROOT/files directory content into your new installation
22
22
23 Note 1: Rails 1.2.2 or higher is required for version 0.4.2 and later.
23 Note 1: Rails 1.2.2 or higher is required for version 0.4.2 and later.
24 This release won't work with Rails 2.0
25
24
26 Note 2: when upgrading your code with svn update, don't forget to clear
25 Note 2: when upgrading your code with svn update, don't forget to clear
27 the application cache (RAILS_ROOT/tmp/cache) before restarting.
26 the application cache (RAILS_ROOT/tmp/cache) before restarting.
@@ -4,7 +4,7 module Redmine
4 module VERSION #:nodoc:
4 module VERSION #:nodoc:
5 MAJOR = 0
5 MAJOR = 0
6 MINOR = 6
6 MINOR = 6
7 TINY = 0
7 TINY = 1
8
8
9 def self.revision
9 def self.revision
10 revision = nil
10 revision = nil
General Comments 0
You need to be logged in to leave comments. Login now