diff options
author | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2007-01-21 11:50:22 +0000 |
---|---|---|
committer | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2007-01-21 11:50:22 +0000 |
commit | 0b4d4db131304eac84dc90b289a95db3410a2bfe (patch) | |
tree | b5ad6934b897635e594ca089f06fe953d082ed53 /doc | |
parent | a1b12335ab6a01ea6e7dcc1df490db16136c8c2a (diff) | |
download | redmine-0b4d4db131304eac84dc90b289a95db3410a2bfe.tar.gz redmine-0b4d4db131304eac84dc90b289a95db3410a2bfe.zip |
settings are now stored in the database (config_custom.rb no more used) and editable through the application in: Admin -> Settings
git-svn-id: http://redmine.rubyforge.org/svn/trunk@167 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'doc')
-rw-r--r-- | doc/CHANGELOG | 11 | ||||
-rw-r--r-- | doc/INSTALL | 7 | ||||
-rw-r--r-- | doc/UPGRADING | 8 |
3 files changed, 17 insertions, 9 deletions
diff --git a/doc/CHANGELOG b/doc/CHANGELOG index bbd824da1..0373e46a1 100644 --- a/doc/CHANGELOG +++ b/doc/CHANGELOG @@ -5,7 +5,16 @@ Copyright (C) 2006-2007 Jean-Philippe Lang http://redmine.rubyforge.org/
-== 03/02/2006 v0.4.1
+== xx/xx/2006 v0.4.2
+
+* settings are now stored in the database (config_custom.rb no more used) and editable through the application in: Admin -> Settings
+* tooltips added on Gantt chart and calender to view the details of the issues
+* 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-)
+* added back "fixed version" field on issue screen and in filters
+* fixed: subprojects count is always 0 on projects list
+
+
+== 01/03/2006 v0.4.1
* fixed: emails have no recipient when one of the project members has notifications disabled
diff --git a/doc/INSTALL b/doc/INSTALL index f55b81a60..4afe11ad1 100644 --- a/doc/INSTALL +++ b/doc/INSTALL @@ -13,6 +13,7 @@ http://redmine.rubyforge.org/ Optional:
* RedCloth (to enable textile formatting)
+* SVN binaries (needed for repository browsing, must be available in PATH)
Supported databases:
* MySQL (tested with MySQL 5)
@@ -57,14 +58,12 @@ Supported databases: == Configuration
-A sample configuration file is provided: "config/config_custom.example.rb"
-Rename it to config_custom.rb and set your parameters.
-Don't forget to restart the application after any change.
-
In config/environment.rb, you can set parameters for your SMTP server:
config.action_mailer.server_settings: SMTP server configuration
config.action_mailer.perform_deliveries: set to false to disable mail delivering
+Don't forget to restart the application after any change.
+
== Upgrading
diff --git a/doc/UPGRADING b/doc/UPGRADING index cc4008a8e..f42b5b352 100644 --- a/doc/UPGRADING +++ b/doc/UPGRADING @@ -4,19 +4,19 @@ redMine - project management software Copyright (C) 2006-2007 Jean-Philippe Lang
http://redmine.rubyforge.org/
-== From 0.3.0
+
+== From 0.3.0 and above
1. Uncompress program archive in a new directory:
tar zxvf <filename>
-3. Copy your database (database.yml) and configuration settings (config_custom.rb)
- into the new config directory
+3. Copy your database settings (database.yml) into the new config directory
4. Migrate your database:
rake migrate RAILS_ENV="production"
-== From 0.2.x and previous
+== From 0.2.x and below
Due to major database changes since 0.2.x, there is no migration support
from 0.2.x and previous versions.
|