aboutsummaryrefslogtreecommitdiffhomepage
path: root/doc/Download-and-Installation.md
diff options
context:
space:
mode:
authorArthurHoaro <arthur@hoa.ro>2016-12-12 03:38:12 +0100
committerArthurHoaro <arthur@hoa.ro>2016-12-12 03:38:12 +0100
commit3cc8c898307ad53507a128db2b11238be2641c32 (patch)
tree8b6749678ebc21f4d089db796012541b6f44de03 /doc/Download-and-Installation.md
parent75f7adee19f3cced8a2d5eb134e9d6723a69a474 (diff)
downloadShaarli-3cc8c898307ad53507a128db2b11238be2641c32.tar.gz
Shaarli-3cc8c898307ad53507a128db2b11238be2641c32.tar.zst
Shaarli-3cc8c898307ad53507a128db2b11238be2641c32.zip
Bump version to v0.8.1
Signed-off-by: ArthurHoaro <arthur@hoa.ro>
Diffstat (limited to 'doc/Download-and-Installation.md')
-rw-r--r--doc/Download-and-Installation.md21
1 files changed, 13 insertions, 8 deletions
diff --git a/doc/Download-and-Installation.md b/doc/Download-and-Installation.md
index 77af25eb..32df8984 100644
--- a/doc/Download-and-Installation.md
+++ b/doc/Download-and-Installation.md
@@ -8,26 +8,31 @@ Several releases are available:
8-------------------------------------------------------- 8--------------------------------------------------------
9 9
10## Latest release (recommended) 10## Latest release (recommended)
11 11### Download as an archive
12Get the latest released version from the [releases](https://github.com/shaarli/Shaarli/releases) page.[](.html) 12Get the latest released version from the [releases](https://github.com/shaarli/Shaarli/releases) page.[](.html)
13 13
14The current latest released version is `v0.7.0`. 14**Download our *shaarli-full* archive** to include dependencies.
15 15
16### Download as an archive 16The current latest released version is `v0.8.0`
17 17
18As a .zip archive: 18Or in command lines:
19 19
20```bash 20```bash
21$ wget https://github.com/shaarli/Shaarli/archive/v0.7.0.zip 21$ wget https://github.com/shaarli/Shaarli/releases/download/v0.8.0/shaarli-v0.8.0-full.zip
22$ unzip Shaarli-v0.7.0.zip 22$ unzip shaarli-v0.8.0-full.zip
23$ mv Shaarli-v0.7.0 /path/to/shaarli/ 23$ mv Shaarli /path/to/shaarli/
24``` 24```
25 25
26
27| ! |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) 26| ! |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)
28|-----|--------------------------| 27|-----|--------------------------|
29 28
29### Using git
30 30
31```
32mkdir -p /path/to/shaarli && cd /path/to/shaarli/
33git clone -b v0.8.0 https://github.com/shaarli/Shaarli.git .
34composer update --no-dev
35```
31 36
32-------------------------------------------------------- 37--------------------------------------------------------
33 38