]> git.immae.eu Git - github/shaarli/Shaarli.git/blobdiff - doc/Download-and-Installation.md
Bump version to v0.8.1
[github/shaarli/Shaarli.git] / doc / Download-and-Installation.md
index 77af25eb0ae7a951700c4d2c936c8e2f9d4dadba..32df898462732f780f64fa0b1db56d95ef8aecd9 100644 (file)
@@ -8,26 +8,31 @@ Several releases are available:
 --------------------------------------------------------
 
 ## Latest release (recommended)
-
+### Download as an archive
 Get the latest released version from the [releases](https://github.com/shaarli/Shaarli/releases) page.[](.html)
 
-The current latest released version is `v0.7.0`.
+**Download our *shaarli-full* archive** to include dependencies.
 
-### Download as an archive
+The current latest released version is `v0.8.0`
 
-As a .zip archive:
+Or in command lines:
 
 ```bash
-$ wget https://github.com/shaarli/Shaarli/archive/v0.7.0.zip
-$ unzip Shaarli-v0.7.0.zip
-$ mv Shaarli-v0.7.0 /path/to/shaarli/
+$ wget https://github.com/shaarli/Shaarli/releases/download/v0.8.0/shaarli-v0.8.0-full.zip
+$ unzip shaarli-v0.8.0-full.zip
+$ mv Shaarli /path/to/shaarli/
 ```
 
-
 |  !  |In most cases, download Shaarli from the [releases](https://github.com/shaarli/Shaarli/releases) page. Cloning using `git` or downloading Github branches as zip files requires additional steps (see below).|[](.html)
 |-----|--------------------------|
 
+### Using git
 
+```
+mkdir -p /path/to/shaarli && cd /path/to/shaarli/
+git clone -b v0.8.0 https://github.com/shaarli/Shaarli.git .
+composer update --no-dev
+```
 
 --------------------------------------------------------