diff --git a/README.md b/README.md index d74a42a..a538108 100644 --- a/README.md +++ b/README.md @@ -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 ``` @@ -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 diff --git a/package.json b/package.json index 7d7d9e5..74b08ad 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "photostationtagdownloader", - "version": "0.1.1-SNAPSHOT", + "version": "0.1.1", "description": "", "main": "src/pstd.js", "scripts": { diff --git a/sonar-project.properties b/sonar-project.properties index 3c153d6..41fc6b4 100644 --- a/sonar-project.properties +++ b/sonar-project.properties @@ -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 diff --git a/src/pstd.js b/src/pstd.js index 231b57a..79129fe 100644 --- a/src/pstd.js +++ b/src/pstd.js @@ -44,7 +44,7 @@ function cli() { let urlVal = ''; program - .version('0.1.1-SNAPSHOT', '-v, --version') + .version('0.1.1', '-v, --version') .arguments('').action(function (url) { urlVal = url })