Skip to content

Commit

Permalink
Prepares version 0.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
schnatterer committed Apr 26, 2018
1 parent ec75e1f commit 50cb3ce
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ Downloads all tagged photos from a [Synology Photo Station](https://www.synology
Get the binary for your specific OS from the [release page](https://github.com/schnatterer/photostationtagdownloader/releases).

```bash
wget -O pstd https://github.com/schnatterer/photostationtagdownloader/releases/download/0.1.0/pstd-linux-x64`
wget -O pstd https://github.com/schnatterer/photostationtagdownloader/releases/download/0.1.1/pstd-linux-x64`
chmod +x pstd
```

Expand All @@ -28,7 +28,7 @@ You will be prompted for the password.
## Docker

```bash
docker run schnatterer/photostationtagdownloader:0.1.0 --user your-photostation-user --output photos/ http://diskstation
docker run schnatterer/photostationtagdownloader:0.1.1 --user your-photostation-user --output photos/ http://diskstation
```

## Node.js
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "photostationtagdownloader",
"version": "0.1.1-SNAPSHOT",
"version": "0.1.1",
"description": "",
"main": "src/pstd.js",
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion sonar-project.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
sonar.projectKey=info.schnatterer.photostationtagdownloader
sonar.projectName=photostationtagdownloader
sonar.projectVersion=0.1.1-SNAPSHOT
sonar.projectVersion=0.1.1

# =====================================================
# Meta-data for the project
Expand Down
2 changes: 1 addition & 1 deletion src/pstd.js
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ function cli() {
let urlVal = '';

program
.version('0.1.1-SNAPSHOT', '-v, --version')
.version('0.1.1', '-v, --version')
.arguments('<url>').action(function (url) {
urlVal = url
})
Expand Down

0 comments on commit 50cb3ce

Please sign in to comment.