##// END OF EJS Templates
Merged r2643 from trunk....
Jean-Philippe Lang -
r2564:e28b5e1f08ad
parent child
Show More
@@ -1,160 +1,164
1 # redMine - project management software
1 # redMine - project management software
2 # Copyright (C) 2006 Jean-Philippe Lang
2 # Copyright (C) 2006 Jean-Philippe Lang
3 #
3 #
4 # This program is free software; you can redistribute it and/or
4 # This program is free software; you can redistribute it and/or
5 # modify it under the terms of the GNU General Public License
5 # modify it under the terms of the GNU General Public License
6 # as published by the Free Software Foundation; either version 2
6 # as published by the Free Software Foundation; either version 2
7 # of the License, or (at your option) any later version.
7 # of the License, or (at your option) any later version.
8 #
8 #
9 # This program is distributed in the hope that it will be useful,
9 # This program is distributed in the hope that it will be useful,
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 # GNU General Public License for more details.
12 # GNU General Public License for more details.
13 #
13 #
14 # You should have received a copy of the GNU General Public License
14 # You should have received a copy of the GNU General Public License
15 # along with this program; if not, write to the Free Software
15 # along with this program; if not, write to the Free Software
16 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
16 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
17
17
18 module TimelogHelper
18 module TimelogHelper
19 include ApplicationHelper
19 include ApplicationHelper
20
20
21 def render_timelog_breadcrumb
21 def render_timelog_breadcrumb
22 links = []
22 links = []
23 links << link_to(l(:label_project_all), {:project_id => nil, :issue_id => nil})
23 links << link_to(l(:label_project_all), {:project_id => nil, :issue_id => nil})
24 links << link_to(h(@project), {:project_id => @project, :issue_id => nil}) if @project
24 links << link_to(h(@project), {:project_id => @project, :issue_id => nil}) if @project
25 links << link_to_issue(@issue) if @issue
25 links << link_to_issue(@issue) if @issue
26 breadcrumb links
26 breadcrumb links
27 end
27 end
28
28
29 def activity_collection_for_select_options
29 def activity_collection_for_select_options
30 activities = Enumeration::get_values('ACTI')
30 activities = Enumeration::get_values('ACTI')
31 collection = []
31 collection = []
32 collection << [ "--- #{l(:actionview_instancetag_blank_option)} ---", '' ] unless activities.detect(&:is_default)
32 collection << [ "--- #{l(:actionview_instancetag_blank_option)} ---", '' ] unless activities.detect(&:is_default)
33 activities.each { |a| collection << [a.name, a.id] }
33 activities.each { |a| collection << [a.name, a.id] }
34 collection
34 collection
35 end
35 end
36
36
37 def select_hours(data, criteria, value)
37 def select_hours(data, criteria, value)
38 data.select {|row| row[criteria] == value}
38 if value.to_s.empty?
39 data.select {|row| row[criteria].blank? }
40 else
41 data.select {|row| row[criteria] == value}
42 end
39 end
43 end
40
44
41 def sum_hours(data)
45 def sum_hours(data)
42 sum = 0
46 sum = 0
43 data.each do |row|
47 data.each do |row|
44 sum += row['hours'].to_f
48 sum += row['hours'].to_f
45 end
49 end
46 sum
50 sum
47 end
51 end
48
52
49 def options_for_period_select(value)
53 def options_for_period_select(value)
50 options_for_select([[l(:label_all_time), 'all'],
54 options_for_select([[l(:label_all_time), 'all'],
51 [l(:label_today), 'today'],
55 [l(:label_today), 'today'],
52 [l(:label_yesterday), 'yesterday'],
56 [l(:label_yesterday), 'yesterday'],
53 [l(:label_this_week), 'current_week'],
57 [l(:label_this_week), 'current_week'],
54 [l(:label_last_week), 'last_week'],
58 [l(:label_last_week), 'last_week'],
55 [l(:label_last_n_days, 7), '7_days'],
59 [l(:label_last_n_days, 7), '7_days'],
56 [l(:label_this_month), 'current_month'],
60 [l(:label_this_month), 'current_month'],
57 [l(:label_last_month), 'last_month'],
61 [l(:label_last_month), 'last_month'],
58 [l(:label_last_n_days, 30), '30_days'],
62 [l(:label_last_n_days, 30), '30_days'],
59 [l(:label_this_year), 'current_year']],
63 [l(:label_this_year), 'current_year']],
60 value)
64 value)
61 end
65 end
62
66
63 def entries_to_csv(entries)
67 def entries_to_csv(entries)
64 ic = Iconv.new(l(:general_csv_encoding), 'UTF-8')
68 ic = Iconv.new(l(:general_csv_encoding), 'UTF-8')
65 decimal_separator = l(:general_csv_decimal_separator)
69 decimal_separator = l(:general_csv_decimal_separator)
66 custom_fields = TimeEntryCustomField.find(:all)
70 custom_fields = TimeEntryCustomField.find(:all)
67 export = StringIO.new
71 export = StringIO.new
68 CSV::Writer.generate(export, l(:general_csv_separator)) do |csv|
72 CSV::Writer.generate(export, l(:general_csv_separator)) do |csv|
69 # csv header fields
73 # csv header fields
70 headers = [l(:field_spent_on),
74 headers = [l(:field_spent_on),
71 l(:field_user),
75 l(:field_user),
72 l(:field_activity),
76 l(:field_activity),
73 l(:field_project),
77 l(:field_project),
74 l(:field_issue),
78 l(:field_issue),
75 l(:field_tracker),
79 l(:field_tracker),
76 l(:field_subject),
80 l(:field_subject),
77 l(:field_hours),
81 l(:field_hours),
78 l(:field_comments)
82 l(:field_comments)
79 ]
83 ]
80 # Export custom fields
84 # Export custom fields
81 headers += custom_fields.collect(&:name)
85 headers += custom_fields.collect(&:name)
82
86
83 csv << headers.collect {|c| begin; ic.iconv(c.to_s); rescue; c.to_s; end }
87 csv << headers.collect {|c| begin; ic.iconv(c.to_s); rescue; c.to_s; end }
84 # csv lines
88 # csv lines
85 entries.each do |entry|
89 entries.each do |entry|
86 fields = [format_date(entry.spent_on),
90 fields = [format_date(entry.spent_on),
87 entry.user,
91 entry.user,
88 entry.activity,
92 entry.activity,
89 entry.project,
93 entry.project,
90 (entry.issue ? entry.issue.id : nil),
94 (entry.issue ? entry.issue.id : nil),
91 (entry.issue ? entry.issue.tracker : nil),
95 (entry.issue ? entry.issue.tracker : nil),
92 (entry.issue ? entry.issue.subject : nil),
96 (entry.issue ? entry.issue.subject : nil),
93 entry.hours.to_s.gsub('.', decimal_separator),
97 entry.hours.to_s.gsub('.', decimal_separator),
94 entry.comments
98 entry.comments
95 ]
99 ]
96 fields += custom_fields.collect {|f| show_value(entry.custom_value_for(f)) }
100 fields += custom_fields.collect {|f| show_value(entry.custom_value_for(f)) }
97
101
98 csv << fields.collect {|c| begin; ic.iconv(c.to_s); rescue; c.to_s; end }
102 csv << fields.collect {|c| begin; ic.iconv(c.to_s); rescue; c.to_s; end }
99 end
103 end
100 end
104 end
101 export.rewind
105 export.rewind
102 export
106 export
103 end
107 end
104
108
105 def format_criteria_value(criteria, value)
109 def format_criteria_value(criteria, value)
106 value.blank? ? l(:label_none) : ((k = @available_criterias[criteria][:klass]) ? k.find_by_id(value.to_i) : format_value(value, @available_criterias[criteria][:format]))
110 value.blank? ? l(:label_none) : ((k = @available_criterias[criteria][:klass]) ? k.find_by_id(value.to_i) : format_value(value, @available_criterias[criteria][:format]))
107 end
111 end
108
112
109 def report_to_csv(criterias, periods, hours)
113 def report_to_csv(criterias, periods, hours)
110 export = StringIO.new
114 export = StringIO.new
111 CSV::Writer.generate(export, l(:general_csv_separator)) do |csv|
115 CSV::Writer.generate(export, l(:general_csv_separator)) do |csv|
112 # Column headers
116 # Column headers
113 headers = criterias.collect {|criteria| l(@available_criterias[criteria][:label]) }
117 headers = criterias.collect {|criteria| l(@available_criterias[criteria][:label]) }
114 headers += periods
118 headers += periods
115 headers << l(:label_total)
119 headers << l(:label_total)
116 csv << headers.collect {|c| to_utf8(c) }
120 csv << headers.collect {|c| to_utf8(c) }
117 # Content
121 # Content
118 report_criteria_to_csv(csv, criterias, periods, hours)
122 report_criteria_to_csv(csv, criterias, periods, hours)
119 # Total row
123 # Total row
120 row = [ l(:label_total) ] + [''] * (criterias.size - 1)
124 row = [ l(:label_total) ] + [''] * (criterias.size - 1)
121 total = 0
125 total = 0
122 periods.each do |period|
126 periods.each do |period|
123 sum = sum_hours(select_hours(hours, @columns, period.to_s))
127 sum = sum_hours(select_hours(hours, @columns, period.to_s))
124 total += sum
128 total += sum
125 row << (sum > 0 ? "%.2f" % sum : '')
129 row << (sum > 0 ? "%.2f" % sum : '')
126 end
130 end
127 row << "%.2f" %total
131 row << "%.2f" %total
128 csv << row
132 csv << row
129 end
133 end
130 export.rewind
134 export.rewind
131 export
135 export
132 end
136 end
133
137
134 def report_criteria_to_csv(csv, criterias, periods, hours, level=0)
138 def report_criteria_to_csv(csv, criterias, periods, hours, level=0)
135 hours.collect {|h| h[criterias[level]].to_s}.uniq.each do |value|
139 hours.collect {|h| h[criterias[level]].to_s}.uniq.each do |value|
136 hours_for_value = select_hours(hours, criterias[level], value)
140 hours_for_value = select_hours(hours, criterias[level], value)
137 next if hours_for_value.empty?
141 next if hours_for_value.empty?
138 row = [''] * level
142 row = [''] * level
139 row << to_utf8(format_criteria_value(criterias[level], value))
143 row << to_utf8(format_criteria_value(criterias[level], value))
140 row += [''] * (criterias.length - level - 1)
144 row += [''] * (criterias.length - level - 1)
141 total = 0
145 total = 0
142 periods.each do |period|
146 periods.each do |period|
143 sum = sum_hours(select_hours(hours_for_value, @columns, period.to_s))
147 sum = sum_hours(select_hours(hours_for_value, @columns, period.to_s))
144 total += sum
148 total += sum
145 row << (sum > 0 ? "%.2f" % sum : '')
149 row << (sum > 0 ? "%.2f" % sum : '')
146 end
150 end
147 row << "%.2f" %total
151 row << "%.2f" %total
148 csv << row
152 csv << row
149
153
150 if criterias.length > level + 1
154 if criterias.length > level + 1
151 report_criteria_to_csv(csv, criterias, periods, hours_for_value, level + 1)
155 report_criteria_to_csv(csv, criterias, periods, hours_for_value, level + 1)
152 end
156 end
153 end
157 end
154 end
158 end
155
159
156 def to_utf8(s)
160 def to_utf8(s)
157 @ic ||= Iconv.new(l(:general_csv_encoding), 'UTF-8')
161 @ic ||= Iconv.new(l(:general_csv_encoding), 'UTF-8')
158 begin; @ic.iconv(s.to_s); rescue; s.to_s; end
162 begin; @ic.iconv(s.to_s); rescue; s.to_s; end
159 end
163 end
160 end
164 end
@@ -1,894 +1,895
1 == Redmine changelog
1 == Redmine changelog
2
2
3 Redmine - project management software
3 Redmine - project management software
4 Copyright (C) 2006-2009 Jean-Philippe Lang
4 Copyright (C) 2006-2009 Jean-Philippe Lang
5 http://www.redmine.org/
5 http://www.redmine.org/
6
6
7
7
8 == 2009-xx-xx v0.8.3
8 == 2009-xx-xx v0.8.3
9
9
10 * Separate project field and subject in cross-project issue view
10 * Separate project field and subject in cross-project issue view
11 * Ability to set language for redmine:load_default_data task using REDMINE_LANG environment variable
11 * Ability to set language for redmine:load_default_data task using REDMINE_LANG environment variable
12 * Rescue Redmine::DefaultData::DataAlreadyLoaded in redmine:load_default_data task
12 * Rescue Redmine::DefaultData::DataAlreadyLoaded in redmine:load_default_data task
13 * CSS classes to highlight own and assigned issues
13 * CSS classes to highlight own and assigned issues
14 * Hide "New file" link on wiki pages from printing
14 * Hide "New file" link on wiki pages from printing
15 * Flush buffer when asking for language in redmine:load_default_data task
15 * Flush buffer when asking for language in redmine:load_default_data task
16 * Minimum project identifier length set to 1
16 * Minimum project identifier length set to 1
17 * Fixed: Time entries csv export links for all projects are malformed
17 * Fixed: Time entries csv export links for all projects are malformed
18 * Fixed: Files without Version aren't visible in the Activity page
18 * Fixed: Files without Version aren't visible in the Activity page
19 * Fixed: Commit logs are centered in the repo browser
19 * Fixed: Commit logs are centered in the repo browser
20 * Fixed: News summary field content is not searchable
20 * Fixed: News summary field content is not searchable
21 * Fixed: Journal#save has a wrong signature
21 * Fixed: Journal#save has a wrong signature
22 * Fixed: Email footer signature convention
22 * Fixed: Email footer signature convention
23 * Fixed: Timelog report do not show time for non-versioned issues
23
24
24
25
25 == 2009-03-07 v0.8.2
26 == 2009-03-07 v0.8.2
26
27
27 * Send an email to the user when an administrator activates a registered user
28 * Send an email to the user when an administrator activates a registered user
28 * Strip keywords from received email body
29 * Strip keywords from received email body
29 * Footer updated to 2009
30 * Footer updated to 2009
30 * Show RSS-link even when no issues is found
31 * Show RSS-link even when no issues is found
31 * One click filter action in activity view
32 * One click filter action in activity view
32 * Clickable/linkable line #'s while browsing the repo or viewing a file
33 * Clickable/linkable line #'s while browsing the repo or viewing a file
33 * Links to versions on files list
34 * Links to versions on files list
34 * Added request and controller objects to the hooks by default
35 * Added request and controller objects to the hooks by default
35 * Fixed: exporting an issue with attachments to PDF raises an error
36 * Fixed: exporting an issue with attachments to PDF raises an error
36 * Fixed: "too few arguments" error may occur on activerecord error translation
37 * Fixed: "too few arguments" error may occur on activerecord error translation
37 * Fixed: "Default columns Displayed on the Issues list" setting is not easy to read
38 * Fixed: "Default columns Displayed on the Issues list" setting is not easy to read
38 * Fixed: visited links to closed tickets are not striked through with IE6
39 * Fixed: visited links to closed tickets are not striked through with IE6
39 * Fixed: MailHandler#plain_text_body returns nil if there was nothing to strip
40 * Fixed: MailHandler#plain_text_body returns nil if there was nothing to strip
40 * Fixed: MailHandler raises an error when processing an email without From header
41 * Fixed: MailHandler raises an error when processing an email without From header
41
42
42
43
43 == 2009-02-15 v0.8.1
44 == 2009-02-15 v0.8.1
44
45
45 * Select watchers on new issue form
46 * Select watchers on new issue form
46 * Issue description is no longer a required field
47 * Issue description is no longer a required field
47 * Files module: ability to add files without version
48 * Files module: ability to add files without version
48 * Jump to the current tab when using the project quick-jump combo
49 * Jump to the current tab when using the project quick-jump combo
49 * Display a warning if some attachments were not saved
50 * Display a warning if some attachments were not saved
50 * Import custom fields values from emails on issue creation
51 * Import custom fields values from emails on issue creation
51 * Show view/annotate/download links on entry and annotate views
52 * Show view/annotate/download links on entry and annotate views
52 * Admin Info Screen: Display if plugin assets directory is writable
53 * Admin Info Screen: Display if plugin assets directory is writable
53 * Adds a 'Create and continue' button on the new issue form
54 * Adds a 'Create and continue' button on the new issue form
54 * IMAP: add options to move received emails
55 * IMAP: add options to move received emails
55 * Do not show Category field when categories are not defined
56 * Do not show Category field when categories are not defined
56 * Lower the project identifier limit to a minimum of two characters
57 * Lower the project identifier limit to a minimum of two characters
57 * Add "closed" html class to closed entries in issue list
58 * Add "closed" html class to closed entries in issue list
58 * Fixed: broken redirect URL on login failure
59 * Fixed: broken redirect URL on login failure
59 * Fixed: Deleted files are shown when using Darcs
60 * Fixed: Deleted files are shown when using Darcs
60 * Fixed: Darcs adapter works on Win32 only
61 * Fixed: Darcs adapter works on Win32 only
61 * Fixed: syntax highlight doesn't appear in new ticket preview
62 * Fixed: syntax highlight doesn't appear in new ticket preview
62 * Fixed: email notification for changes I make still occurs when running Repository.fetch_changesets
63 * Fixed: email notification for changes I make still occurs when running Repository.fetch_changesets
63 * Fixed: no error is raised when entering invalid hours on the issue update form
64 * Fixed: no error is raised when entering invalid hours on the issue update form
64 * Fixed: Details time log report CSV export doesn't honour date format from settings
65 * Fixed: Details time log report CSV export doesn't honour date format from settings
65 * Fixed: invalid css classes on issue details
66 * Fixed: invalid css classes on issue details
66 * Fixed: Trac importer creates duplicate custom values
67 * Fixed: Trac importer creates duplicate custom values
67 * Fixed: inline attached image should not match partial filename
68 * Fixed: inline attached image should not match partial filename
68
69
69
70
70 == 2008-12-30 v0.8.0
71 == 2008-12-30 v0.8.0
71
72
72 * Setting added in order to limit the number of diff lines that should be displayed
73 * Setting added in order to limit the number of diff lines that should be displayed
73 * Makes logged-in username in topbar linking to
74 * Makes logged-in username in topbar linking to
74 * Mail handler: strip tags when receiving a html-only email
75 * Mail handler: strip tags when receiving a html-only email
75 * Mail handler: add watchers before sending notification
76 * Mail handler: add watchers before sending notification
76 * Adds a css class (overdue) to overdue issues on issue lists and detail views
77 * Adds a css class (overdue) to overdue issues on issue lists and detail views
77 * Fixed: project activity truncated after viewing user's activity
78 * Fixed: project activity truncated after viewing user's activity
78 * Fixed: email address entered for password recovery shouldn't be case-sensitive
79 * Fixed: email address entered for password recovery shouldn't be case-sensitive
79 * Fixed: default flag removed when editing a default enumeration
80 * Fixed: default flag removed when editing a default enumeration
80 * Fixed: default category ignored when adding a document
81 * Fixed: default category ignored when adding a document
81 * Fixed: error on repository user mapping when a repository username is blank
82 * Fixed: error on repository user mapping when a repository username is blank
82 * Fixed: Firefox cuts off large diffs
83 * Fixed: Firefox cuts off large diffs
83 * Fixed: CVS browser should not show dead revisions (deleted files)
84 * Fixed: CVS browser should not show dead revisions (deleted files)
84 * Fixed: escape double-quotes in image titles
85 * Fixed: escape double-quotes in image titles
85 * Fixed: escape textarea content when editing a issue note
86 * Fixed: escape textarea content when editing a issue note
86 * Fixed: JS error on context menu with IE
87 * Fixed: JS error on context menu with IE
87 * Fixed: bold syntax around single character in series doesn't work
88 * Fixed: bold syntax around single character in series doesn't work
88 * Fixed several XSS vulnerabilities
89 * Fixed several XSS vulnerabilities
89 * Fixed a SQL injection vulnerability
90 * Fixed a SQL injection vulnerability
90
91
91
92
92 == 2008-12-07 v0.8.0-rc1
93 == 2008-12-07 v0.8.0-rc1
93
94
94 * Wiki page protection
95 * Wiki page protection
95 * Wiki page hierarchy. Parent page can be assigned on the Rename screen
96 * Wiki page hierarchy. Parent page can be assigned on the Rename screen
96 * Adds support for issue creation via email
97 * Adds support for issue creation via email
97 * Adds support for free ticket filtering and custom queries on Gantt chart and calendar
98 * Adds support for free ticket filtering and custom queries on Gantt chart and calendar
98 * Cross-project search
99 * Cross-project search
99 * Ability to search a project and its subprojects
100 * Ability to search a project and its subprojects
100 * Ability to search the projects the user belongs to
101 * Ability to search the projects the user belongs to
101 * Adds custom fields on time entries
102 * Adds custom fields on time entries
102 * Adds boolean and list custom fields for time entries as criteria on time report
103 * Adds boolean and list custom fields for time entries as criteria on time report
103 * Cross-project time reports
104 * Cross-project time reports
104 * Display latest user's activity on account/show view
105 * Display latest user's activity on account/show view
105 * Show last connexion time on user's page
106 * Show last connexion time on user's page
106 * Obfuscates email address on user's account page using javascript
107 * Obfuscates email address on user's account page using javascript
107 * wiki TOC rendered as an unordered list
108 * wiki TOC rendered as an unordered list
108 * Adds the ability to search for a user on the administration users list
109 * Adds the ability to search for a user on the administration users list
109 * Adds the ability to search for a project name or identifier on the administration projects list
110 * Adds the ability to search for a project name or identifier on the administration projects list
110 * Redirect user to the previous page after logging in
111 * Redirect user to the previous page after logging in
111 * Adds a permission 'view wiki edits' so that wiki history can be hidden to certain users
112 * Adds a permission 'view wiki edits' so that wiki history can be hidden to certain users
112 * Adds permissions for viewing the watcher list and adding new watchers on the issue detail view
113 * Adds permissions for viewing the watcher list and adding new watchers on the issue detail view
113 * Adds permissions to let users edit and/or delete their messages
114 * Adds permissions to let users edit and/or delete their messages
114 * Link to activity view when displaying dates
115 * Link to activity view when displaying dates
115 * Hide Redmine version in atom feeds and pdf properties
116 * Hide Redmine version in atom feeds and pdf properties
116 * Maps repository users to Redmine users. Users with same username or email are automatically mapped. Mapping can be manually adjusted in repository settings. Multiple usernames can be mapped to the same Redmine user.
117 * Maps repository users to Redmine users. Users with same username or email are automatically mapped. Mapping can be manually adjusted in repository settings. Multiple usernames can be mapped to the same Redmine user.
117 * Sort users by their display names so that user dropdown lists are sorted alphabetically
118 * Sort users by their display names so that user dropdown lists are sorted alphabetically
118 * Adds estimated hours to issue filters
119 * Adds estimated hours to issue filters
119 * Switch order of current and previous revisions in side-by-side diff
120 * Switch order of current and previous revisions in side-by-side diff
120 * Render the commit changes list as a tree
121 * Render the commit changes list as a tree
121 * Adds watch/unwatch functionality at forum topic level
122 * Adds watch/unwatch functionality at forum topic level
122 * When moving an issue to another project, reassign it to the category with same name if any
123 * When moving an issue to another project, reassign it to the category with same name if any
123 * Adds child_pages macro for wiki pages
124 * Adds child_pages macro for wiki pages
124 * Use GET instead of POST on roadmap (#718), gantt and calendar forms
125 * Use GET instead of POST on roadmap (#718), gantt and calendar forms
125 * Search engine: display total results count and count by result type
126 * Search engine: display total results count and count by result type
126 * Email delivery configuration moved to an unversioned YAML file (config/email.yml, see the sample file)
127 * Email delivery configuration moved to an unversioned YAML file (config/email.yml, see the sample file)
127 * Adds icons on search results
128 * Adds icons on search results
128 * Adds 'Edit' link on account/show for admin users
129 * Adds 'Edit' link on account/show for admin users
129 * Adds Lock/Unlock/Activate link on user edit screen
130 * Adds Lock/Unlock/Activate link on user edit screen
130 * Adds user count in status drop down on admin user list
131 * Adds user count in status drop down on admin user list
131 * Adds multi-levels blockquotes support by using > at the beginning of lines
132 * Adds multi-levels blockquotes support by using > at the beginning of lines
132 * Adds a Reply link to each issue note
133 * Adds a Reply link to each issue note
133 * Adds plain text only option for mail notifications
134 * Adds plain text only option for mail notifications
134 * Gravatar support for issue detail, user grid, and activity stream (disabled by default)
135 * Gravatar support for issue detail, user grid, and activity stream (disabled by default)
135 * Adds 'Delete wiki pages attachments' permission
136 * Adds 'Delete wiki pages attachments' permission
136 * Show the most recent file when displaying an inline image
137 * Show the most recent file when displaying an inline image
137 * Makes permission screens localized
138 * Makes permission screens localized
138 * AuthSource list: display associated users count and disable 'Delete' buton if any
139 * AuthSource list: display associated users count and disable 'Delete' buton if any
139 * Make the 'duplicates of' relation asymmetric
140 * Make the 'duplicates of' relation asymmetric
140 * Adds username to the password reminder email
141 * Adds username to the password reminder email
141 * Adds links to forum messages using message#id syntax
142 * Adds links to forum messages using message#id syntax
142 * Allow same name for custom fields on different object types
143 * Allow same name for custom fields on different object types
143 * One-click bulk edition using the issue list context menu within the same project
144 * One-click bulk edition using the issue list context menu within the same project
144 * Adds support for commit logs reencoding to UTF-8 before insertion in the database. Source encoding of commit logs can be selected in Application settings -> Repositories.
145 * Adds support for commit logs reencoding to UTF-8 before insertion in the database. Source encoding of commit logs can be selected in Application settings -> Repositories.
145 * Adds checkboxes toggle links on permissions report
146 * Adds checkboxes toggle links on permissions report
146 * Adds Trac-Like anchors on wiki headings
147 * Adds Trac-Like anchors on wiki headings
147 * Adds support for wiki links with anchor
148 * Adds support for wiki links with anchor
148 * Adds category to the issue context menu
149 * Adds category to the issue context menu
149 * Adds a workflow overview screen
150 * Adds a workflow overview screen
150 * Appends the filename to the attachment url so that clients that ignore content-disposition http header get the real filename
151 * Appends the filename to the attachment url so that clients that ignore content-disposition http header get the real filename
151 * Dots allowed in custom field name
152 * Dots allowed in custom field name
152 * Adds posts quoting functionality
153 * Adds posts quoting functionality
153 * Adds an option to generate sequential project identifiers
154 * Adds an option to generate sequential project identifiers
154 * Adds mailto link on the user administration list
155 * Adds mailto link on the user administration list
155 * Ability to remove enumerations (activities, priorities, document categories) that are in use. Associated objects can be reassigned to another value
156 * Ability to remove enumerations (activities, priorities, document categories) that are in use. Associated objects can be reassigned to another value
156 * Gantt chart: display issues that don't have a due date if they are assigned to a version with a date
157 * Gantt chart: display issues that don't have a due date if they are assigned to a version with a date
157 * Change projects homepage limit to 255 chars
158 * Change projects homepage limit to 255 chars
158 * Improved on-the-fly account creation. If some attributes are missing (eg. not present in the LDAP) or are invalid, the registration form is displayed so that the user is able to fill or fix these attributes
159 * Improved on-the-fly account creation. If some attributes are missing (eg. not present in the LDAP) or are invalid, the registration form is displayed so that the user is able to fill or fix these attributes
159 * Adds "please select" to activity select box if no activity is set as default
160 * Adds "please select" to activity select box if no activity is set as default
160 * Do not silently ignore timelog validation failure on issue edit
161 * Do not silently ignore timelog validation failure on issue edit
161 * Adds a rake task to send reminder emails
162 * Adds a rake task to send reminder emails
162 * Allow empty cells in wiki tables
163 * Allow empty cells in wiki tables
163 * Makes wiki text formatter pluggable
164 * Makes wiki text formatter pluggable
164 * Adds back textile acronyms support
165 * Adds back textile acronyms support
165 * Remove pre tag attributes
166 * Remove pre tag attributes
166 * Plugin hooks
167 * Plugin hooks
167 * Pluggable admin menu
168 * Pluggable admin menu
168 * Plugins can provide activity content
169 * Plugins can provide activity content
169 * Moves plugin list to its own administration menu item
170 * Moves plugin list to its own administration menu item
170 * Adds url and author_url plugin attributes
171 * Adds url and author_url plugin attributes
171 * Adds Plugin#requires_redmine method so that plugin compatibility can be checked against current Redmine version
172 * Adds Plugin#requires_redmine method so that plugin compatibility can be checked against current Redmine version
172 * Adds atom feed on time entries details
173 * Adds atom feed on time entries details
173 * Adds project name to issues feed title
174 * Adds project name to issues feed title
174 * Adds a css class on menu items in order to apply item specific styles (eg. icons)
175 * Adds a css class on menu items in order to apply item specific styles (eg. icons)
175 * Adds a Redmine plugin generators
176 * Adds a Redmine plugin generators
176 * Adds timelog link to the issue context menu
177 * Adds timelog link to the issue context menu
177 * Adds links to the user page on various views
178 * Adds links to the user page on various views
178 * Turkish translation by Ismail Sezen
179 * Turkish translation by Ismail Sezen
179 * Catalan translation
180 * Catalan translation
180 * Vietnamese translation
181 * Vietnamese translation
181 * Slovak translation
182 * Slovak translation
182 * Better naming of activity feed if only one kind of event is displayed
183 * Better naming of activity feed if only one kind of event is displayed
183 * Enable syntax highlight on issues, messages and news
184 * Enable syntax highlight on issues, messages and news
184 * Add target version to the issue list context menu
185 * Add target version to the issue list context menu
185 * Hide 'Target version' filter if no version is defined
186 * Hide 'Target version' filter if no version is defined
186 * Add filters on cross-project issue list for custom fields marked as 'For all projects'
187 * Add filters on cross-project issue list for custom fields marked as 'For all projects'
187 * Turn ftp urls into links
188 * Turn ftp urls into links
188 * Hiding the View Differences button when a wiki page's history only has one version
189 * Hiding the View Differences button when a wiki page's history only has one version
189 * Messages on a Board can now be sorted by the number of replies
190 * Messages on a Board can now be sorted by the number of replies
190 * Adds a class ('me') to events of the activity view created by current user
191 * Adds a class ('me') to events of the activity view created by current user
191 * Strip pre/code tags content from activity view events
192 * Strip pre/code tags content from activity view events
192 * Display issue notes in the activity view
193 * Display issue notes in the activity view
193 * Adds links to changesets atom feed on repository browser
194 * Adds links to changesets atom feed on repository browser
194 * Track project and tracker changes in issue history
195 * Track project and tracker changes in issue history
195 * Adds anchor to atom feed messages links
196 * Adds anchor to atom feed messages links
196 * Adds a key in lang files to set the decimal separator (point or comma) in csv exports
197 * Adds a key in lang files to set the decimal separator (point or comma) in csv exports
197 * Makes importer work with Trac 0.8.x
198 * Makes importer work with Trac 0.8.x
198 * Upgraded to Prototype 1.6.0.1
199 * Upgraded to Prototype 1.6.0.1
199 * File viewer for attached text files
200 * File viewer for attached text files
200 * Menu mapper: add support for :before, :after and :last options to #push method and add #delete method
201 * Menu mapper: add support for :before, :after and :last options to #push method and add #delete method
201 * Removed inconsistent revision numbers on diff view
202 * Removed inconsistent revision numbers on diff view
202 * CVS: add support for modules names with spaces
203 * CVS: add support for modules names with spaces
203 * Log the user in after registration if account activation is not needed
204 * Log the user in after registration if account activation is not needed
204 * Mercurial adapter improvements
205 * Mercurial adapter improvements
205 * Trac importer: read session_attribute table to find user's email and real name
206 * Trac importer: read session_attribute table to find user's email and real name
206 * Ability to disable unused SCM adapters in application settings
207 * Ability to disable unused SCM adapters in application settings
207 * Adds Filesystem adapter
208 * Adds Filesystem adapter
208 * Clear changesets and changes with raw sql when deleting a repository for performance
209 * Clear changesets and changes with raw sql when deleting a repository for performance
209 * Redmine.pm now uses the 'commit access' permission defined in Redmine
210 * Redmine.pm now uses the 'commit access' permission defined in Redmine
210 * Reposman can create any type of scm (--scm option)
211 * Reposman can create any type of scm (--scm option)
211 * Reposman creates a repository if the 'repository' module is enabled at project level only
212 * Reposman creates a repository if the 'repository' module is enabled at project level only
212 * Display svn properties in the browser, svn >= 1.5.0 only
213 * Display svn properties in the browser, svn >= 1.5.0 only
213 * Reduces memory usage when importing large git repositories
214 * Reduces memory usage when importing large git repositories
214 * Wider SVG graphs in repository stats
215 * Wider SVG graphs in repository stats
215 * SubversionAdapter#entries performance improvement
216 * SubversionAdapter#entries performance improvement
216 * SCM browser: ability to download raw unified diffs
217 * SCM browser: ability to download raw unified diffs
217 * More detailed error message in log when scm command fails
218 * More detailed error message in log when scm command fails
218 * Adds support for file viewing with Darcs 2.0+
219 * Adds support for file viewing with Darcs 2.0+
219 * Check that git changeset is not in the database before creating it
220 * Check that git changeset is not in the database before creating it
220 * Unified diff viewer for attached files with .patch or .diff extension
221 * Unified diff viewer for attached files with .patch or .diff extension
221 * File size display with Bazaar repositories
222 * File size display with Bazaar repositories
222 * Git adapter: use commit time instead of author time
223 * Git adapter: use commit time instead of author time
223 * Prettier url for changesets
224 * Prettier url for changesets
224 * Makes changes link to entries on the revision view
225 * Makes changes link to entries on the revision view
225 * Adds a field on the repository view to browse at specific revision
226 * Adds a field on the repository view to browse at specific revision
226 * Adds new projects atom feed
227 * Adds new projects atom feed
227 * Added rake tasks to generate rcov code coverage reports
228 * Added rake tasks to generate rcov code coverage reports
228 * Add Redcloth's :block_markdown_rule to allow horizontal rules in wiki
229 * Add Redcloth's :block_markdown_rule to allow horizontal rules in wiki
229 * Show the project hierarchy in the drop down list for new membership on user administration screen
230 * Show the project hierarchy in the drop down list for new membership on user administration screen
230 * Split user edit screen into tabs
231 * Split user edit screen into tabs
231 * Renames bundled RedCloth to RedCloth3 to avoid RedCloth 4 to be loaded instead
232 * Renames bundled RedCloth to RedCloth3 to avoid RedCloth 4 to be loaded instead
232 * Fixed: Roadmap crashes when a version has a due date > 2037
233 * Fixed: Roadmap crashes when a version has a due date > 2037
233 * Fixed: invalid effective date (eg. 99999-01-01) causes an error on version edition screen
234 * Fixed: invalid effective date (eg. 99999-01-01) causes an error on version edition screen
234 * Fixed: login filter providing incorrect back_url for Redmine installed in sub-directory
235 * Fixed: login filter providing incorrect back_url for Redmine installed in sub-directory
235 * Fixed: logtime entry duplicated when edited from parent project
236 * Fixed: logtime entry duplicated when edited from parent project
236 * Fixed: wrong digest for text files under Windows
237 * Fixed: wrong digest for text files under Windows
237 * Fixed: associated revisions are displayed in wrong order on issue view
238 * Fixed: associated revisions are displayed in wrong order on issue view
238 * Fixed: Git Adapter date parsing ignores timezone
239 * Fixed: Git Adapter date parsing ignores timezone
239 * Fixed: Printing long roadmap doesn't split across pages
240 * Fixed: Printing long roadmap doesn't split across pages
240 * Fixes custom fields display order at several places
241 * Fixes custom fields display order at several places
241 * Fixed: urls containing @ are parsed as email adress by the wiki formatter
242 * Fixed: urls containing @ are parsed as email adress by the wiki formatter
242 * Fixed date filters accuracy with SQLite
243 * Fixed date filters accuracy with SQLite
243 * Fixed: tokens not escaped in highlight_tokens regexp
244 * Fixed: tokens not escaped in highlight_tokens regexp
244 * Fixed Bazaar shared repository browsing
245 * Fixed Bazaar shared repository browsing
245 * Fixes platform determination under JRuby
246 * Fixes platform determination under JRuby
246 * Fixed: Estimated time in issue's journal should be rounded to two decimals
247 * Fixed: Estimated time in issue's journal should be rounded to two decimals
247 * Fixed: 'search titles only' box ignored after one search is done on titles only
248 * Fixed: 'search titles only' box ignored after one search is done on titles only
248 * Fixed: non-ASCII subversion path can't be displayed
249 * Fixed: non-ASCII subversion path can't be displayed
249 * Fixed: Inline images don't work if file name has upper case letters or if image is in BMP format
250 * Fixed: Inline images don't work if file name has upper case letters or if image is in BMP format
250 * Fixed: document listing shows on "my page" when viewing documents is disabled for the role
251 * Fixed: document listing shows on "my page" when viewing documents is disabled for the role
251 * Fixed: Latest news appear on the homepage for projects with the News module disabled
252 * Fixed: Latest news appear on the homepage for projects with the News module disabled
252 * Fixed: cross-project issue list should not show issues of projects for which the issue tracking module was disabled
253 * Fixed: cross-project issue list should not show issues of projects for which the issue tracking module was disabled
253 * Fixed: the default status is lost when reordering issue statuses
254 * Fixed: the default status is lost when reordering issue statuses
254 * Fixes error with Postgresql and non-UTF8 commit logs
255 * Fixes error with Postgresql and non-UTF8 commit logs
255 * Fixed: textile footnotes no longer work
256 * Fixed: textile footnotes no longer work
256 * Fixed: http links containing parentheses fail to reder correctly
257 * Fixed: http links containing parentheses fail to reder correctly
257 * Fixed: GitAdapter#get_rev should use current branch instead of hardwiring master
258 * Fixed: GitAdapter#get_rev should use current branch instead of hardwiring master
258
259
259
260
260 == 2008-07-06 v0.7.3
261 == 2008-07-06 v0.7.3
261
262
262 * Allow dot in firstnames and lastnames
263 * Allow dot in firstnames and lastnames
263 * Add project name to cross-project Atom feeds
264 * Add project name to cross-project Atom feeds
264 * Encoding set to utf8 in example database.yml
265 * Encoding set to utf8 in example database.yml
265 * HTML titles on forums related views
266 * HTML titles on forums related views
266 * Fixed: various XSS vulnerabilities
267 * Fixed: various XSS vulnerabilities
267 * Fixed: Entourage (and some old client) fails to correctly render notification styles
268 * Fixed: Entourage (and some old client) fails to correctly render notification styles
268 * Fixed: Fixed: timelog redirects inappropriately when :back_url is blank
269 * Fixed: Fixed: timelog redirects inappropriately when :back_url is blank
269 * Fixed: wrong relative paths to images in wiki_syntax.html
270 * Fixed: wrong relative paths to images in wiki_syntax.html
270
271
271
272
272 == 2008-06-15 v0.7.2
273 == 2008-06-15 v0.7.2
273
274
274 * "New Project" link on Projects page
275 * "New Project" link on Projects page
275 * Links to repository directories on the repo browser
276 * Links to repository directories on the repo browser
276 * Move status to front in Activity View
277 * Move status to front in Activity View
277 * Remove edit step from Status context menu
278 * Remove edit step from Status context menu
278 * Fixed: No way to do textile horizontal rule
279 * Fixed: No way to do textile horizontal rule
279 * Fixed: Repository: View differences doesn't work
280 * Fixed: Repository: View differences doesn't work
280 * Fixed: attachement's name maybe invalid.
281 * Fixed: attachement's name maybe invalid.
281 * Fixed: Error when creating a new issue
282 * Fixed: Error when creating a new issue
282 * Fixed: NoMethodError on @available_filters.has_key?
283 * Fixed: NoMethodError on @available_filters.has_key?
283 * Fixed: Check All / Uncheck All in Email Settings
284 * Fixed: Check All / Uncheck All in Email Settings
284 * Fixed: "View differences" of one file at /repositories/revision/ fails
285 * Fixed: "View differences" of one file at /repositories/revision/ fails
285 * Fixed: Column width in "my page"
286 * Fixed: Column width in "my page"
286 * Fixed: private subprojects are listed on Issues view
287 * Fixed: private subprojects are listed on Issues view
287 * Fixed: Textile: bold, italics, underline, etc... not working after parentheses
288 * Fixed: Textile: bold, italics, underline, etc... not working after parentheses
288 * Fixed: Update issue form: comment field from log time end out of screen
289 * Fixed: Update issue form: comment field from log time end out of screen
289 * Fixed: Editing role: "issue can be assigned to this role" out of box
290 * Fixed: Editing role: "issue can be assigned to this role" out of box
290 * Fixed: Unable use angular braces after include word
291 * Fixed: Unable use angular braces after include word
291 * Fixed: Using '*' as keyword for repository referencing keywords doesn't work
292 * Fixed: Using '*' as keyword for repository referencing keywords doesn't work
292 * Fixed: Subversion repository "View differences" on each file rise ERROR
293 * Fixed: Subversion repository "View differences" on each file rise ERROR
293 * Fixed: View differences for individual file of a changeset fails if the repository URL doesn't point to the repository root
294 * Fixed: View differences for individual file of a changeset fails if the repository URL doesn't point to the repository root
294 * Fixed: It is possible to lock out the last admin account
295 * Fixed: It is possible to lock out the last admin account
295 * Fixed: Wikis are viewable for anonymous users on public projects, despite not granting access
296 * Fixed: Wikis are viewable for anonymous users on public projects, despite not granting access
296 * Fixed: Issue number display clipped on 'my issues'
297 * Fixed: Issue number display clipped on 'my issues'
297 * Fixed: Roadmap version list links not carrying state
298 * Fixed: Roadmap version list links not carrying state
298 * Fixed: Log Time fieldset in IssueController#edit doesn't set default Activity as default
299 * Fixed: Log Time fieldset in IssueController#edit doesn't set default Activity as default
299 * Fixed: git's "get_rev" API should use repo's current branch instead of hardwiring "master"
300 * Fixed: git's "get_rev" API should use repo's current branch instead of hardwiring "master"
300 * Fixed: browser's language subcodes ignored
301 * Fixed: browser's language subcodes ignored
301 * Fixed: Error on project selection with numeric (only) identifier.
302 * Fixed: Error on project selection with numeric (only) identifier.
302 * Fixed: Link to PDF doesn't work after creating new issue
303 * Fixed: Link to PDF doesn't work after creating new issue
303 * Fixed: "Replies" should not be shown on forum threads that are locked
304 * Fixed: "Replies" should not be shown on forum threads that are locked
304 * Fixed: SVN errors lead to svn username/password being displayed to end users (security issue)
305 * Fixed: SVN errors lead to svn username/password being displayed to end users (security issue)
305 * Fixed: http links containing hashes don't display correct
306 * Fixed: http links containing hashes don't display correct
306 * Fixed: Allow ampersands in Enumeration names
307 * Fixed: Allow ampersands in Enumeration names
307 * Fixed: Atom link on saved query does not include query_id
308 * Fixed: Atom link on saved query does not include query_id
308 * Fixed: Logtime info lost when there's an error updating an issue
309 * Fixed: Logtime info lost when there's an error updating an issue
309 * Fixed: TOC does not parse colorization markups
310 * Fixed: TOC does not parse colorization markups
310 * Fixed: CVS: add support for modules names with spaces
311 * Fixed: CVS: add support for modules names with spaces
311 * Fixed: Bad rendering on projects/add
312 * Fixed: Bad rendering on projects/add
312 * Fixed: exception when viewing differences on cvs
313 * Fixed: exception when viewing differences on cvs
313 * Fixed: export issue to pdf will messup when use Chinese language
314 * Fixed: export issue to pdf will messup when use Chinese language
314 * Fixed: Redmine::Scm::Adapters::GitAdapter#get_rev ignored GIT_BIN constant
315 * Fixed: Redmine::Scm::Adapters::GitAdapter#get_rev ignored GIT_BIN constant
315 * Fixed: Adding non-ASCII new issue type in the New Issue page have encoding error using IE
316 * Fixed: Adding non-ASCII new issue type in the New Issue page have encoding error using IE
316 * Fixed: Importing from trac : some wiki links are messed
317 * Fixed: Importing from trac : some wiki links are messed
317 * Fixed: Incorrect weekend definition in Hebrew calendar locale
318 * Fixed: Incorrect weekend definition in Hebrew calendar locale
318 * Fixed: Atom feeds don't provide author section for repository revisions
319 * Fixed: Atom feeds don't provide author section for repository revisions
319 * Fixed: In Activity views, changesets titles can be multiline while they should not
320 * Fixed: In Activity views, changesets titles can be multiline while they should not
320 * Fixed: Ignore unreadable subversion directories (read disabled using authz)
321 * Fixed: Ignore unreadable subversion directories (read disabled using authz)
321 * Fixed: lib/SVG/Graph/Graph.rb can't externalize stylesheets
322 * Fixed: lib/SVG/Graph/Graph.rb can't externalize stylesheets
322 * Fixed: Close statement handler in Redmine.pm
323 * Fixed: Close statement handler in Redmine.pm
323
324
324
325
325 == 2008-05-04 v0.7.1
326 == 2008-05-04 v0.7.1
326
327
327 * Thai translation added (Gampol Thitinilnithi)
328 * Thai translation added (Gampol Thitinilnithi)
328 * Translations updates
329 * Translations updates
329 * Escape HTML comment tags
330 * Escape HTML comment tags
330 * Prevent "can't convert nil into String" error when :sort_order param is not present
331 * Prevent "can't convert nil into String" error when :sort_order param is not present
331 * Fixed: Updating tickets add a time log with zero hours
332 * Fixed: Updating tickets add a time log with zero hours
332 * Fixed: private subprojects names are revealed on the project overview
333 * Fixed: private subprojects names are revealed on the project overview
333 * Fixed: Search for target version of "none" fails with postgres 8.3
334 * Fixed: Search for target version of "none" fails with postgres 8.3
334 * Fixed: Home, Logout, Login links shouldn't be absolute links
335 * Fixed: Home, Logout, Login links shouldn't be absolute links
335 * Fixed: 'Latest projects' box on the welcome screen should be hidden if there are no projects
336 * Fixed: 'Latest projects' box on the welcome screen should be hidden if there are no projects
336 * Fixed: error when using upcase language name in coderay
337 * Fixed: error when using upcase language name in coderay
337 * Fixed: error on Trac import when :due attribute is nil
338 * Fixed: error on Trac import when :due attribute is nil
338
339
339
340
340 == 2008-04-28 v0.7.0
341 == 2008-04-28 v0.7.0
341
342
342 * Forces Redmine to use rails 2.0.2 gem when vendor/rails is not present
343 * Forces Redmine to use rails 2.0.2 gem when vendor/rails is not present
343 * Queries can be marked as 'For all projects'. Such queries will be available on all projects and on the global issue list.
344 * Queries can be marked as 'For all projects'. Such queries will be available on all projects and on the global issue list.
344 * Add predefined date ranges to the time report
345 * Add predefined date ranges to the time report
345 * Time report can be done at issue level
346 * Time report can be done at issue level
346 * Various timelog report enhancements
347 * Various timelog report enhancements
347 * Accept the following formats for "hours" field: 1h, 1 h, 1 hour, 2 hours, 30m, 30min, 1h30, 1h30m, 1:30
348 * Accept the following formats for "hours" field: 1h, 1 h, 1 hour, 2 hours, 30m, 30min, 1h30, 1h30m, 1:30
348 * Display the context menu above and/or to the left of the click if needed
349 * Display the context menu above and/or to the left of the click if needed
349 * Make the admin project files list sortable
350 * Make the admin project files list sortable
350 * Mercurial: display working directory files sizes unless browsing a specific revision
351 * Mercurial: display working directory files sizes unless browsing a specific revision
351 * Preserve status filter and page number when using lock/unlock/activate links on the users list
352 * Preserve status filter and page number when using lock/unlock/activate links on the users list
352 * Redmine.pm support for LDAP authentication
353 * Redmine.pm support for LDAP authentication
353 * Better error message and AR errors in log for failed LDAP on-the-fly user creation
354 * Better error message and AR errors in log for failed LDAP on-the-fly user creation
354 * Redirected user to where he is coming from after logging hours
355 * Redirected user to where he is coming from after logging hours
355 * Warn user that subprojects are also deleted when deleting a project
356 * Warn user that subprojects are also deleted when deleting a project
356 * Include subprojects versions on calendar and gantt
357 * Include subprojects versions on calendar and gantt
357 * Notify project members when a message is posted if they want to receive notifications
358 * Notify project members when a message is posted if they want to receive notifications
358 * Fixed: Feed content limit setting has no effect
359 * Fixed: Feed content limit setting has no effect
359 * Fixed: Priorities not ordered when displayed as a filter in issue list
360 * Fixed: Priorities not ordered when displayed as a filter in issue list
360 * Fixed: can not display attached images inline in message replies
361 * Fixed: can not display attached images inline in message replies
361 * Fixed: Boards are not deleted when project is deleted
362 * Fixed: Boards are not deleted when project is deleted
362 * Fixed: trying to preview a new issue raises an exception with postgresql
363 * Fixed: trying to preview a new issue raises an exception with postgresql
363 * Fixed: single file 'View difference' links do not work because of duplicate slashes in url
364 * Fixed: single file 'View difference' links do not work because of duplicate slashes in url
364 * Fixed: inline image not displayed when including a wiki page
365 * Fixed: inline image not displayed when including a wiki page
365 * Fixed: CVS duplicate key violation
366 * Fixed: CVS duplicate key violation
366 * Fixed: ActiveRecord::StaleObjectError exception on closing a set of circular duplicate issues
367 * Fixed: ActiveRecord::StaleObjectError exception on closing a set of circular duplicate issues
367 * Fixed: custom field filters behaviour
368 * Fixed: custom field filters behaviour
368 * Fixed: Postgresql 8.3 compatibility
369 * Fixed: Postgresql 8.3 compatibility
369 * Fixed: Links to repository directories don't work
370 * Fixed: Links to repository directories don't work
370
371
371
372
372 == 2008-03-29 v0.7.0-rc1
373 == 2008-03-29 v0.7.0-rc1
373
374
374 * Overall activity view and feed added, link is available on the project list
375 * Overall activity view and feed added, link is available on the project list
375 * Git VCS support
376 * Git VCS support
376 * Rails 2.0 sessions cookie store compatibility
377 * Rails 2.0 sessions cookie store compatibility
377 * Use project identifiers in urls instead of ids
378 * Use project identifiers in urls instead of ids
378 * Default configuration data can now be loaded from the administration screen
379 * Default configuration data can now be loaded from the administration screen
379 * Administration settings screen split to tabs (email notifications options moved to 'Settings')
380 * Administration settings screen split to tabs (email notifications options moved to 'Settings')
380 * Project description is now unlimited and optional
381 * Project description is now unlimited and optional
381 * Wiki annotate view
382 * Wiki annotate view
382 * Escape HTML tag in textile content
383 * Escape HTML tag in textile content
383 * Add Redmine links to documents, versions, attachments and repository files
384 * Add Redmine links to documents, versions, attachments and repository files
384 * New setting to specify how many objects should be displayed on paginated lists. There are 2 ways to select a set of issues on the issue list:
385 * New setting to specify how many objects should be displayed on paginated lists. There are 2 ways to select a set of issues on the issue list:
385 * by using checkbox and/or the little pencil that will select/unselect all issues
386 * by using checkbox and/or the little pencil that will select/unselect all issues
386 * by clicking on the rows (but not on the links), Ctrl and Shift keys can be used to select multiple issues
387 * by clicking on the rows (but not on the links), Ctrl and Shift keys can be used to select multiple issues
387 * Context menu disabled on links so that the default context menu of the browser is displayed when right-clicking on a link (click anywhere else on the row to display the context menu)
388 * Context menu disabled on links so that the default context menu of the browser is displayed when right-clicking on a link (click anywhere else on the row to display the context menu)
388 * User display format is now configurable in administration settings
389 * User display format is now configurable in administration settings
389 * Issue list now supports bulk edit/move/delete (for a set of issues that belong to the same project)
390 * Issue list now supports bulk edit/move/delete (for a set of issues that belong to the same project)
390 * Merged 'change status', 'edit issue' and 'add note' actions:
391 * Merged 'change status', 'edit issue' and 'add note' actions:
391 * Users with 'edit issues' permission can now update any property including custom fields when adding a note or changing the status
392 * Users with 'edit issues' permission can now update any property including custom fields when adding a note or changing the status
392 * 'Change issue status' permission removed. To change an issue status, a user just needs to have either 'Edit' or 'Add note' permissions and some workflow transitions allowed
393 * 'Change issue status' permission removed. To change an issue status, a user just needs to have either 'Edit' or 'Add note' permissions and some workflow transitions allowed
393 * Details by assignees on issue summary view
394 * Details by assignees on issue summary view
394 * 'New issue' link in the main menu (accesskey 7). The drop-down lists to add an issue on the project overview and the issue list are removed
395 * 'New issue' link in the main menu (accesskey 7). The drop-down lists to add an issue on the project overview and the issue list are removed
395 * Change status select box default to current status
396 * Change status select box default to current status
396 * Preview for issue notes, news and messages
397 * Preview for issue notes, news and messages
397 * Optional description for attachments
398 * Optional description for attachments
398 * 'Fixed version' label changed to 'Target version'
399 * 'Fixed version' label changed to 'Target version'
399 * Let the user choose when deleting issues with reported hours to:
400 * Let the user choose when deleting issues with reported hours to:
400 * delete the hours
401 * delete the hours
401 * assign the hours to the project
402 * assign the hours to the project
402 * reassign the hours to another issue
403 * reassign the hours to another issue
403 * Date range filter and pagination on time entries detail view
404 * Date range filter and pagination on time entries detail view
404 * Propagate time tracking to the parent project
405 * Propagate time tracking to the parent project
405 * Switch added on the project activity view to include subprojects
406 * Switch added on the project activity view to include subprojects
406 * Display total estimated and spent hours on the version detail view
407 * Display total estimated and spent hours on the version detail view
407 * Weekly time tracking block for 'My page'
408 * Weekly time tracking block for 'My page'
408 * Permissions to edit time entries
409 * Permissions to edit time entries
409 * Include subprojects on the issue list, calendar, gantt and timelog by default (can be turned off is administration settings)
410 * Include subprojects on the issue list, calendar, gantt and timelog by default (can be turned off is administration settings)
410 * Roadmap enhancements (separate related issues from wiki contents, leading h1 in version wiki pages is hidden, smaller wiki headings)
411 * Roadmap enhancements (separate related issues from wiki contents, leading h1 in version wiki pages is hidden, smaller wiki headings)
411 * Make versions with same date sorted by name
412 * Make versions with same date sorted by name
412 * Allow issue list to be sorted by target version
413 * Allow issue list to be sorted by target version
413 * Related changesets messages displayed on the issue details view
414 * Related changesets messages displayed on the issue details view
414 * Create a journal and send an email when an issue is closed by commit
415 * Create a journal and send an email when an issue is closed by commit
415 * Add 'Author' to the available columns for the issue list
416 * Add 'Author' to the available columns for the issue list
416 * More appropriate default sort order on sortable columns
417 * More appropriate default sort order on sortable columns
417 * Add issue subject to the time entries view and issue subject, description and tracker to the csv export
418 * Add issue subject to the time entries view and issue subject, description and tracker to the csv export
418 * Permissions to edit issue notes
419 * Permissions to edit issue notes
419 * Display date/time instead of date on files list
420 * Display date/time instead of date on files list
420 * Do not show Roadmap menu item if the project doesn't define any versions
421 * Do not show Roadmap menu item if the project doesn't define any versions
421 * Allow longer version names (60 chars)
422 * Allow longer version names (60 chars)
422 * Ability to copy an existing workflow when creating a new role
423 * Ability to copy an existing workflow when creating a new role
423 * Display custom fields in two columns on the issue form
424 * Display custom fields in two columns on the issue form
424 * Added 'estimated time' in the csv export of the issue list
425 * Added 'estimated time' in the csv export of the issue list
425 * Display the last 30 days on the activity view rather than the current month (number of days can be configured in the application settings)
426 * Display the last 30 days on the activity view rather than the current month (number of days can be configured in the application settings)
426 * Setting for whether new projects should be public by default
427 * Setting for whether new projects should be public by default
427 * User preference to choose how comments/replies are displayed: in chronological or reverse chronological order
428 * User preference to choose how comments/replies are displayed: in chronological or reverse chronological order
428 * Added default value for custom fields
429 * Added default value for custom fields
429 * Added tabindex property on wiki toolbar buttons (to easily move from field to field using the tab key)
430 * Added tabindex property on wiki toolbar buttons (to easily move from field to field using the tab key)
430 * Redirect to issue page after creating a new issue
431 * Redirect to issue page after creating a new issue
431 * Wiki toolbar improvements (mainly for Firefox)
432 * Wiki toolbar improvements (mainly for Firefox)
432 * Display wiki syntax quick ref link on all wiki textareas
433 * Display wiki syntax quick ref link on all wiki textareas
433 * Display links to Atom feeds
434 * Display links to Atom feeds
434 * Breadcrumb nav for the forums
435 * Breadcrumb nav for the forums
435 * Show replies when choosing to display messages in the activity
436 * Show replies when choosing to display messages in the activity
436 * Added 'include' macro to include another wiki page
437 * Added 'include' macro to include another wiki page
437 * RedmineWikiFormatting page available as a static HTML file locally
438 * RedmineWikiFormatting page available as a static HTML file locally
438 * Wrap diff content
439 * Wrap diff content
439 * Strip out email address from authors in repository screens
440 * Strip out email address from authors in repository screens
440 * Highlight the current item of the main menu
441 * Highlight the current item of the main menu
441 * Added simple syntax highlighters for php and java languages
442 * Added simple syntax highlighters for php and java languages
442 * Do not show empty diffs
443 * Do not show empty diffs
443 * Show explicit error message when the scm command failed (eg. when svn binary is not available)
444 * Show explicit error message when the scm command failed (eg. when svn binary is not available)
444 * Lithuanian translation added (Sergej Jegorov)
445 * Lithuanian translation added (Sergej Jegorov)
445 * Ukrainan translation added (Natalia Konovka & Mykhaylo Sorochan)
446 * Ukrainan translation added (Natalia Konovka & Mykhaylo Sorochan)
446 * Danish translation added (Mads Vestergaard)
447 * Danish translation added (Mads Vestergaard)
447 * Added i18n support to the jstoolbar and various settings screen
448 * Added i18n support to the jstoolbar and various settings screen
448 * RedCloth's glyphs no longer user
449 * RedCloth's glyphs no longer user
449 * New icons for the wiki toolbar (from http://www.famfamfam.com/lab/icons/silk/)
450 * New icons for the wiki toolbar (from http://www.famfamfam.com/lab/icons/silk/)
450 * The following menus can now be extended by plugins: top_menu, account_menu, application_menu
451 * The following menus can now be extended by plugins: top_menu, account_menu, application_menu
451 * Added a simple rake task to fetch changesets from the repositories: rake redmine:fetch_changesets
452 * Added a simple rake task to fetch changesets from the repositories: rake redmine:fetch_changesets
452 * Remove hardcoded "Redmine" strings in account related emails and use application title instead
453 * Remove hardcoded "Redmine" strings in account related emails and use application title instead
453 * Mantis importer preserve bug ids
454 * Mantis importer preserve bug ids
454 * Trac importer: Trac guide wiki pages skipped
455 * Trac importer: Trac guide wiki pages skipped
455 * Trac importer: wiki attachments migration added
456 * Trac importer: wiki attachments migration added
456 * Trac importer: support database schema for Trac migration
457 * Trac importer: support database schema for Trac migration
457 * Trac importer: support CamelCase links
458 * Trac importer: support CamelCase links
458 * Removes the Redmine version from the footer (can be viewed on admin -> info)
459 * Removes the Redmine version from the footer (can be viewed on admin -> info)
459 * Rescue and display an error message when trying to delete a role that is in use
460 * Rescue and display an error message when trying to delete a role that is in use
460 * Add various 'X-Redmine' headers to email notifications: X-Redmine-Host, X-Redmine-Site, X-Redmine-Project, X-Redmine-Issue-Id, -Author, -Assignee, X-Redmine-Topic-Id
461 * Add various 'X-Redmine' headers to email notifications: X-Redmine-Host, X-Redmine-Site, X-Redmine-Project, X-Redmine-Issue-Id, -Author, -Assignee, X-Redmine-Topic-Id
461 * Add "--encoding utf8" option to the Mercurial "hg log" command in order to get utf8 encoded commit logs
462 * Add "--encoding utf8" option to the Mercurial "hg log" command in order to get utf8 encoded commit logs
462 * Fixed: Gantt and calendar not properly refreshed (fragment caching removed)
463 * Fixed: Gantt and calendar not properly refreshed (fragment caching removed)
463 * Fixed: Textile image with style attribute cause internal server error
464 * Fixed: Textile image with style attribute cause internal server error
464 * Fixed: wiki TOC not rendered properly when used in an issue or document description
465 * Fixed: wiki TOC not rendered properly when used in an issue or document description
465 * Fixed: 'has already been taken' error message on username and email fields if left empty
466 * Fixed: 'has already been taken' error message on username and email fields if left empty
466 * Fixed: non-ascii attachement filename with IE
467 * Fixed: non-ascii attachement filename with IE
467 * Fixed: wrong url for wiki syntax pop-up when Redmine urls are prefixed
468 * Fixed: wrong url for wiki syntax pop-up when Redmine urls are prefixed
468 * Fixed: search for all words doesn't work
469 * Fixed: search for all words doesn't work
469 * Fixed: Do not show sticky and locked checkboxes when replying to a message
470 * Fixed: Do not show sticky and locked checkboxes when replying to a message
470 * Fixed: Mantis importer: do not duplicate Mantis username in firstname and lastname if realname is blank
471 * Fixed: Mantis importer: do not duplicate Mantis username in firstname and lastname if realname is blank
471 * Fixed: Date custom fields not displayed as specified in application settings
472 * Fixed: Date custom fields not displayed as specified in application settings
472 * Fixed: titles not escaped in the activity view
473 * Fixed: titles not escaped in the activity view
473 * Fixed: issue queries can not use custom fields marked as 'for all projects' in a project context
474 * Fixed: issue queries can not use custom fields marked as 'for all projects' in a project context
474 * Fixed: on calendar, gantt and in the tracker filter on the issue list, only active trackers of the project (and its sub projects) should be available
475 * Fixed: on calendar, gantt and in the tracker filter on the issue list, only active trackers of the project (and its sub projects) should be available
475 * Fixed: locked users should not receive email notifications
476 * Fixed: locked users should not receive email notifications
476 * Fixed: custom field selection is not saved when unchecking them all on project settings
477 * Fixed: custom field selection is not saved when unchecking them all on project settings
477 * Fixed: can not lock a topic when creating it
478 * Fixed: can not lock a topic when creating it
478 * Fixed: Incorrect filtering for unset values when using 'is not' filter
479 * Fixed: Incorrect filtering for unset values when using 'is not' filter
479 * Fixed: PostgreSQL issues_seq_id not updated when using Trac importer
480 * Fixed: PostgreSQL issues_seq_id not updated when using Trac importer
480 * Fixed: ajax pagination does not scroll up
481 * Fixed: ajax pagination does not scroll up
481 * Fixed: error when uploading a file with no content-type specified by the browser
482 * Fixed: error when uploading a file with no content-type specified by the browser
482 * Fixed: wiki and changeset links not displayed when previewing issue description or notes
483 * Fixed: wiki and changeset links not displayed when previewing issue description or notes
483 * Fixed: 'LdapError: no bind result' error when authenticating
484 * Fixed: 'LdapError: no bind result' error when authenticating
484 * Fixed: 'LdapError: invalid binding information' when no username/password are set on the LDAP account
485 * Fixed: 'LdapError: invalid binding information' when no username/password are set on the LDAP account
485 * Fixed: CVS repository doesn't work if port is used in the url
486 * Fixed: CVS repository doesn't work if port is used in the url
486 * Fixed: Email notifications: host name is missing in generated links
487 * Fixed: Email notifications: host name is missing in generated links
487 * Fixed: Email notifications: referenced changesets, wiki pages, attachments... are not turned into links
488 * Fixed: Email notifications: referenced changesets, wiki pages, attachments... are not turned into links
488 * Fixed: Do not clear issue relations when moving an issue to another project if cross-project issue relations are allowed
489 * Fixed: Do not clear issue relations when moving an issue to another project if cross-project issue relations are allowed
489 * Fixed: "undefined method 'textilizable'" error on email notification when running Repository#fetch_changesets from the console
490 * Fixed: "undefined method 'textilizable'" error on email notification when running Repository#fetch_changesets from the console
490 * Fixed: Do not send an email with no recipient, cc or bcc
491 * Fixed: Do not send an email with no recipient, cc or bcc
491 * Fixed: fetch_changesets fails on commit comments that close 2 duplicates issues.
492 * Fixed: fetch_changesets fails on commit comments that close 2 duplicates issues.
492 * Fixed: Mercurial browsing under unix-like os and for directory depth > 2
493 * Fixed: Mercurial browsing under unix-like os and for directory depth > 2
493 * Fixed: Wiki links with pipe can not be used in wiki tables
494 * Fixed: Wiki links with pipe can not be used in wiki tables
494 * Fixed: migrate_from_trac doesn't import timestamps of wiki and tickets
495 * Fixed: migrate_from_trac doesn't import timestamps of wiki and tickets
495 * Fixed: when bulk editing, setting "Assigned to" to "nobody" causes an sql error with Postgresql
496 * Fixed: when bulk editing, setting "Assigned to" to "nobody" causes an sql error with Postgresql
496
497
497
498
498 == 2008-03-12 v0.6.4
499 == 2008-03-12 v0.6.4
499
500
500 * Fixed: private projects name are displayed on account/show even if the current user doesn't have access to these private projects
501 * Fixed: private projects name are displayed on account/show even if the current user doesn't have access to these private projects
501 * Fixed: potential LDAP authentication security flaw
502 * Fixed: potential LDAP authentication security flaw
502 * Fixed: context submenus on the issue list don't show up with IE6.
503 * Fixed: context submenus on the issue list don't show up with IE6.
503 * Fixed: Themes are not applied with Rails 2.0
504 * Fixed: Themes are not applied with Rails 2.0
504 * Fixed: crash when fetching Mercurial changesets if changeset[:files] is nil
505 * Fixed: crash when fetching Mercurial changesets if changeset[:files] is nil
505 * Fixed: Mercurial repository browsing
506 * Fixed: Mercurial repository browsing
506 * Fixed: undefined local variable or method 'log' in CvsAdapter when a cvs command fails
507 * Fixed: undefined local variable or method 'log' in CvsAdapter when a cvs command fails
507 * Fixed: not null constraints not removed with Postgresql
508 * Fixed: not null constraints not removed with Postgresql
508 * Doctype set to transitional
509 * Doctype set to transitional
509
510
510
511
511 == 2007-12-18 v0.6.3
512 == 2007-12-18 v0.6.3
512
513
513 * Fixed: upload doesn't work in 'Files' section
514 * Fixed: upload doesn't work in 'Files' section
514
515
515
516
516 == 2007-12-16 v0.6.2
517 == 2007-12-16 v0.6.2
517
518
518 * Search engine: issue custom fields can now be searched
519 * Search engine: issue custom fields can now be searched
519 * News comments are now textilized
520 * News comments are now textilized
520 * Updated Japanese translation (Satoru Kurashiki)
521 * Updated Japanese translation (Satoru Kurashiki)
521 * Updated Chinese translation (Shortie Lo)
522 * Updated Chinese translation (Shortie Lo)
522 * Fixed Rails 2.0 compatibility bugs:
523 * Fixed Rails 2.0 compatibility bugs:
523 * Unable to create a wiki
524 * Unable to create a wiki
524 * Gantt and calendar error
525 * Gantt and calendar error
525 * Trac importer error (readonly? is defined by ActiveRecord)
526 * Trac importer error (readonly? is defined by ActiveRecord)
526 * Fixed: 'assigned to me' filter broken
527 * Fixed: 'assigned to me' filter broken
527 * Fixed: crash when validation fails on issue edition with no custom fields
528 * Fixed: crash when validation fails on issue edition with no custom fields
528 * Fixed: reposman "can't find group" error
529 * Fixed: reposman "can't find group" error
529 * Fixed: 'LDAP account password is too long' error when leaving the field empty on creation
530 * Fixed: 'LDAP account password is too long' error when leaving the field empty on creation
530 * Fixed: empty lines when displaying repository files with Windows style eol
531 * Fixed: empty lines when displaying repository files with Windows style eol
531 * Fixed: missing body closing tag in repository annotate and entry views
532 * Fixed: missing body closing tag in repository annotate and entry views
532
533
533
534
534 == 2007-12-10 v0.6.1
535 == 2007-12-10 v0.6.1
535
536
536 * Rails 2.0 compatibility
537 * Rails 2.0 compatibility
537 * Custom fields can now be displayed as columns on the issue list
538 * Custom fields can now be displayed as columns on the issue list
538 * Added version details view (accessible from the roadmap)
539 * Added version details view (accessible from the roadmap)
539 * Roadmap: more accurate completion percentage calculation (done ratio of open issues is now taken into account)
540 * Roadmap: more accurate completion percentage calculation (done ratio of open issues is now taken into account)
540 * Added per-project tracker selection. Trackers can be selected on project settings
541 * Added per-project tracker selection. Trackers can be selected on project settings
541 * Anonymous users can now be allowed to create, edit, comment issues, comment news and post messages in the forums
542 * Anonymous users can now be allowed to create, edit, comment issues, comment news and post messages in the forums
542 * Forums: messages can now be edited/deleted (explicit permissions need to be given)
543 * Forums: messages can now be edited/deleted (explicit permissions need to be given)
543 * Forums: topics can be locked so that no reply can be added
544 * Forums: topics can be locked so that no reply can be added
544 * Forums: topics can be marked as sticky so that they always appear at the top of the list
545 * Forums: topics can be marked as sticky so that they always appear at the top of the list
545 * Forums: attachments can now be added to replies
546 * Forums: attachments can now be added to replies
546 * Added time zone support
547 * Added time zone support
547 * Added a setting to choose the account activation strategy (available in application settings)
548 * Added a setting to choose the account activation strategy (available in application settings)
548 * Added 'Classic' theme (inspired from the v0.51 design)
549 * Added 'Classic' theme (inspired from the v0.51 design)
549 * Added an alternate theme which provides issue list colorization based on issues priority
550 * Added an alternate theme which provides issue list colorization based on issues priority
550 * Added Bazaar SCM adapter
551 * Added Bazaar SCM adapter
551 * Added Annotate/Blame view in the repository browser (except for Darcs SCM)
552 * Added Annotate/Blame view in the repository browser (except for Darcs SCM)
552 * Diff style (inline or side by side) automatically saved as a user preference
553 * Diff style (inline or side by side) automatically saved as a user preference
553 * Added issues status changes on the activity view (by Cyril Mougel)
554 * Added issues status changes on the activity view (by Cyril Mougel)
554 * Added forums topics on the activity view (disabled by default)
555 * Added forums topics on the activity view (disabled by default)
555 * Added an option on 'My account' for users who don't want to be notified of changes that they make
556 * Added an option on 'My account' for users who don't want to be notified of changes that they make
556 * Trac importer now supports mysql and postgresql databases
557 * Trac importer now supports mysql and postgresql databases
557 * Trac importer improvements (by Mat Trudel)
558 * Trac importer improvements (by Mat Trudel)
558 * 'fixed version' field can now be displayed on the issue list
559 * 'fixed version' field can now be displayed on the issue list
559 * Added a couple of new formats for the 'date format' setting
560 * Added a couple of new formats for the 'date format' setting
560 * Added Traditional Chinese translation (by Shortie Lo)
561 * Added Traditional Chinese translation (by Shortie Lo)
561 * Added Russian translation (iGor kMeta)
562 * Added Russian translation (iGor kMeta)
562 * Project name format limitation removed (name can now contain any character)
563 * Project name format limitation removed (name can now contain any character)
563 * Project identifier maximum length changed from 12 to 20
564 * Project identifier maximum length changed from 12 to 20
564 * Changed the maximum length of LDAP account to 255 characters
565 * Changed the maximum length of LDAP account to 255 characters
565 * Removed the 12 characters limit on passwords
566 * Removed the 12 characters limit on passwords
566 * Added wiki macros support
567 * Added wiki macros support
567 * Performance improvement on workflow setup screen
568 * Performance improvement on workflow setup screen
568 * More detailed html title on several views
569 * More detailed html title on several views
569 * Custom fields can now be reordered
570 * Custom fields can now be reordered
570 * Search engine: search can be restricted to an exact phrase by using quotation marks
571 * Search engine: search can be restricted to an exact phrase by using quotation marks
571 * Added custom fields marked as 'For all projects' to the csv export of the cross project issue list
572 * Added custom fields marked as 'For all projects' to the csv export of the cross project issue list
572 * Email notifications are now sent as Blind carbon copy by default
573 * Email notifications are now sent as Blind carbon copy by default
573 * Fixed: all members (including non active) should be deleted when deleting a project
574 * Fixed: all members (including non active) should be deleted when deleting a project
574 * Fixed: Error on wiki syntax link (accessible from wiki/edit)
575 * Fixed: Error on wiki syntax link (accessible from wiki/edit)
575 * Fixed: 'quick jump to a revision' form on the revisions list
576 * Fixed: 'quick jump to a revision' form on the revisions list
576 * Fixed: error on admin/info if there's more than 1 plugin installed
577 * Fixed: error on admin/info if there's more than 1 plugin installed
577 * Fixed: svn or ldap password can be found in clear text in the html source in editing mode
578 * Fixed: svn or ldap password can be found in clear text in the html source in editing mode
578 * Fixed: 'Assigned to' drop down list is not sorted
579 * Fixed: 'Assigned to' drop down list is not sorted
579 * Fixed: 'View all issues' link doesn't work on issues/show
580 * Fixed: 'View all issues' link doesn't work on issues/show
580 * Fixed: error on account/register when validation fails
581 * Fixed: error on account/register when validation fails
581 * Fixed: Error when displaying the issue list if a float custom field is marked as 'used as filter'
582 * Fixed: Error when displaying the issue list if a float custom field is marked as 'used as filter'
582 * Fixed: Mercurial adapter breaks on missing :files entry in changeset hash (James Britt)
583 * Fixed: Mercurial adapter breaks on missing :files entry in changeset hash (James Britt)
583 * Fixed: Wrong feed URLs on the home page
584 * Fixed: Wrong feed URLs on the home page
584 * Fixed: Update of time entry fails when the issue has been moved to an other project
585 * Fixed: Update of time entry fails when the issue has been moved to an other project
585 * Fixed: Error when moving an issue without changing its tracker (Postgresql)
586 * Fixed: Error when moving an issue without changing its tracker (Postgresql)
586 * Fixed: Changes not recorded when using :pserver string (CVS adapter)
587 * Fixed: Changes not recorded when using :pserver string (CVS adapter)
587 * Fixed: admin should be able to move issues to any project
588 * Fixed: admin should be able to move issues to any project
588 * Fixed: adding an attachment is not possible when changing the status of an issue
589 * Fixed: adding an attachment is not possible when changing the status of an issue
589 * Fixed: No mime-types in documents/files downloading
590 * Fixed: No mime-types in documents/files downloading
590 * Fixed: error when sorting the messages if there's only one board for the project
591 * Fixed: error when sorting the messages if there's only one board for the project
591 * Fixed: 'me' doesn't appear in the drop down filters on a project issue list.
592 * Fixed: 'me' doesn't appear in the drop down filters on a project issue list.
592
593
593 == 2007-11-04 v0.6.0
594 == 2007-11-04 v0.6.0
594
595
595 * Permission model refactoring.
596 * Permission model refactoring.
596 * Permissions: there are now 2 builtin roles that can be used to specify permissions given to other users than members of projects
597 * Permissions: there are now 2 builtin roles that can be used to specify permissions given to other users than members of projects
597 * Permissions: some permissions (eg. browse the repository) can be removed for certain roles
598 * Permissions: some permissions (eg. browse the repository) can be removed for certain roles
598 * Permissions: modules (eg. issue tracking, news, documents...) can be enabled/disabled at project level
599 * Permissions: modules (eg. issue tracking, news, documents...) can be enabled/disabled at project level
599 * Added Mantis and Trac importers
600 * Added Mantis and Trac importers
600 * New application layout
601 * New application layout
601 * Added "Bulk edit" functionality on the issue list
602 * Added "Bulk edit" functionality on the issue list
602 * More flexible mail notifications settings at user level
603 * More flexible mail notifications settings at user level
603 * Added AJAX based context menu on the project issue list that provide shortcuts for editing, re-assigning, changing the status or the priority, moving or deleting an issue
604 * Added AJAX based context menu on the project issue list that provide shortcuts for editing, re-assigning, changing the status or the priority, moving or deleting an issue
604 * Added the hability to copy an issue. It can be done from the "issue/show" view or from the context menu on the issue list
605 * Added the hability to copy an issue. It can be done from the "issue/show" view or from the context menu on the issue list
605 * Added the ability to customize issue list columns (at application level or for each saved query)
606 * Added the ability to customize issue list columns (at application level or for each saved query)
606 * Overdue versions (date reached and open issues > 0) are now always displayed on the roadmap
607 * Overdue versions (date reached and open issues > 0) are now always displayed on the roadmap
607 * Added the ability to rename wiki pages (specific permission required)
608 * Added the ability to rename wiki pages (specific permission required)
608 * Search engines now supports pagination. Results are sorted in reverse chronological order
609 * Search engines now supports pagination. Results are sorted in reverse chronological order
609 * Added "Estimated hours" attribute on issues
610 * Added "Estimated hours" attribute on issues
610 * A category with assigned issue can now be deleted. 2 options are proposed: remove assignments or reassign issues to another category
611 * A category with assigned issue can now be deleted. 2 options are proposed: remove assignments or reassign issues to another category
611 * Forum notifications are now also sent to the authors of the thread, even if they donοΏ½t watch the board
612 * Forum notifications are now also sent to the authors of the thread, even if they donοΏ½t watch the board
612 * Added an application setting to specify the application protocol (http or https) used to generate urls in emails
613 * Added an application setting to specify the application protocol (http or https) used to generate urls in emails
613 * Gantt chart: now starts at the current month by default
614 * Gantt chart: now starts at the current month by default
614 * Gantt chart: month count and zoom factor are automatically saved as user preferences
615 * Gantt chart: month count and zoom factor are automatically saved as user preferences
615 * Wiki links can now refer to other project wikis
616 * Wiki links can now refer to other project wikis
616 * Added wiki index by date
617 * Added wiki index by date
617 * Added preview on add/edit issue form
618 * Added preview on add/edit issue form
618 * Emails footer can now be customized from the admin interface (Admin -> Email notifications)
619 * Emails footer can now be customized from the admin interface (Admin -> Email notifications)
619 * Default encodings for repository files can now be set in application settings (used to convert files content and diff to UTF-8 so that theyοΏ½re properly displayed)
620 * Default encodings for repository files can now be set in application settings (used to convert files content and diff to UTF-8 so that theyοΏ½re properly displayed)
620 * Calendar: first day of week can now be set in lang files
621 * Calendar: first day of week can now be set in lang files
621 * Automatic closing of duplicate issues
622 * Automatic closing of duplicate issues
622 * Added a cross-project issue list
623 * Added a cross-project issue list
623 * AJAXified the SCM browser (tree view)
624 * AJAXified the SCM browser (tree view)
624 * Pretty URL for the repository browser (Cyril Mougel)
625 * Pretty URL for the repository browser (Cyril Mougel)
625 * Search engine: added a checkbox to search titles only
626 * Search engine: added a checkbox to search titles only
626 * Added "% done" in the filter list
627 * Added "% done" in the filter list
627 * Enumerations: values can now be reordered and a default value can be specified (eg. default issue priority)
628 * Enumerations: values can now be reordered and a default value can be specified (eg. default issue priority)
628 * Added some accesskeys
629 * Added some accesskeys
629 * Added "Float" as a custom field format
630 * Added "Float" as a custom field format
630 * Added basic Theme support
631 * Added basic Theme support
631 * Added the ability to set the οΏ½done ratioοΏ½ of issues fixed by commit (Nikolay Solakov)
632 * Added the ability to set the οΏ½done ratioοΏ½ of issues fixed by commit (Nikolay Solakov)
632 * Added custom fields in issue related mail notifications
633 * Added custom fields in issue related mail notifications
633 * Email notifications are now sent in plain text and html
634 * Email notifications are now sent in plain text and html
634 * Gantt chart can now be exported to a graphic file (png). This functionality is only available if RMagick is installed.
635 * Gantt chart can now be exported to a graphic file (png). This functionality is only available if RMagick is installed.
635 * Added syntax highlightment for repository files and wiki
636 * Added syntax highlightment for repository files and wiki
636 * Improved automatic Redmine links
637 * Improved automatic Redmine links
637 * Added automatic table of content support on wiki pages
638 * Added automatic table of content support on wiki pages
638 * Added radio buttons on the documents list to sort documents by category, date, title or author
639 * Added radio buttons on the documents list to sort documents by category, date, title or author
639 * Added basic plugin support, with a sample plugin
640 * Added basic plugin support, with a sample plugin
640 * Added a link to add a new category when creating or editing an issue
641 * Added a link to add a new category when creating or editing an issue
641 * Added a "Assignable" boolean on the Role model. If unchecked, issues can not be assigned to users having this role.
642 * Added a "Assignable" boolean on the Role model. If unchecked, issues can not be assigned to users having this role.
642 * Added an option to be able to relate issues in different projects
643 * Added an option to be able to relate issues in different projects
643 * Added the ability to move issues (to another project) without changing their trackers.
644 * Added the ability to move issues (to another project) without changing their trackers.
644 * Atom feeds added on project activity, news and changesets
645 * Atom feeds added on project activity, news and changesets
645 * Added the ability to reset its own RSS access key
646 * Added the ability to reset its own RSS access key
646 * Main project list now displays root projects with their subprojects
647 * Main project list now displays root projects with their subprojects
647 * Added anchor links to issue notes
648 * Added anchor links to issue notes
648 * Added reposman Ruby version. This script can now register created repositories in Redmine (Nicolas Chuche)
649 * Added reposman Ruby version. This script can now register created repositories in Redmine (Nicolas Chuche)
649 * Issue notes are now included in search
650 * Issue notes are now included in search
650 * Added email sending test functionality
651 * Added email sending test functionality
651 * Added LDAPS support for LDAP authentication
652 * Added LDAPS support for LDAP authentication
652 * Removed hard-coded URLs in mail templates
653 * Removed hard-coded URLs in mail templates
653 * Subprojects are now grouped by projects in the navigation drop-down menu
654 * Subprojects are now grouped by projects in the navigation drop-down menu
654 * Added a new value for date filters: this week
655 * Added a new value for date filters: this week
655 * Added cache for application settings
656 * Added cache for application settings
656 * Added Polish translation (Tomasz Gawryl)
657 * Added Polish translation (Tomasz Gawryl)
657 * Added Czech translation (Jan Kadlecek)
658 * Added Czech translation (Jan Kadlecek)
658 * Added Romanian translation (Csongor Bartus)
659 * Added Romanian translation (Csongor Bartus)
659 * Added Hebrew translation (Bob Builder)
660 * Added Hebrew translation (Bob Builder)
660 * Added Serbian translation (Dragan Matic)
661 * Added Serbian translation (Dragan Matic)
661 * Added Korean translation (Choi Jong Yoon)
662 * Added Korean translation (Choi Jong Yoon)
662 * Fixed: the link to delete issue relations is displayed even if the user is not authorized to delete relations
663 * Fixed: the link to delete issue relations is displayed even if the user is not authorized to delete relations
663 * Performance improvement on calendar and gantt
664 * Performance improvement on calendar and gantt
664 * Fixed: wiki preview doesnοΏ½t work on long entries
665 * Fixed: wiki preview doesnοΏ½t work on long entries
665 * Fixed: queries with multiple custom fields return no result
666 * Fixed: queries with multiple custom fields return no result
666 * Fixed: Can not authenticate user against LDAP if its DN contains non-ascii characters
667 * Fixed: Can not authenticate user against LDAP if its DN contains non-ascii characters
667 * Fixed: URL with ~ broken in wiki formatting
668 * Fixed: URL with ~ broken in wiki formatting
668 * Fixed: some quotation marks are rendered as strange characters in pdf
669 * Fixed: some quotation marks are rendered as strange characters in pdf
669
670
670
671
671 == 2007-07-15 v0.5.1
672 == 2007-07-15 v0.5.1
672
673
673 * per project forums added
674 * per project forums added
674 * added the ability to archive projects
675 * added the ability to archive projects
675 * added οΏ½WatchοΏ½ functionality on issues. It allows users to receive notifications about issue changes
676 * added οΏ½WatchοΏ½ functionality on issues. It allows users to receive notifications about issue changes
676 * custom fields for issues can now be used as filters on issue list
677 * custom fields for issues can now be used as filters on issue list
677 * added per user custom queries
678 * added per user custom queries
678 * commit messages are now scanned for referenced or fixed issue IDs (keywords defined in Admin -> Settings)
679 * commit messages are now scanned for referenced or fixed issue IDs (keywords defined in Admin -> Settings)
679 * projects list now shows the list of public projects and private projects for which the user is a member
680 * projects list now shows the list of public projects and private projects for which the user is a member
680 * versions can now be created with no date
681 * versions can now be created with no date
681 * added issue count details for versions on Reports view
682 * added issue count details for versions on Reports view
682 * added time report, by member/activity/tracker/version and year/month/week for the selected period
683 * added time report, by member/activity/tracker/version and year/month/week for the selected period
683 * each category can now be associated to a user, so that new issues in that category are automatically assigned to that user
684 * each category can now be associated to a user, so that new issues in that category are automatically assigned to that user
684 * added autologin feature (disabled by default)
685 * added autologin feature (disabled by default)
685 * optimistic locking added for wiki edits
686 * optimistic locking added for wiki edits
686 * added wiki diff
687 * added wiki diff
687 * added the ability to destroy wiki pages (requires permission)
688 * added the ability to destroy wiki pages (requires permission)
688 * a wiki page can now be attached to each version, and displayed on the roadmap
689 * a wiki page can now be attached to each version, and displayed on the roadmap
689 * attachments can now be added to wiki pages (original patch by Pavol Murin) and displayed online
690 * attachments can now be added to wiki pages (original patch by Pavol Murin) and displayed online
690 * added an option to see all versions in the roadmap view (including completed ones)
691 * added an option to see all versions in the roadmap view (including completed ones)
691 * added basic issue relations
692 * added basic issue relations
692 * added the ability to log time when changing an issue status
693 * added the ability to log time when changing an issue status
693 * account information can now be sent to the user when creating an account
694 * account information can now be sent to the user when creating an account
694 * author and assignee of an issue always receive notifications (even if they turned of mail notifications)
695 * author and assignee of an issue always receive notifications (even if they turned of mail notifications)
695 * added a quick search form in page header
696 * added a quick search form in page header
696 * added 'me' value for 'assigned to' and 'author' query filters
697 * added 'me' value for 'assigned to' and 'author' query filters
697 * added a link on revision screen to see the entire diff for the revision
698 * added a link on revision screen to see the entire diff for the revision
698 * added last commit message for each entry in repository browser
699 * added last commit message for each entry in repository browser
699 * added the ability to view a file diff with free to/from revision selection.
700 * added the ability to view a file diff with free to/from revision selection.
700 * text files can now be viewed online when browsing the repository
701 * text files can now be viewed online when browsing the repository
701 * added basic support for other SCM: CVS (Ralph Vater), Mercurial and Darcs
702 * added basic support for other SCM: CVS (Ralph Vater), Mercurial and Darcs
702 * added fragment caching for svn diffs
703 * added fragment caching for svn diffs
703 * added fragment caching for calendar and gantt views
704 * added fragment caching for calendar and gantt views
704 * login field automatically focused on login form
705 * login field automatically focused on login form
705 * subproject name displayed on issue list, calendar and gantt
706 * subproject name displayed on issue list, calendar and gantt
706 * added an option to choose the date format: language based or ISO 8601
707 * added an option to choose the date format: language based or ISO 8601
707 * added a simple mail handler. It lets users add notes to an existing issue by replying to the initial notification email.
708 * added a simple mail handler. It lets users add notes to an existing issue by replying to the initial notification email.
708 * a 403 error page is now displayed (instead of a blank page) when trying to access a protected page
709 * a 403 error page is now displayed (instead of a blank page) when trying to access a protected page
709 * added portuguese translation (Joao Carlos Clementoni)
710 * added portuguese translation (Joao Carlos Clementoni)
710 * added partial online help japanese translation (Ken Date)
711 * added partial online help japanese translation (Ken Date)
711 * added bulgarian translation (Nikolay Solakov)
712 * added bulgarian translation (Nikolay Solakov)
712 * added dutch translation (Linda van den Brink)
713 * added dutch translation (Linda van den Brink)
713 * added swedish translation (Thomas Habets)
714 * added swedish translation (Thomas Habets)
714 * italian translation update (Alessio Spadaro)
715 * italian translation update (Alessio Spadaro)
715 * japanese translation update (Satoru Kurashiki)
716 * japanese translation update (Satoru Kurashiki)
716 * fixed: error on history atom feed when thereοΏ½s no notes on an issue change
717 * fixed: error on history atom feed when thereοΏ½s no notes on an issue change
717 * fixed: error in journalizing an issue with longtext custom fields (Postgresql)
718 * fixed: error in journalizing an issue with longtext custom fields (Postgresql)
718 * fixed: creation of Oracle schema
719 * fixed: creation of Oracle schema
719 * fixed: last day of the month not included in project activity
720 * fixed: last day of the month not included in project activity
720 * fixed: files with an apostrophe in their names can't be accessed in SVN repository
721 * fixed: files with an apostrophe in their names can't be accessed in SVN repository
721 * fixed: performance issue on RepositoriesController#revisions when a changeset has a great number of changes (eg. 100,000)
722 * fixed: performance issue on RepositoriesController#revisions when a changeset has a great number of changes (eg. 100,000)
722 * fixed: open/closed issue counts are always 0 on reports view (postgresql)
723 * fixed: open/closed issue counts are always 0 on reports view (postgresql)
723 * fixed: date query filters (wrong results and sql error with postgresql)
724 * fixed: date query filters (wrong results and sql error with postgresql)
724 * fixed: confidentiality issue on account/show (private project names displayed to anyone)
725 * fixed: confidentiality issue on account/show (private project names displayed to anyone)
725 * fixed: Long text custom fields displayed without line breaks
726 * fixed: Long text custom fields displayed without line breaks
726 * fixed: Error when editing the wokflow after deleting a status
727 * fixed: Error when editing the wokflow after deleting a status
727 * fixed: SVN commit dates are now stored as local time
728 * fixed: SVN commit dates are now stored as local time
728
729
729
730
730 == 2007-04-11 v0.5.0
731 == 2007-04-11 v0.5.0
731
732
732 * added per project Wiki
733 * added per project Wiki
733 * added rss/atom feeds at project level (custom queries can be used as feeds)
734 * added rss/atom feeds at project level (custom queries can be used as feeds)
734 * added search engine (search in issues, news, commits, wiki pages, documents)
735 * added search engine (search in issues, news, commits, wiki pages, documents)
735 * simple time tracking functionality added
736 * simple time tracking functionality added
736 * added version due dates on calendar and gantt
737 * added version due dates on calendar and gantt
737 * added subprojects issue count on project Reports page
738 * added subprojects issue count on project Reports page
738 * added the ability to copy an existing workflow when creating a new tracker
739 * added the ability to copy an existing workflow when creating a new tracker
739 * added the ability to include subprojects on calendar and gantt
740 * added the ability to include subprojects on calendar and gantt
740 * added the ability to select trackers to display on calendar and gantt (Jeffrey Jones)
741 * added the ability to select trackers to display on calendar and gantt (Jeffrey Jones)
741 * added side by side svn diff view (Cyril Mougel)
742 * added side by side svn diff view (Cyril Mougel)
742 * added back subproject filter on issue list
743 * added back subproject filter on issue list
743 * added permissions report in admin area
744 * added permissions report in admin area
744 * added a status filter on users list
745 * added a status filter on users list
745 * support for password-protected SVN repositories
746 * support for password-protected SVN repositories
746 * SVN commits are now stored in the database
747 * SVN commits are now stored in the database
747 * added simple svn statistics SVG graphs
748 * added simple svn statistics SVG graphs
748 * progress bars for roadmap versions (Nick Read)
749 * progress bars for roadmap versions (Nick Read)
749 * issue history now shows file uploads and deletions
750 * issue history now shows file uploads and deletions
750 * #id patterns are turned into links to issues in descriptions and commit messages
751 * #id patterns are turned into links to issues in descriptions and commit messages
751 * japanese translation added (Satoru Kurashiki)
752 * japanese translation added (Satoru Kurashiki)
752 * chinese simplified translation added (Andy Wu)
753 * chinese simplified translation added (Andy Wu)
753 * italian translation added (Alessio Spadaro)
754 * italian translation added (Alessio Spadaro)
754 * added scripts to manage SVN repositories creation and user access control using ssh+svn (Nicolas Chuche)
755 * added scripts to manage SVN repositories creation and user access control using ssh+svn (Nicolas Chuche)
755 * better calendar rendering time
756 * better calendar rendering time
756 * fixed migration scripts to work with mysql 5 running in strict mode
757 * fixed migration scripts to work with mysql 5 running in strict mode
757 * fixed: error when clicking "add" with no block selected on my/page_layout
758 * fixed: error when clicking "add" with no block selected on my/page_layout
758 * fixed: hard coded links in navigation bar
759 * fixed: hard coded links in navigation bar
759 * fixed: table_name pre/suffix support
760 * fixed: table_name pre/suffix support
760
761
761
762
762 == 2007-02-18 v0.4.2
763 == 2007-02-18 v0.4.2
763
764
764 * Rails 1.2 is now required
765 * Rails 1.2 is now required
765 * settings are now stored in the database and editable through the application in: Admin -> Settings (config_custom.rb is no longer used)
766 * settings are now stored in the database and editable through the application in: Admin -> Settings (config_custom.rb is no longer used)
766 * added project roadmap view
767 * added project roadmap view
767 * mail notifications added when a document, a file or an attachment is added
768 * mail notifications added when a document, a file or an attachment is added
768 * tooltips added on Gantt chart and calender to view the details of the issues
769 * tooltips added on Gantt chart and calender to view the details of the issues
769 * ability to set the sort order for roles, trackers, issue statuses
770 * ability to set the sort order for roles, trackers, issue statuses
770 * added missing fields to csv export: priority, start date, due date, done ratio
771 * added missing fields to csv export: priority, start date, due date, done ratio
771 * added total number of issues per tracker on project overview
772 * added total number of issues per tracker on project overview
772 * all icons replaced (new icons are based on GPL icon set: "KDE Crystal Diamond 2.5" -by paolino- and "kNeu! Alpha v0.1" -by Pablo Fabregat-)
773 * all icons replaced (new icons are based on GPL icon set: "KDE Crystal Diamond 2.5" -by paolino- and "kNeu! Alpha v0.1" -by Pablo Fabregat-)
773 * added back "fixed version" field on issue screen and in filters
774 * added back "fixed version" field on issue screen and in filters
774 * project settings screen split in 4 tabs
775 * project settings screen split in 4 tabs
775 * custom fields screen split in 3 tabs (one for each kind of custom field)
776 * custom fields screen split in 3 tabs (one for each kind of custom field)
776 * multiple issues pdf export now rendered as a table
777 * multiple issues pdf export now rendered as a table
777 * added a button on users/list to manually activate an account
778 * added a button on users/list to manually activate an account
778 * added a setting option to disable "password lost" functionality
779 * added a setting option to disable "password lost" functionality
779 * added a setting option to set max number of issues in csv/pdf exports
780 * added a setting option to set max number of issues in csv/pdf exports
780 * fixed: subprojects count is always 0 on projects list
781 * fixed: subprojects count is always 0 on projects list
781 * fixed: locked users are proposed when adding a member to a project
782 * fixed: locked users are proposed when adding a member to a project
782 * fixed: setting an issue status as default status leads to an sql error with SQLite
783 * fixed: setting an issue status as default status leads to an sql error with SQLite
783 * fixed: unable to delete an issue status even if it's not used yet
784 * fixed: unable to delete an issue status even if it's not used yet
784 * fixed: filters ignored when exporting a predefined query to csv/pdf
785 * fixed: filters ignored when exporting a predefined query to csv/pdf
785 * fixed: crash when french "issue_edit" email notification is sent
786 * fixed: crash when french "issue_edit" email notification is sent
786 * fixed: hide mail preference not saved (my/account)
787 * fixed: hide mail preference not saved (my/account)
787 * fixed: crash when a new user try to edit its "my page" layout
788 * fixed: crash when a new user try to edit its "my page" layout
788
789
789
790
790 == 2007-01-03 v0.4.1
791 == 2007-01-03 v0.4.1
791
792
792 * fixed: emails have no recipient when one of the project members has notifications disabled
793 * fixed: emails have no recipient when one of the project members has notifications disabled
793
794
794
795
795 == 2007-01-02 v0.4.0
796 == 2007-01-02 v0.4.0
796
797
797 * simple SVN browser added (just needs svn binaries in PATH)
798 * simple SVN browser added (just needs svn binaries in PATH)
798 * comments can now be added on news
799 * comments can now be added on news
799 * "my page" is now customizable
800 * "my page" is now customizable
800 * more powerfull and savable filters for issues lists
801 * more powerfull and savable filters for issues lists
801 * improved issues change history
802 * improved issues change history
802 * new functionality: move an issue to another project or tracker
803 * new functionality: move an issue to another project or tracker
803 * new functionality: add a note to an issue
804 * new functionality: add a note to an issue
804 * new report: project activity
805 * new report: project activity
805 * "start date" and "% done" fields added on issues
806 * "start date" and "% done" fields added on issues
806 * project calendar added
807 * project calendar added
807 * gantt chart added (exportable to pdf)
808 * gantt chart added (exportable to pdf)
808 * single/multiple issues pdf export added
809 * single/multiple issues pdf export added
809 * issues reports improvements
810 * issues reports improvements
810 * multiple file upload for issues, documents and files
811 * multiple file upload for issues, documents and files
811 * option to set maximum size of uploaded files
812 * option to set maximum size of uploaded files
812 * textile formating of issue and news descritions (RedCloth required)
813 * textile formating of issue and news descritions (RedCloth required)
813 * integration of DotClear jstoolbar for textile formatting
814 * integration of DotClear jstoolbar for textile formatting
814 * calendar date picker for date fields (LGPL DHTML Calendar http://sourceforge.net/projects/jscalendar)
815 * calendar date picker for date fields (LGPL DHTML Calendar http://sourceforge.net/projects/jscalendar)
815 * new filter in issues list: Author
816 * new filter in issues list: Author
816 * ajaxified paginators
817 * ajaxified paginators
817 * news rss feed added
818 * news rss feed added
818 * option to set number of results per page on issues list
819 * option to set number of results per page on issues list
819 * localized csv separator (comma/semicolon)
820 * localized csv separator (comma/semicolon)
820 * csv output encoded to ISO-8859-1
821 * csv output encoded to ISO-8859-1
821 * user custom field displayed on account/show
822 * user custom field displayed on account/show
822 * default configuration improved (default roles, trackers, status, permissions and workflows)
823 * default configuration improved (default roles, trackers, status, permissions and workflows)
823 * language for default configuration data can now be chosen when running 'load_default_data' task
824 * language for default configuration data can now be chosen when running 'load_default_data' task
824 * javascript added on custom field form to show/hide fields according to the format of custom field
825 * javascript added on custom field form to show/hide fields according to the format of custom field
825 * fixed: custom fields not in csv exports
826 * fixed: custom fields not in csv exports
826 * fixed: project settings now displayed according to user's permissions
827 * fixed: project settings now displayed according to user's permissions
827 * fixed: application error when no version is selected on projects/add_file
828 * fixed: application error when no version is selected on projects/add_file
828 * fixed: public actions not authorized for members of non public projects
829 * fixed: public actions not authorized for members of non public projects
829 * fixed: non public projects were shown on welcome screen even if current user is not a member
830 * fixed: non public projects were shown on welcome screen even if current user is not a member
830
831
831
832
832 == 2006-10-08 v0.3.0
833 == 2006-10-08 v0.3.0
833
834
834 * user authentication against multiple LDAP (optional)
835 * user authentication against multiple LDAP (optional)
835 * token based "lost password" functionality
836 * token based "lost password" functionality
836 * user self-registration functionality (optional)
837 * user self-registration functionality (optional)
837 * custom fields now available for issues, users and projects
838 * custom fields now available for issues, users and projects
838 * new custom field format "text" (displayed as a textarea field)
839 * new custom field format "text" (displayed as a textarea field)
839 * project & administration drop down menus in navigation bar for quicker access
840 * project & administration drop down menus in navigation bar for quicker access
840 * text formatting is preserved for long text fields (issues, projects and news descriptions)
841 * text formatting is preserved for long text fields (issues, projects and news descriptions)
841 * urls and emails are turned into clickable links in long text fields
842 * urls and emails are turned into clickable links in long text fields
842 * "due date" field added on issues
843 * "due date" field added on issues
843 * tracker selection filter added on change log
844 * tracker selection filter added on change log
844 * Localization plugin replaced with GLoc 1.1.0 (iconv required)
845 * Localization plugin replaced with GLoc 1.1.0 (iconv required)
845 * error messages internationalization
846 * error messages internationalization
846 * german translation added (thanks to Karim Trott)
847 * german translation added (thanks to Karim Trott)
847 * data locking for issues to prevent update conflicts (using ActiveRecord builtin optimistic locking)
848 * data locking for issues to prevent update conflicts (using ActiveRecord builtin optimistic locking)
848 * new filter in issues list: "Fixed version"
849 * new filter in issues list: "Fixed version"
849 * active filters are displayed with colored background on issues list
850 * active filters are displayed with colored background on issues list
850 * custom configuration is now defined in config/config_custom.rb
851 * custom configuration is now defined in config/config_custom.rb
851 * user object no more stored in session (only user_id)
852 * user object no more stored in session (only user_id)
852 * news summary field is no longer required
853 * news summary field is no longer required
853 * tables and forms redesign
854 * tables and forms redesign
854 * Fixed: boolean custom field not working
855 * Fixed: boolean custom field not working
855 * Fixed: error messages for custom fields are not displayed
856 * Fixed: error messages for custom fields are not displayed
856 * Fixed: invalid custom fields should have a red border
857 * Fixed: invalid custom fields should have a red border
857 * Fixed: custom fields values are not validated on issue update
858 * Fixed: custom fields values are not validated on issue update
858 * Fixed: unable to choose an empty value for 'List' custom fields
859 * Fixed: unable to choose an empty value for 'List' custom fields
859 * Fixed: no issue categories sorting
860 * Fixed: no issue categories sorting
860 * Fixed: incorrect versions sorting
861 * Fixed: incorrect versions sorting
861
862
862
863
863 == 2006-07-12 - v0.2.2
864 == 2006-07-12 - v0.2.2
864
865
865 * Fixed: bug in "issues list"
866 * Fixed: bug in "issues list"
866
867
867
868
868 == 2006-07-09 - v0.2.1
869 == 2006-07-09 - v0.2.1
869
870
870 * new databases supported: Oracle, PostgreSQL, SQL Server
871 * new databases supported: Oracle, PostgreSQL, SQL Server
871 * projects/subprojects hierarchy (1 level of subprojects only)
872 * projects/subprojects hierarchy (1 level of subprojects only)
872 * environment information display in admin/info
873 * environment information display in admin/info
873 * more filter options in issues list (rev6)
874 * more filter options in issues list (rev6)
874 * default language based on browser settings (Accept-Language HTTP header)
875 * default language based on browser settings (Accept-Language HTTP header)
875 * issues list exportable to CSV (rev6)
876 * issues list exportable to CSV (rev6)
876 * simple_format and auto_link on long text fields
877 * simple_format and auto_link on long text fields
877 * more data validations
878 * more data validations
878 * Fixed: error when all mail notifications are unchecked in admin/mail_options
879 * Fixed: error when all mail notifications are unchecked in admin/mail_options
879 * Fixed: all project news are displayed on project summary
880 * Fixed: all project news are displayed on project summary
880 * Fixed: Can't change user password in users/edit
881 * Fixed: Can't change user password in users/edit
881 * Fixed: Error on tables creation with PostgreSQL (rev5)
882 * Fixed: Error on tables creation with PostgreSQL (rev5)
882 * Fixed: SQL error in "issue reports" view with PostgreSQL (rev5)
883 * Fixed: SQL error in "issue reports" view with PostgreSQL (rev5)
883
884
884
885
885 == 2006-06-25 - v0.1.0
886 == 2006-06-25 - v0.1.0
886
887
887 * multiple users/multiple projects
888 * multiple users/multiple projects
888 * role based access control
889 * role based access control
889 * issue tracking system
890 * issue tracking system
890 * fully customizable workflow
891 * fully customizable workflow
891 * documents/files repository
892 * documents/files repository
892 * email notifications on issue creation and update
893 * email notifications on issue creation and update
893 * multilanguage support (except for error messages):english, french, spanish
894 * multilanguage support (except for error messages):english, french, spanish
894 * online manual in french (unfinished)
895 * online manual in french (unfinished)
General Comments 0
You need to be logged in to leave comments. Login now