Skip to content

Commit e514f5a

Browse files
release v1.8.1 (#561)
1 parent 704a581 commit e514f5a

File tree

3 files changed

+9
-10
lines changed

3 files changed

+9
-10
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22

33
## Unreleased
44

5+
## 1.8.1 (2023-02-03)
6+
57
- fix: avoid crash when downloading over legacy `-original` name [#338](https://github.com/icloud-photos-downloader/icloud_photos_downloader/issues/338)
68
- fix: remove mac binary unitl Apple signing is supported [#551](https://github.com/icloud-photos-downloader/icloud_photos_downloader/issues/551)
79
- fix: PyPI distribution [#549](https://github.com/icloud-photos-downloader/icloud_photos_downloader/issues/549)

README.md

Lines changed: 6 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ There are three ways to run `icloudpd`:
1818
Docker automatically pulls images from the remote repository if necessary. To download explicitely, e.g. to force version update, use:
1919

2020
```sh
21-
docker pull icloudpd/icloudpd
21+
docker pull icloudpd/icloudpd:1.8.1
2222
```
2323

2424
### Running from the source
@@ -195,19 +195,16 @@ Now the script will run every 6 hours to download any new photos and videos.
195195
196196
## Docker
197197

198-
This script is available in a Docker image: `docker pull icloudpd/icloudpd`
198+
This script is available in a Docker image: `docker pull icloudpd/icloudpd:1.8.1`
199199

200-
Usage:
200+
Usage (Downloads all photos to ./Photos):
201201

202202
```bash
203-
# Downloads all photos to ./Photos
204-
205-
docker pull icloudpd/icloudpd
206-
docker run -it --rm --name icloud \
203+
docker run -it --rm --name icloudpd \
207204
-v $(pwd)/Photos:/data \
208205
-v $(pwd)/cookies:/cookies \
209206
-e TZ=America/Los_Angeles \
210-
icloudpd/icloudpd:latest \
207+
icloudpd/icloudpd:1.8.1 \
211208
icloudpd --directory /data \
212209
--cookie-directory /cookies \
213210
--folder-structure {:%Y/%Y-%m-%d} \
@@ -226,7 +223,7 @@ On Windows:
226223
Building image locally from the source tree:
227224

228225
```bash
229-
docker build . -t icloudpd
226+
docker build . -t icloudpd:dev
230227
docker run -it --rm icloudpd:latest icloudpd --version
231228
```
232229

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
setup(
77
name="icloudpd",
8-
version="1.8.0",
8+
version="1.8.1",
99
url="https://github.com/icloud-photos-downloader/icloud_photos_downloader",
1010
description=(
1111
"icloudpd is a command-line tool to download photos and videos from iCloud."

0 commit comments

Comments
 (0)