diff --git a/CHANGELOG.md b/CHANGELOG.md index 5272126c1..2212eb5e9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,9 @@ ## Unreleased +## 1.14.0 (2023-07-01) + +- fix: auto-delete date mismatch [#345](https://github.com/icloud-photos-downloader/icloud_photos_downloader/issues/345) - fix: `--version` parameter ## 1.13.4 (2023-06-14) diff --git a/EXPERIMENTAL.md b/EXPERIMENTAL.md index e7c141b49..0090dca97 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.12.0-windows-amd64 --help` +`icloudpd-1.14.0-windows-amd64 --help` Help: `docker run -it --rm icloudpd:icloudpd` -`icloudpd-ex-1.12.0-windows-amd64 --help` +`icloudpd-ex-1.14.0-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.12.0-windows-amd64 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}` diff --git a/FAQ.md b/FAQ.md index a89c89db8..eef29c765 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.13.4-macos-amd64` -- start it from the terminal: `icloudpd-1.13.4-macos-amd64` +- add executable flag by running `chmod +x icloudpd-1.14.0-macos-amd64` +- start it from the terminal: `icloudpd-1.14.0-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.13.4-macos-amd64` as blocked app; Click "Allow" -- Start `icloudpd-1.13.4-macos-amd64` from the terminal again +- 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 - Apple will show another warning; click "Open" -- After that you can run `icloudpd-1.13.4-macos-amd64 icloudpd --help` or any other supported command/option +- After that you can run `icloudpd-1.14.0-macos-amd64 icloudpd --help` or any other supported command/option diff --git a/icloudpd/base.py b/icloudpd/base.py index 7e8fbb521..af22074e4 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.13.4") +@click.version_option(version="1.14.0") # 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 995a251d1..2b136134a 100644 --- a/setup.py +++ b/setup.py @@ -10,7 +10,7 @@ setup( name="icloudpd", - version="1.13.4", + version="1.14.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."