Don't show attributes on role form for built-in roles.
Removed ProjectsController#feeds. This view was incomplete and inconsistent with permissions.Feeds can still be accessed from the corresponding screens (eg. news feed is accessible from the news view).
Moved media print specific styles to application.css (print.css removed).
Default columns displayed on the issue list can now be selected at application level.Saved queries can overide this selection.
Custom query columns: checkboxes replaced by two selects that let the user specify columns order.
Added a checkbox on custom query form to explicitly say if the query uses default columns or not.
Added the ability to customize columns of a saved query.
Fixed: Can not authenticate user against LDAP if its DN contains non-ascii characters.
Fixed: Manage pu(b)lic queries typo (Thomas Lecavelier).As this fix modifies manage_public_queries permission symbol, this permission has to re-entered.
Sligth changes to wiki views.
Fixed: unable to migrate from an empty database.(Message model is loaded at startup, which fails if it doesn't exist)
Slight style update.
Added wiki index by date.
Search engines now supports pagination.Results are sorted in reverse chronological order.
Slight changes to the stylesheet and footer.
Boards: new message form displayed with no additional request.
Slight change to issues/show.
Added a named route for the home page.
Fixed projects search.
Search engine now only searches objects the user is allowed to view.
Project activity view now only shows what the user is allowed to view.
Added length validation for IssueCategory name.
Fixed: Planning title displayed in the project sidebar even if there is no link below.
Basic plugin support.
Subversion repository now accepts svn+ssh url.
The news list now shows the full news contents.News add/edit forms are now accessible with no additional request.
Added polish translation (Tomasz Gawryl).Added a gloc task to update lang files based on the english file content.
Application layout refactored.The project menu is now the main menu.
Fixed: project homepage length validation inconsistent with database field.
Fixed setting value serialization.
Fixed: Oracle error when saving serialized setting (eg. mail notifications)
Fixed: error on document list with a document without description.
Fixed: error when uploading a file with a content type longer than 60 chars.(Maximum size changed to 255. Mime type not saved if longer)
Added RMagick availability on admin/info.
Date added as acronym title in ApplicationHelper#authoring
Fixed: unable to save a new wiki page that just contains the default h1 title
Changed author display on issues, news and document files.
Added 'Estimated hours' attribute on issues.
Project modules are checked (default) when creating a project.
Main project list now displays root projects with their subprojects.Added files turned into links (if not removed) on the issue history.
Mail notification options restored (default is: issue_added and issue_updated).Added mail notification when adding a news (disabled by default).
Fixed: Spent Time on Reports page only visible to administrators.
Fixed: can't preview/save the very first wiki page.
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)....
Notifications about issues (add/edit) are now sent in plain text and html.Removed lang specific strings in the corresponding mail templates, so that there is only one template for all languages.
Added "% done" in the filter list.
Added the ability to rename wiki pages (specific permission required).
Existing links that point to the old page are preserved and automatically redirected to the new page (this behaviour can be disabled when renaming the page).
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.
Fixed: 'Move' button always visible on issues list.
Automatically scroll down to the preview when previewing wiki page.
Added code highlighting support in wiki, using this syntax:
<-- cut here <pre><code class="ruby"> Place you code here. </code></pre> cut here -->
'current week' filter fix.
Removed RedCloth checks since it's now supplied with the application.
Search field automatically focused.
Fixed: custom field displayed as deleted in the issue history even if no value was set.
Issue notes are now included in search.Fixed: search results too long when there are many matches.Fixed: search results not escaped.
Added a new value for date filters: 'this week'
Subprojects are now grouped by projects in the 'Projects' top navigation drop-down menu.
Small fix in Mailer.
'Due in' label removed from the changelog view.
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 &
Buttons (edit, watch...) on issues/show are now located in the upper-right corner.Pdf export link is at the bottom of the screen.
Small fix in issue history display.
Fixed: auto-generated links corrupted when url contains & characters in the query string.
Added 'reported by me' and 'assigned to me' issue feeds on 'My page'.
Added the ability to move issues (to another project) without changing their trackers.Added length validation for homepage project attribute.
Added atom feed on the new cross-project issue list.
Added cache for application settings (Setting model).Once the values are cached, only one database query is done at each user request (to check if the cache is still valid).
Added a cross-project issue list. It displays the issues of all the projects visible by the user.The users list available in the filters ('assigned to' / 'created by') is made of the members of all projects the current user belongs to.For now, this view is only accessible from 'My page' ('issues assigned to me' or 'issues reported by me' blocks, to view the full lists)...
Fixed: autologin broken.
Added Redmine::Info to store various information about the application.
Fixed: "new issue" drop-down only visible by admin users.
Fixed: "subproject of" list should not show archived projects.
Added the ability to reset its own RSS access key on "My account".
Some deprecation fixes (end_form_tag and count API).
Fix: error when posting to projects/add or users/add with no custom_fields parameter.
Fixed: queries with multiple custom fields return no result.
Gantt chart can now be exported to a graphic file (png).This functionality is only available if RMagick is present.
Fixed: calendar and gantt not updated when adding/editing/deleting a project version.
Replaced hard-coded urls in Mailer#attachments_add
Automatic closing of duplicate issues.When closing an issue, all related issues marked as duplicates are now also closed.
Fixed: Bad url to project forums from the wiki home page.
Fixed: wiki preview doesn't work on long entries.POST is now used for previews instead of GET.
Changeset comments are now stripped before being stored in the database (patch by Nicholas Wieland).
Small change to ApplicationHelper#textilizable to allow links to other wikis main page with custom text (eg. project:|mytext).
Application welcome text is now textilized.
Textilized project descriptions on project list and home page.Added jsToolbar on project form.
Code improvement in ProjectsController#activity (Nicolas Chuche)
Added a 'Assignable' boolean on Role model.If unchecked, issues can not be assigned to users having this role.
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 feeds auto discovery links on projects/show (patch by Nicolas Chuche).Also fixed 'issue changes details' feed title.
Fixed: nil error on 'commits per month' graph.
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.