diff options
author | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2007-01-02 16:34:15 +0000 |
---|---|---|
committer | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2007-01-02 16:34:15 +0000 |
commit | f3babef54ab4c5b1262d98e1f1aa14a06e066c64 (patch) | |
tree | 73bdf4bc928c45a3365ca15be60bd369a56b58bf /doc | |
parent | 2dc3850798448e3698ae9f7c4c23033827d7cd64 (diff) | |
download | redmine-f3babef54ab4c5b1262d98e1f1aa14a06e066c64.tar.gz redmine-f3babef54ab4c5b1262d98e1f1aa14a06e066c64.zip |
0.4.0 release
git-svn-id: http://redmine.rubyforge.org/svn/trunk@143 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'doc')
-rw-r--r-- | doc/CHANGELOG | 2 | ||||
-rw-r--r-- | doc/INSTALL | 16 | ||||
-rw-r--r-- | doc/UPGRADING | 22 |
3 files changed, 30 insertions, 10 deletions
diff --git a/doc/CHANGELOG b/doc/CHANGELOG index 7dc2b923c..89c032975 100644 --- a/doc/CHANGELOG +++ b/doc/CHANGELOG @@ -5,7 +5,7 @@ Copyright (C) 2006-2007 Jean-Philippe Lang http://redmine.rubyforge.org/
-== xx/xx/2006 v0.4.0
+== 01/02/2006 v0.4.0
* simple SVN browser added (just needs svn binaries in PATH)
* comments can now be added on news
diff --git a/doc/INSTALL b/doc/INSTALL index a7736749e..f55b81a60 100644 --- a/doc/INSTALL +++ b/doc/INSTALL @@ -12,7 +12,7 @@ http://redmine.rubyforge.org/ * A database (see compatibility below)
Optional:
-* RedCloth (for textile formatting)
+* RedCloth (to enable textile formatting)
Supported databases:
* MySQL (tested with MySQL 5)
@@ -22,12 +22,6 @@ Supported databases: * SQLite (tested with SQLite 3)
-== Upgrade
-
-Due to major database changes, there is no migration support from beta 0.2.0.
-Next releases (0.3.0+) will be provided with upgrade support.
-
-
== Installation
1. Uncompress program archive:
@@ -64,10 +58,14 @@ Next releases (0.3.0+) will be provided with upgrade support. == Configuration
A sample configuration file is provided: "config/config_custom.example.rb"
-Rename it to config_custom.rb and edit parameters.
+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
+
+== Upgrading
+
+See UPGRADING
diff --git a/doc/UPGRADING b/doc/UPGRADING new file mode 100644 index 000000000..cc4008a8e --- /dev/null +++ b/doc/UPGRADING @@ -0,0 +1,22 @@ +== redMine upgrade procedure
+
+redMine - project management software
+Copyright (C) 2006-2007 Jean-Philippe Lang
+http://redmine.rubyforge.org/
+
+== From 0.3.0
+
+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
+
+4. Migrate your database:
+ rake migrate RAILS_ENV="production"
+
+
+== From 0.2.x and previous
+
+Due to major database changes since 0.2.x, there is no migration support
+from 0.2.x and previous versions.
|