diff --git a/CHANGELOG.md b/CHANGELOG.md index bfedb14cc..37322e6b1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,8 @@ ## Unreleased +## 1.18.0 (2024-05-27) + - feature: add parameter `--live-photo-mov-filename-policy` to control naming of video portion of live photos with default `suffix` for compatibility [#500](https://github.com/icloud-photos-downloader/icloud_photos_downloader/issues/500) - feature: add parameter `--keep-unicode-in-filenames` with default `false` for compatibility [#845](https://github.com/icloud-photos-downloader/icloud_photos_downloader/issues/845) - fix: avoid parsing json from empty responses [#837](https://github.com/icloud-photos-downloader/icloud_photos_downloader/issues/837) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 879e2e411..5d57a1059 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -121,21 +121,21 @@ scripts/build Building platform executables: ``` sh -scripts/build_bin_linux 1.17.7 amd64 +scripts/build_bin_linux 1.18.0 amd64 ``` Note: that command is for Linux, including devcontainers. Windows & MacOS scripts must be executed on respective platforms. Building Python wheels (with single executables; platform-specific): ``` sh -scripts/build_binary_dist_linux 1.17.7 +scripts/build_binary_dist_linux 1.18.0 ``` Note: that the step expects executables to be already prepared by previous step Building NPM packages (with single executables; platform-specific): ``` sh -scripts/build_npm 1.17.7 +scripts/build_npm 1.18.0 ``` Note: that the step expects executables to be already prepared by previous steps diff --git a/EXPERIMENTAL.md b/EXPERIMENTAL.md index 5b0db63bb..9fcc9d38d 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.17.7-windows-amd64 --help` +`icloudpd-1.18.0-windows-amd64 --help` Help: `docker run -it --rm icloudpd:icloudpd` -`icloudpd-ex-1.17.7-windows-amd64 --help` +`icloudpd-ex-1.18.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.17.7-windows-amd64 copy my@email.address /path/to/{album}/{date_created:%Y/%Y-%m}` +`icloudpd-ex-1.18.0-windows-amd64 copy my@email.address /path/to/{album}/{date_created:%Y/%Y-%m}` diff --git a/FAQ.md b/FAQ.md index 5856d7c49..9c357dd16 100644 --- a/FAQ.md +++ b/FAQ.md @@ -64,10 +64,10 @@ Access to iCloud.com is blocked from mainland China. `icloudpd` can be used with 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.17.7-macos-amd64` -- start it from the terminal: `icloudpd-1.17.7-macos-amd64` +- add executable flag by running `chmod +x icloudpd-1.18.0-macos-amd64` +- start it from the terminal: `icloudpd-1.18.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.17.7-macos-amd64` as blocked app; Click "Allow" -- Start `icloudpd-1.17.7-macos-amd64` from the terminal again +- Open "System Settings"/"Privacy & Security" and find `icloudpd-1.18.0-macos-amd64` as blocked app; Click "Allow" +- Start `icloudpd-1.18.0-macos-amd64` from the terminal again - Apple will show another warning; click "Open" -- After that you can run `icloudpd-1.17.7-macos-amd64 --help` or any other supported command/option +- After that you can run `icloudpd-1.18.0-macos-amd64 --help` or any other supported command/option diff --git a/binary_dist/pyproject.toml b/binary_dist/pyproject.toml index 43a37471f..0ec05c43e 100644 --- a/binary_dist/pyproject.toml +++ b/binary_dist/pyproject.toml @@ -6,7 +6,7 @@ requires = [ build-backend = "setuptools.build_meta" [project] -version="1.17.7" +version="1.18.0" name = "icloudpd" description = "icloudpd is a command-line tool to download photos and videos from iCloud." readme = "README_PYPI.md" diff --git a/pyproject.toml b/pyproject.toml index 36fd2c5bc..1fa8fc282 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -6,7 +6,7 @@ requires = [ build-backend = "setuptools.build_meta" [project] -version="1.17.7" +version="1.18.0" name = "icloudpd" description = "icloudpd is a command-line tool to download photos and videos from iCloud." readme = "README_PYPI.md" diff --git a/scripts/publish_pypi b/scripts/publish_pypi index 456b799da..87da70370 100755 --- a/scripts/publish_pypi +++ b/scripts/publish_pypi @@ -11,4 +11,4 @@ set -euo pipefail # cleint use: pip install --index http://192.168.1.20:4880 --trusted-host 192.168.1.20 icloudpd # linux -twine upload --repository-url $1 --non-interactive -u bogus -p bogus dist/icloudpd-1.17.7-py2.py3-none-manylinux*.whl dist/icloudpd-1.17.7-py2.py3-none-macos*.whl dist/icloudpd-1.17.7-py2.py3-none-win*.whl dist/icloudpd-1.17.7-py3-none-any.whl +twine upload --repository-url $1 --non-interactive -u bogus -p bogus dist/icloudpd-1.18.0-py2.py3-none-manylinux*.whl dist/icloudpd-1.18.0-py2.py3-none-macos*.whl dist/icloudpd-1.18.0-py2.py3-none-win*.whl dist/icloudpd-1.18.0-py3-none-any.whl diff --git a/src/icloudpd/base.py b/src/icloudpd/base.py index 1d3164f68..f75e07bf1 100644 --- a/src/icloudpd/base.py +++ b/src/icloudpd/base.py @@ -283,7 +283,7 @@ def build_lp_filename_generator(_ctx: click.Context, _param: click.Parameter, lp ) # a hacky way to get proper version because automatic detection does not # work for some reason -@click.version_option(version="1.17.7") +@click.version_option(version="1.18.0") # pylint: disable-msg=too-many-arguments,too-many-statements # pylint: disable-msg=too-many-branches,too-many-locals def main(