aboutsummaryrefslogtreecommitdiffhomepage
path: root/docs
diff options
context:
space:
mode:
authorNicolas Lœuillet <nicolas@loeuillet.org>2016-09-15 14:26:30 +0200
committerNicolas Lœuillet <nicolas@loeuillet.org>2016-09-19 15:22:05 +0200
commitce0a32229a8d139115ccd1d247a0ee4f1fedc8a3 (patch)
treeb17180badb278142f9652d9cff25f1e8caa9047b /docs
parent8fed8d1bacbbcbf606a94497c5b58f49068bd6a3 (diff)
downloadwallabag-ce0a32229a8d139115ccd1d247a0ee4f1fedc8a3.tar.gz
wallabag-ce0a32229a8d139115ccd1d247a0ee4f1fedc8a3.tar.zst
wallabag-ce0a32229a8d139115ccd1d247a0ee4f1fedc8a3.zip
Fix wallabag version in documentation
Diffstat (limited to 'docs')
-rw-r--r--docs/de/user/installation.rst5
-rw-r--r--docs/de/user/upgrade.rst7
-rw-r--r--docs/en/user/installation.rst9
-rw-r--r--docs/en/user/upgrade.rst7
-rw-r--r--docs/fr/user/installation.rst9
-rw-r--r--docs/fr/user/upgrade.rst7
6 files changed, 13 insertions, 31 deletions
diff --git a/docs/de/user/installation.rst b/docs/de/user/installation.rst
index 2e3108be..05602bf3 100644
--- a/docs/de/user/installation.rst
+++ b/docs/de/user/installation.rst
@@ -54,9 +54,8 @@ Um wallabag selbst zu installieren, musst du die folgenden Kommandos ausführen:
54 54
55 git clone https://github.com/wallabag/wallabag.git 55 git clone https://github.com/wallabag/wallabag.git
56 cd wallabag 56 cd wallabag
57 git checkout 2.0.8 57 git checkout 2.1.0
58 SYMFONY_ENV=prod composer install --no-dev -o --prefer-dist 58 ./install.sh
59 php bin/console wallabag:install --env=prod
60 59
61Um PHPs eingebauten Server zu starten und zu testen, ob alles korrekt installiert wurde, kannst du folgendes Kommando ausführen: 60Um PHPs eingebauten Server zu starten und zu testen, ob alles korrekt installiert wurde, kannst du folgendes Kommando ausführen:
62 61
diff --git a/docs/de/user/upgrade.rst b/docs/de/user/upgrade.rst
index c04b68f3..953c84ff 100644
--- a/docs/de/user/upgrade.rst
+++ b/docs/de/user/upgrade.rst
@@ -4,15 +4,14 @@ Wallabag updaten
4Update auf einem dedizierten Webserver 4Update auf einem dedizierten Webserver
5-------------------------------------- 5--------------------------------------
6 6
7Das neueste Release ist auf https://www.wallabag.org/pages/download-wallabag.html veröffentlicht. Um deine wallabag Installation auf die neueste Version upzudaten, führe die folgenden Kommandos in deinem wallabag Ordner aus (ersetze ``2.0.8`` mit der neuesten Releasenummer): 7Das neueste Release ist auf https://www.wallabag.org/pages/download-wallabag.html veröffentlicht. Um deine wallabag Installation auf die neueste Version upzudaten, führe die folgenden Kommandos in deinem wallabag Ordner aus (ersetze ``2.1.0`` mit der neuesten Releasenummer):
8 8
9:: 9::
10 10
11 git fetch origin 11 git fetch origin
12 git fetch --tags 12 git fetch --tags
13 git checkout 2.0.8 13 git checkout 2.1.0
14 SYMFONY_ENV=prod composer install --no-dev -o --prefer-dist 14 ./install.sh
15 php bin/console cache:clear --env=prod
16 15
17Update auf einem Shared Webhosting 16Update auf einem Shared Webhosting
18---------------------------------- 17----------------------------------
diff --git a/docs/en/user/installation.rst b/docs/en/user/installation.rst
index 3794c757..8e9f71d4 100644
--- a/docs/en/user/installation.rst
+++ b/docs/en/user/installation.rst
@@ -47,20 +47,13 @@ Install Composer:
47 47
48You can find specific instructions `here <https://getcomposer.org/doc/00-intro.md>`__. 48You can find specific instructions `here <https://getcomposer.org/doc/00-intro.md>`__.
49 49
50You also need to install node.js (via `the Download page <https://nodejs.org/en/download/>`__), npm (already install with node.js), bower and grunt:
51
52::
53
54 npm install -g bower
55 npm install -g grunt-cli
56
57To install wallabag itself, you must run the following commands: 50To install wallabag itself, you must run the following commands:
58 51
59:: 52::
60 53
61 git clone https://github.com/wallabag/wallabag.git 54 git clone https://github.com/wallabag/wallabag.git
62 cd wallabag 55 cd wallabag
63 git checkout 2.1 56 git checkout 2.1.0
64 ./install.sh 57 ./install.sh
65 58
66To start PHP's build-in server and test if everything did install correctly, you can do: 59To start PHP's build-in server and test if everything did install correctly, you can do:
diff --git a/docs/en/user/upgrade.rst b/docs/en/user/upgrade.rst
index 90ed6c70..5c37be95 100644
--- a/docs/en/user/upgrade.rst
+++ b/docs/en/user/upgrade.rst
@@ -4,15 +4,14 @@ Upgrade wallabag
4Upgrade on a dedicated web server 4Upgrade on a dedicated web server
5--------------------------------- 5---------------------------------
6 6
7The last release is published on https://www.wallabag.org/pages/download-wallabag.html. In order to upgrade your wallabag installation and get the last version, run the following commands in you wallabag folder (replace ``2.0.8`` by the last release number): 7The last release is published on https://www.wallabag.org/pages/download-wallabag.html. In order to upgrade your wallabag installation and get the last version, run the following commands in you wallabag folder (replace ``2.1.0`` by the last release number):
8 8
9:: 9::
10 10
11 git fetch origin 11 git fetch origin
12 git fetch --tags 12 git fetch --tags
13 git checkout 2.0.8 13 git checkout 2.1.0
14 SYMFONY_ENV=prod composer install --no-dev -o --prefer-dist 14 ./install.sh
15 php bin/console cache:clear --env=prod
16 15
17Upgrade on a shared hosting 16Upgrade on a shared hosting
18--------------------------- 17---------------------------
diff --git a/docs/fr/user/installation.rst b/docs/fr/user/installation.rst
index 105e8122..4fccd0d4 100644
--- a/docs/fr/user/installation.rst
+++ b/docs/fr/user/installation.rst
@@ -45,20 +45,13 @@ Installation de Composer :
45 45
46Vous pouvez trouver des instructions spécifiques `ici (en anglais) <https://getcomposer.org/doc/00-intro.md>`__. 46Vous pouvez trouver des instructions spécifiques `ici (en anglais) <https://getcomposer.org/doc/00-intro.md>`__.
47 47
48Vous devez aussi installer node.js (via `la page de téléchargements <https://nodejs.org/en/download/>`__), npm (déjà installé avec node.js), bower et grunt:
49
50::
51
52 npm install -g bower
53 npm install -g grunt-cli
54
55Pour installer wallabag, vous devez exécuter ces commandes : 48Pour installer wallabag, vous devez exécuter ces commandes :
56 49
57:: 50::
58 51
59 git clone https://github.com/wallabag/wallabag.git 52 git clone https://github.com/wallabag/wallabag.git
60 cd wallabag 53 cd wallabag
61 git checkout 2.1 54 git checkout 2.1.0
62 ./install.sh 55 ./install.sh
63 56
64Pour démarrer le serveur interne à php et vérifier que tout s'est installé correctement, vous pouvez exécuter : 57Pour démarrer le serveur interne à php et vérifier que tout s'est installé correctement, vous pouvez exécuter :
diff --git a/docs/fr/user/upgrade.rst b/docs/fr/user/upgrade.rst
index 1ead2c94..e3798979 100644
--- a/docs/fr/user/upgrade.rst
+++ b/docs/fr/user/upgrade.rst
@@ -4,15 +4,14 @@ Mettre à jour wallabag
4Mise à jour sur un serveur dédié 4Mise à jour sur un serveur dédié
5-------------------------------- 5--------------------------------
6 6
7La dernière version de wallabag est publiée à cette adresse : https://www.wallabag.org/pages/download-wallabag.html. Pour mettre à jour votre installation de wallabag, exécutez les commandes suivantes dans votre répertoire d'installation (remplacez ``2.0.8`` par le numéro de la dernière version) : 7La dernière version de wallabag est publiée à cette adresse : https://www.wallabag.org/pages/download-wallabag.html. Pour mettre à jour votre installation de wallabag, exécutez les commandes suivantes dans votre répertoire d'installation (remplacez ``2.1.0`` par le numéro de la dernière version) :
8 8
9:: 9::
10 10
11 git fetch origin 11 git fetch origin
12 git fetch --tags 12 git fetch --tags
13 git checkout 2.0.8 13 git checkout 2.1.0
14 SYMFONY_ENV=prod composer install --no-dev -o --prefer-dist 14 ./install.sh
15 php bin/console cache:clear --env=prod
16 15
17Mise à jour sur un hébergement mutualisé 16Mise à jour sur un hébergement mutualisé
18---------------------------------------- 17----------------------------------------