Skip to content

Commit

Permalink
release v1.8.1 (#561)
Browse files Browse the repository at this point in the history
  • Loading branch information
AndreyNikiforov authored Feb 3, 2023
1 parent 704a581 commit e514f5a
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 10 deletions.
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.8.1 (2023-02-03)

- fix: avoid crash when downloading over legacy `-original` name [#338](https://github.com/icloud-photos-downloader/icloud_photos_downloader/issues/338)
- fix: remove mac binary unitl Apple signing is supported [#551](https://github.com/icloud-photos-downloader/icloud_photos_downloader/issues/551)
- fix: PyPI distribution [#549](https://github.com/icloud-photos-downloader/icloud_photos_downloader/issues/549)
Expand Down
15 changes: 6 additions & 9 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
docker pull icloudpd/icloudpd:1.8.1
```

### Running from the source
Expand Down Expand Up @@ -195,19 +195,16 @@ 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`
This script is available in a Docker image: `docker pull icloudpd/icloudpd:1.8.1`

Usage:
Usage (Downloads all photos to ./Photos):

```bash
# Downloads all photos to ./Photos

docker pull icloudpd/icloudpd
docker run -it --rm --name icloud \
docker run -it --rm --name icloudpd \
-v $(pwd)/Photos:/data \
-v $(pwd)/cookies:/cookies \
-e TZ=America/Los_Angeles \
icloudpd/icloudpd:latest \
icloudpd/icloudpd:1.8.1 \
icloudpd --directory /data \
--cookie-directory /cookies \
--folder-structure {:%Y/%Y-%m-%d} \
Expand All @@ -226,7 +223,7 @@ On Windows:
Building image locally from the source tree:

```bash
docker build . -t icloudpd
docker build . -t icloudpd:dev
docker run -it --rm icloudpd:latest icloudpd --version
```

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

setup(
name="icloudpd",
version="1.8.0",
version="1.8.1",
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

0 comments on commit e514f5a

Please sign in to comment.