Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

release v0.10.0 #588

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)

Expand Down
10 changes: 7 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -98,6 +98,10 @@ Options:
Email address where you would like to
receive email notifications. Default: SMTP
username
--notification-email-from <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)
Expand Down Expand Up @@ -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):

Expand All @@ -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} \
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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."
Expand Down