aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--CHANGELOG.md6
-rw-r--r--README.md8
-rw-r--r--app/views/help/index.textile10
-rw-r--r--config/environment.rb2
-rw-r--r--config/environments/production.rb2
5 files changed, 19 insertions, 9 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index d89dfe232..d9d10dd9b 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,4 +1,8 @@
-# V2.2.0 (en cours)
+# V2.3.0 (en cours)
+
+* Migration technique de chouette (Java)
+
+# V2.2.0 (06/03/14)
* Refonte des fonctions d'import et validation
diff --git a/README.md b/README.md
index 0b6b486f9..a484db8bd 100644
--- a/README.md
+++ b/README.md
@@ -60,9 +60,9 @@ Assume Linux user is myuser and its group mygroup (that user is the one who star
sudo mkdir -p /usr/local/opt/chouette-command/
sudo chown -R myuser:mygroup /usr/local/opt/chouette-command/
cd /usr/local/opt/chouette-command/
-wget http://maven.chouette.cityway.fr/fr/certu/chouette/chouette-gui-command/2.2.0/chouette-gui-command-2.2.0.zip
-unzip chouette-gui-command-2.2.0.zip
-cd chouette-cmd_2.2.0
+wget http://maven.chouette.cityway.fr/fr/certu/chouette/chouette-gui-command/2.3.0/chouette-gui-command-2.3.0.zip
+unzip chouette-gui-command-2.3.0.zip
+cd chouette-cmd_2.3.0
sudo chmod a+w .
```
@@ -71,7 +71,7 @@ Install web application
Get git source code :
```sh
cd
-git clone -b V2_2 git://github.com/afimb/chouette2
+git clone -b V2_3 git://github.com/afimb/chouette2
cd chouette2
```
Download gem librairies
diff --git a/app/views/help/index.textile b/app/views/help/index.textile
index 403b4da3f..44ef669cd 100644
--- a/app/views/help/index.textile
+++ b/app/views/help/index.textile
@@ -3,7 +3,7 @@ layout: default
title: Chouette v2
---
-Version 2.2.0
+Version 2.3.0
h3. Logiciel libre propriété de :
@@ -24,6 +24,12 @@ A cet égard l'attention de l'utilisateur est attirée sur les risques associé
h3. Notes de version
+h4. V2.3.0
+
+* Migration technique des frameworks JAVA
+** Spring 4
+** Hibernate 4
+
h4. V2.2.0
* Refonte de la validation
@@ -43,7 +49,7 @@ h4. V2.1.0
* ajout d'un export KML :
** lignes
** séquences d'arrêt
-** arrêts (une chouche par type)
+** arrêts (une couche par type)
** missions
** correspondances
** accès et liaisons accès-arrêt
diff --git a/config/environment.rb b/config/environment.rb
index 296970388..a7e4b12f3 100644
--- a/config/environment.rb
+++ b/config/environment.rb
@@ -6,4 +6,4 @@ require File.expand_path('../application', __FILE__)
ChouetteIhm::Application.initialize!
# Fix version
-APP_VERSION = '2.2.0'
+APP_VERSION = '2.3.0'
diff --git a/config/environments/production.rb b/config/environments/production.rb
index 9e08d4145..1c6d5d69c 100644
--- a/config/environments/production.rb
+++ b/config/environments/production.rb
@@ -76,7 +76,7 @@ ChouetteIhm::Application.configure do
# paths for external resources
config.to_prepare do
Devise::Mailer.layout "mailer"
- Chouette::Command.command = "/usr/local/opt/chouette-command/chouette-cmd_2.2.0/chouette"
+ Chouette::Command.command = "/usr/local/opt/chouette-command/chouette-cmd_2.3.0/chouette"
ImportTask.root = "/var/lib/chouette/imports"
Export.root = "/var/lib/chouette/exports"
end