diff --git a/CHANGELOG.md b/CHANGELOG.md index 48fb1a0d4..88a36d427 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,8 @@ ## Unreleased +## 1.14.1 (2023-07-02) + - fix: retry authN on session error during deletion [#647](https://github.com/icloud-photos-downloader/icloud_photos_downloader/issues/647) ## 1.14.0 (2023-07-01) diff --git a/EXPERIMENTAL.md b/EXPERIMENTAL.md index 0090dca97..37cdec2f4 100644 --- a/EXPERIMENTAL.md +++ b/EXPERIMENTAL.md @@ -34,17 +34,17 @@ Legacy command (compatible with prior versions): `docker run -it --rm icloudpd:icloudpd icloud --help` -`icloudpd-1.14.0-windows-amd64 --help` +`icloudpd-1.14.1-windows-amd64 --help` Help: `docker run -it --rm icloudpd:icloudpd` -`icloudpd-ex-1.14.0-windows-amd64 --help` +`icloudpd-ex-1.14.1-windows-amd64 --help` Example: `docker run -it --rm icloudpd:icloudpd copy my@email.address /path/to/{album}/{date_created:%Y/%Y-%m}` -`icloudpd-ex-1.14.0-windows-amd64 copy my@email.address /path/to/{album}/{date_created:%Y/%Y-%m}` +`icloudpd-ex-1.14.1-windows-amd64 copy my@email.address /path/to/{album}/{date_created:%Y/%Y-%m}` diff --git a/FAQ.md b/FAQ.md index eef29c765..597b56e84 100644 --- a/FAQ.md +++ b/FAQ.md @@ -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.0-macos-amd64` -- start it from the terminal: `icloudpd-1.14.0-macos-amd64` +- add executable flag by running `chmod +x icloudpd-1.14.1-macos-amd64` +- start it from the terminal: `icloudpd-1.14.1-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.0-macos-amd64` as blocked app; Click "Allow" -- Start `icloudpd-1.14.0-macos-amd64` from the terminal again +- 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 - Apple will show another warning; click "Open" -- After that you can run `icloudpd-1.14.0-macos-amd64 icloudpd --help` or any other supported command/option +- After that you can run `icloudpd-1.14.1-macos-amd64 icloudpd --help` or any other supported command/option diff --git a/icloudpd/base.py b/icloudpd/base.py index 32e4ca91b..47c806274 100755 --- a/icloudpd/base.py +++ b/icloudpd/base.py @@ -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.0") +@click.version_option(version="1.14.1") # pylint: disable-msg=too-many-arguments,too-many-statements # pylint: disable-msg=too-many-branches,too-many-locals def main( diff --git a/setup.py b/setup.py index 2b136134a..b15bd5dfe 100644 --- a/setup.py +++ b/setup.py @@ -10,7 +10,7 @@ setup( name="icloudpd", - version="1.14.0", + version="1.14.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."