From a62ff0841fa6b36d9d1928c35cbd0a2aebebabb4 2010-06-28 02:48:06 From: Eric Davis Date: 2010-06-28 02:48:06 Subject: [PATCH] Merged r3814 from trunk. git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/branches/0.9-stable@3816 e93f8b46-1217-0410-a6f0-8f06a7374b81 --- diff --git a/doc/CHANGELOG b/doc/CHANGELOG index 2393282..8d23117 100644 --- a/doc/CHANGELOG +++ b/doc/CHANGELOG @@ -8,6 +8,18 @@ http://www.redmine.org/ Adds context menu to the roadmap issue lists +== 2010-06-24 v0.9.5 +Linkify folder names on revision view +"fiters" and "options" should be hidden in print view via css +Fixed: NoMethodError when no issue params are submitted +Fixed: projects.atom with required authentication +Fixed: External links not correctly displayed in Wiki TOC +Fixed: Member role forms in project settings are not hidden after member added +Fixed: pre can't be inside p +Fixed: session cookie path does not respect RAILS_RELATIVE_URL_ROOT +Fixed: mail handler fails when the from address is empty + + == 2010-05-01 v0.9.4 Filters collapsed by default on issues index page for a saved query diff --git a/doc/INSTALL b/doc/INSTALL index eb7669c..a4e4312 100644 --- a/doc/INSTALL +++ b/doc/INSTALL @@ -33,7 +33,7 @@ Optional: 4. Generate a session store secret Redmine stores session data in cookies by default, which requires a secret to be generated. Run: - rake config/initializers/session_store.rb + rake generate_session_store 5. Create the database structure. Under the application main directory: rake db:migrate RAILS_ENV="production" diff --git a/doc/UPGRADING b/doc/UPGRADING index fe69676..a9b81d1 100644 --- a/doc/UPGRADING +++ b/doc/UPGRADING @@ -12,12 +12,12 @@ http://www.redmine.org/ 2. Copy your database settings (RAILS_ROOT/config/database.yml) and SMTP settings (RAILS_ROOT/config/email.yml) into the new config directory - DO NOT REPLACE ANY OTHERS FILES. + DO NOT REPLACE OR EDIT ANY OTHER FILES. 3. Generate a session store secret Redmine stores session data in cookies by default, which requires a secret to be generated. Run: - rake config/initializers/session_store.rb + rake generate_session_store 4. Migrate your database (please make a backup before doing this): rake db:migrate RAILS_ENV="production"