Display the last 30 days on the activity view rather than the current month.Number of days can be configured in the application settings.
Display wiki syntax quick ref link within the jstoolbar (closes #629, #767).Added named links syntax on quick ref (closes #766, #778).
Fixed zh and zh-tw encoding in PDF (chaoqun zou).
Adds an optional description to attachments.
Propagates time tracking to the parent project (closes #433). Time report enhancements.
Adds date range filter and pagination on time entries detail view (closes #434).
Added 'estimated time' in the csv export of the issue list.
Translation for various hard-coded strings (#577).
The following menus can now be extended by plugins: top_menu, account_menu, application_menu (empty by default).Sligth layout change: links in the top menu are now li elements.
Replaced window.hash= by Element.scrollTo()
More appropriate default sort order on sortable columns.Sortable column added on issue subject (#580).
Slight changes to the activity view.
Slight changes on users list view and hide Anonymous user.
Set wiki class to issue notes.
Fixed #208: Issue list does not scroll up when you click next
Administrators can edit issue notes.
Display custom fields in two columns on the issue form.
Added a '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.
ProjectsController#add_issue moved to IssuesController#new.Tracker can now be changed/selected on the new issue form. This action can be invoked without the tracker_id parameter (the first enabled tracker will be used by default).
Added i18n support to the jstoolbar (only english and french are actually translated).Translations can be found in public/javascripts/jstoolbar/lang/
Fixed: Date custom fields not displayed as specified in application settings.
Fixed: issue filters may be lost when paginating after r1026.
Redmine links can be used to link to documents, versions and attachments.For now, attachments of the current object can be referenced only (if you're on an issue, it's possible reference attachments of this issue only).
Admin settings screen split to tabs.Email notification options moved to this view as a tab and LDAP list is accessible from the 'Authentication' tab.
Slight improvements to the browser views.ApplicationHelper#set_html_title replaced by html_title with arguments and can be called several times in views to append elements to the title.
Moved login and logout links to ApplicationHelper methods for easier customization.
TabularFormBuilder moved out of application_helper.rb
New setting added to specify how many objects should be displayed on most paginated lists.Default is: 25, 50, 100 (users can choose one of these values).If one value only is entered in this setting (eg. 25), the 'per page' links are not displayed (prior behaviour).
Fixed: Textile image with style attribute cause internal server error.Also added tests for inline images with attributes and moved auto_link and auto_mailto rules after textile rules.
Added some tests for projects controller and helper.
Added Traditional Chinese translation (by Shortie Lo).
Added version details view accessible from the roadmap.
Roadmap progress bars now differentiate the progress due to closed issues from the open issues progress (2 different colors).
Added Bazaar adapter.Fixed 'quick jump to a revision' form on the revisions list.
Project name format limitation removed (name can now contain any character).Project identifier maximum length changed from 12 to 20.
Fixed: svn or ldap password can be found in clear text in the html source in editing mode.
Fixed: Date and time formats defined in settings not applied to the issues CSV export.
Added custom fields marked as "For all projects" to the csv export of the cross project issue list.
Added per-project tracker selection. Trackers can be selected on project settings.
'fixed version' field can now be displayed on the issue list.Category and fixed version fields added to the CSV export.
Roadmap: more accurate completion percentage calculation (done ratio of open issues is now taken into account).Issues and issues list: 'done ratio' field now displayed as a progress bar.
Added a couple of new formats for the 'date format' setting.Added a 'time format' setting.
Added wiki macros support. 2 builtin macros are defined: hello_world (sample macro that displays the arguments) and macro_list (display the list of installed macros).
Custom fields can now be displayed as columns on the issue list.Custom fields marked as "for all projects" can be added to the default columns of the issue list (in application settings).Project specific custom fields can be displayed on custom queries.
Moved ProjectsController#list_news to NewsController#index.Removed FeedsController, issues and news feeds are now handled by issues and news controllers.
ProjectsController#list_issues, #export_issues_csv and #export_issues_pdf merged into IssuesController#index
Added radio buttons on the documents list to sort documents by category, date, title or author.
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.The context menu shows up when right-clicking an issue (Opera users have to use Ctrl + left-click instead since right-click can't be reassigned for this browser)....
Fixed: some quotation marks are rendered as strange characters in pdf.
Added "Float" as a custom field format.
Fixed: 'Issues' table shows weird date for 'Start' and 'Due date' columns
Removed inconsistent user manual stuff (html/docbook content and controller). Help link now points to the Redmine guide which will be more easy to maintain.Also removed the useless components directory.
Default encodings for repository files can now be set in application settings (Admin -> Settings -> Repositories encodings).These encodings are used to convert files content and diff to UTF-8 so that they're properly displayed.Multiple values are allowed (comma separated).
Fixed: improper 0x5c char handling in PDF output (Go Maeda).
Performance improvement on calendar and gantt (about 45% on gantt for large number of issues).Partial issues/_tooltip is replaced by an helper and some translated strings are now cached.
Added the ability to customize columns of a saved query.
Search engines now supports pagination.Results are sorted in reverse chronological order.
Application layout refactored.The project menu is now the main menu.
Date added as acronym title in ApplicationHelper#authoring
Changed author display on issues, news and document files.
Main project list now displays root projects with their subprojects.Added files turned into links (if not removed) on the issue history.
Added project module concept.
A project module (eg. issue tracking, news, wiki,...) is a set of permissions that can enabled/disabled at project level.For each project, modules can be enabled on the project settings view ('Modules' tab).This requires a specific permission: 'Select project modules' (if this permission is turned off, only Redmine administrators can choose which modules a project uses)....
Removed @html_title assignments in controllers.Views can now set the header title using set_htmh_title(title) method.
Wiki page cache had to be disabled.
Removed RedCloth checks since it's now supplied with the application.
Issue notes are now included in search.Fixed: search results too long when there are many matches.Fixed: search results not escaped.
Added Redmine::WikiFormatting module and tests for wiki links.RedCloth librairy is now present in Redmine lib directory.
Fix: Inline image links broken in rev 690.TODO: Fix urls with &
Small fix in issue history display.
Fixed: auto-generated links corrupted when url contains & characters in the query string.
Fixed: "new issue" drop-down only visible by admin users.
Some deprecation fixes (end_form_tag and count API).
Gantt chart can now be exported to a graphic file (png).This functionality is only available if RMagick is present.
Small change to ApplicationHelper#textilizable to allow links to other wikis main page with custom text (eg. project:|mytext).
Textilized project descriptions on project list and home page.Added jsToolbar on project form.
Added a link to add a new category when creating or editing an issue.The user is prompted for the category name. The new category is created and the drop-down list updated using an ajax call.
Added syntax highlightment for repository files (using CodeRay).Supported languages: c, ruby, rhtml, yaml, html, xml.
Wiki links can now refer other project wikis, using this syntax:[[project:]] -> wiki starting page[[project:page]][[project:page|text]]where 'project' is the project name or identifier.
Image attachments are now sent inline to be viewed directly in the browser.
On the issue report page, 0 issue counts are now displayed as dashes.
Translated 'Sort by' label on table headers.
Changed AR error messages style (same as flash errors).Fixed flash styles for IE6.
Added icon on external wiki links
Added an option to choose the date format: language based (as defined in each lang file) or ISO 8601 (YYYY-MM-DD).This option can be set in Admin -> Settings.
Added wiki diff.Diff can be viewed from the page history, or directly from the project activity page for each edit.Uses Lars Christensen's diff library.
Removed User#display_name (replaced by User#name).
Added Darcs basic support.Files in the repository can not be viewed or downloaded since Darcs doesn't support cat-like command.
Added time report.Report can be generated by member/activity/tracker/version and year/month/week for the selected period.
Added pagination on wiki page history.
Added basic support for CVS and Mercurial SCMs.Browsing, changesets fetching and diff viewing are implemented.Only tested with local repositories.
Thanks to Ralph Vater for CVS specific code.
Fixed: open/closed issue counts are always 0 on reports view (postgresql)