From 27798e7257113a3eb6a61b7db5acb796c0994b1e Mon Sep 17 00:00:00 2001 From: Andrey Nikiforov Date: Fri, 17 Feb 2023 15:08:54 -0800 Subject: [PATCH] v0.10.0 --- CHANGELOG.md | 2 ++ README.md | 10 +++++++--- setup.py | 2 +- 3 files changed, 10 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e6f965da4..9394c1444 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,8 @@ ## Unreleased +## 1.10.0 (2023-02-17) + - fix: allow spaces in filenames [#378](https://github.com/icloud-photos-downloader/icloud_photos_downloader/issues/378) - feature: add `--notification-email-from` parameter [#496](https://github.com/icloud-photos-downloader/icloud_photos_downloader/issues/496) diff --git a/README.md b/README.md index bd5a4afdd..2aa2dbdd4 100644 --- a/README.md +++ b/README.md @@ -18,7 +18,7 @@ There are three ways to run `icloudpd`: Docker automatically pulls images from the remote repository if necessary. To download explicitely, e.g. to force version update, use: ```sh -docker pull icloudpd/icloudpd:1.8.1 +docker pull icloudpd/icloudpd:1.10.0 ``` ### Running from the source @@ -98,6 +98,10 @@ Options: Email address where you would like to receive email notifications. Default: SMTP username + --notification-email-from + Email address from which you would like to + receive email notifications. Default: SMTP + username or notification-email --notification-script PATH Runs an external script when two factor authentication expires. (path required: /path/to/my/script.sh) @@ -197,7 +201,7 @@ Now the script will run every 6 hours to download any new photos and videos. ## Docker -This script is available in a Docker image: `docker pull icloudpd/icloudpd:1.8.1` +This script is available in a Docker image: `docker pull icloudpd/icloudpd:1.10.0` Usage (Downloads all photos to ./Photos): @@ -206,7 +210,7 @@ docker run -it --rm --name icloudpd \ -v $(pwd)/Photos:/data \ -v $(pwd)/cookies:/cookies \ -e TZ=America/Los_Angeles \ - icloudpd/icloudpd:1.8.1 \ + icloudpd/icloudpd:latest \ icloudpd --directory /data \ --cookie-directory /cookies \ --folder-structure {:%Y/%Y-%m-%d} \ diff --git a/setup.py b/setup.py index af1712dcb..f192f84d0 100644 --- a/setup.py +++ b/setup.py @@ -10,7 +10,7 @@ setup( name="icloudpd", - version="1.9.0", + version="1.10.0", url="https://github.com/icloud-photos-downloader/icloud_photos_downloader", description=( "icloudpd is a command-line tool to download photos and videos from iCloud."