Skip to content

Commit

Permalink
bump v1.14.2 (#654)
Browse files Browse the repository at this point in the history
  • Loading branch information
AndreyNikiforov authored Jul 3, 2023
1 parent e5dd738 commit 76c7276
Show file tree
Hide file tree
Showing 5 changed files with 12 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.14.2 (2023-07-03)

- fix: finite retry on unhandled errors during photo iteration [#642](https://github.com/icloud-photos-downloader/icloud_photos_downloader/issues/642)
- fix: retry on internal error during deletion [#615](https://github.com/icloud-photos-downloader/icloud_photos_downloader/issues/615)

Expand Down
6 changes: 3 additions & 3 deletions EXPERIMENTAL.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,17 +34,17 @@ Legacy command (compatible with prior versions):

`docker run -it --rm icloudpd:icloudpd icloud --help`

`icloudpd-1.14.1-windows-amd64 --help`
`icloudpd-1.14.2-windows-amd64 --help`

Help:

`docker run -it --rm icloudpd:icloudpd`

`icloudpd-ex-1.14.1-windows-amd64 --help`
`icloudpd-ex-1.14.2-windows-amd64 --help`

Example:

`docker run -it --rm icloudpd:icloudpd copy [email protected] /path/to/{album}/{date_created:%Y/%Y-%m}`

`icloudpd-ex-1.14.1-windows-amd64 copy [email protected] /path/to/{album}/{date_created:%Y/%Y-%m}`
`icloudpd-ex-1.14.2-windows-amd64 copy [email protected] /path/to/{album}/{date_created:%Y/%Y-%m}`

10 changes: 5 additions & 5 deletions FAQ.md
Original file line number Diff line number Diff line change
Expand Up @@ -59,10 +59,10 @@ iOS 16 feature to share libraries between accounts is [not supported](https://gi

Here are the steps to make it working:
- download binary from Github [Releases](https://github.com/icloud-photos-downloader/icloud_photos_downloader/releases) into desired local folder
- add executable flag by running `chmod +x icloudpd-1.14.1-macos-amd64`
- start it from the terminal: `icloudpd-1.14.1-macos-amd64`
- add executable flag by running `chmod +x icloudpd-1.14.2-macos-amd64`
- start it from the terminal: `icloudpd-1.14.2-macos-amd64`
- Apple will tell you that it cannot check for malicous software and refuse to run the app; click "Ok"
- Open "System Settings"/"Privacy & Security" and find `icloudpd-1.14.1-macos-amd64` as blocked app; Click "Allow"
- Start `icloudpd-1.14.1-macos-amd64` from the terminal again
- Open "System Settings"/"Privacy & Security" and find `icloudpd-1.14.2-macos-amd64` as blocked app; Click "Allow"
- Start `icloudpd-1.14.2-macos-amd64` from the terminal again
- Apple will show another warning; click "Open"
- After that you can run `icloudpd-1.14.1-macos-amd64 icloudpd --help` or any other supported command/option
- After that you can run `icloudpd-1.14.2-macos-amd64 icloudpd --help` or any other supported command/option
2 changes: 1 addition & 1 deletion icloudpd/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -215,7 +215,7 @@
type=click.IntRange(1),
)
# a hacky way to get proper version because automatic detection does not work for some reason
@click.version_option(version="1.14.1")
@click.version_option(version="1.14.2")
# pylint: disable-msg=too-many-arguments,too-many-statements
# pylint: disable-msg=too-many-branches,too-many-locals
def main(
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.14.1",
version="1.14.2",
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 76c7276

Please sign in to comment.