diff options
author | Arthur <arthur@hoa.ro> | 2016-12-12 03:40:09 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-12-12 03:40:09 +0100 |
commit | ab18fe06d6c03e1a491548d5bb63d231087b7768 (patch) | |
tree | 8b6749678ebc21f4d089db796012541b6f44de03 /doc/Download-and-Installation.md | |
parent | 75f7adee19f3cced8a2d5eb134e9d6723a69a474 (diff) | |
parent | 3cc8c898307ad53507a128db2b11238be2641c32 (diff) | |
download | Shaarli-ab18fe06d6c03e1a491548d5bb63d231087b7768.tar.gz Shaarli-ab18fe06d6c03e1a491548d5bb63d231087b7768.tar.zst Shaarli-ab18fe06d6c03e1a491548d5bb63d231087b7768.zip |
Merge pull request #708 from ArthurHoaro/v0.8.1v0.8.1
Bump version to v0.8.1
Diffstat (limited to 'doc/Download-and-Installation.md')
-rw-r--r-- | doc/Download-and-Installation.md | 21 |
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 | |
12 | Get the latest released version from the [releases](https://github.com/shaarli/Shaarli/releases) page.[](.html) | 12 | Get the latest released version from the [releases](https://github.com/shaarli/Shaarli/releases) page.[](.html) |
13 | 13 | ||
14 | The current latest released version is `v0.7.0`. | 14 | **Download our *shaarli-full* archive** to include dependencies. |
15 | 15 | ||
16 | ### Download as an archive | 16 | The current latest released version is `v0.8.0` |
17 | 17 | ||
18 | As a .zip archive: | 18 | Or 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 | ``` | ||
32 | mkdir -p /path/to/shaarli && cd /path/to/shaarli/ | ||
33 | git clone -b v0.8.0 https://github.com/shaarli/Shaarli.git . | ||
34 | composer update --no-dev | ||
35 | ``` | ||
31 | 36 | ||
32 | -------------------------------------------------------- | 37 | -------------------------------------------------------- |
33 | 38 | ||