File tree Expand file tree Collapse file tree 8 files changed +32
-28
lines changed
Expand file tree Collapse file tree 8 files changed +32
-28
lines changed Original file line number Diff line number Diff line change 22
33## Unreleased
44
5+ ## 1.17.3 (2024-01-03)
6+
7+ - improve compatibility for diffeent platforms [ #748 ] ( https://github.com/icloud-photos-downloader/icloud_photos_downloader/issues/748 )
8+
59## 1.17.2 (2023-12-22)
610
711- fix: module not found [ #748 ] ( https://github.com/icloud-photos-downloader/icloud_photos_downloader/issues/748 )
Original file line number Diff line number Diff line change @@ -121,21 +121,21 @@ scripts/build
121121Building platform executables:
122122
123123``` sh
124- scripts/build_bin_linux 1.17.2 amd64
124+ scripts/build_bin_linux 1.17.3 amd64
125125```
126126Note: that command is for Linux, including devcontainers. Windows & MacOS scripts must be executed on respective platforms.
127127
128128Building Python wheels (with single executables; platform-specific):
129129
130130``` sh
131- scripts/build_binary_dist_linux 1.17.2
131+ scripts/build_binary_dist_linux 1.17.3
132132```
133133Note: that the step expects executables to be already prepared by previous step
134134
135135Building NPM packages (with single executables; platform-specific):
136136
137137``` sh
138- scripts/build_npm 1.17.2
138+ scripts/build_npm 1.17.3
139139```
140140Note: that the step expects executables to be already prepared by previous steps
141141
Original file line number Diff line number Diff line change @@ -34,17 +34,17 @@ Legacy command (compatible with prior versions):
3434
3535` docker run -it --rm icloudpd:icloudpd icloud --help `
3636
37- ` icloudpd-1.17.2 -windows-amd64 --help `
37+ ` icloudpd-1.17.3 -windows-amd64 --help `
3838
3939Help:
4040
4141` docker run -it --rm icloudpd:icloudpd `
4242
43- ` icloudpd-ex-1.17.2 -windows-amd64 --help `
43+ ` icloudpd-ex-1.17.3 -windows-amd64 --help `
4444
4545Example:
4646
4747` docker run -it --rm icloudpd:icloudpd copy [email protected] /path/to/{album}/{date_created:%Y/%Y-%m} ` 4848
49- ` icloudpd-ex-1.17.2 -windows-amd64 copy [email protected] /path/to/{album}/{date_created:%Y/%Y-%m} ` 49+ ` icloudpd-ex-1.17.3 -windows-amd64 copy [email protected] /path/to/{album}/{date_created:%Y/%Y-%m} ` 5050
Original file line number Diff line number Diff line change @@ -64,10 +64,10 @@ Access to iCloud.com is blocked from mainland China. `icloudpd` can be used with
6464
6565Here are the steps to make it working:
6666- download binary from Github [ Releases] ( https://github.com/icloud-photos-downloader/icloud_photos_downloader/releases ) into desired local folder
67- - add executable flag by running ` chmod +x icloudpd-1.17.2 -macos-amd64 `
68- - start it from the terminal: ` icloudpd-1.17.2 -macos-amd64 `
67+ - add executable flag by running ` chmod +x icloudpd-1.17.3 -macos-amd64 `
68+ - start it from the terminal: ` icloudpd-1.17.3 -macos-amd64 `
6969- Apple will tell you that it cannot check for malicous software and refuse to run the app; click "Ok"
70- - Open "System Settings"/"Privacy & Security" and find ` icloudpd-1.17.2 -macos-amd64 ` as blocked app; Click "Allow"
71- - Start ` icloudpd-1.17.2 -macos-amd64 ` from the terminal again
70+ - Open "System Settings"/"Privacy & Security" and find ` icloudpd-1.17.3 -macos-amd64 ` as blocked app; Click "Allow"
71+ - Start ` icloudpd-1.17.3 -macos-amd64 ` from the terminal again
7272- Apple will show another warning; click "Open"
73- - After that you can run ` icloudpd-1.17.2 -macos-amd64 --help ` or any other supported command/option
73+ - After that you can run ` icloudpd-1.17.3 -macos-amd64 --help ` or any other supported command/option
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ requires = [
66build-backend = " setuptools.build_meta"
77
88[project ]
9- version =" 1.17.2 "
9+ version =" 1.17.3 "
1010name = " icloudpd"
1111description = " icloudpd is a command-line tool to download photos and videos from iCloud."
1212readme = " README_PYPI.md"
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ requires = [
66build-backend = " setuptools.build_meta"
77
88[project ]
9- version =" 1.17.2 "
9+ version =" 1.17.3 "
1010name = " icloudpd"
1111description = " icloudpd is a command-line tool to download photos and videos from iCloud."
1212readme = " README_PYPI.md"
Original file line number Diff line number Diff line change 1- #! /bin/bash
2- set -euo pipefail
3-
4- # dev script
5- # expecting dist/binary_dist to be set
6- # required param registry_url
7- #
8- # prereq
9- # disable auth on pypi server
10- #
11- # cleint use: pip install --index http://192.168.1.20:4880 --trusted-host 192.168.1.20 icloudpd
12-
13- # linux
14- twine upload --repository-url $1 --non-interactive -u bogus -p bogus dist/icloudpd-1.17.2 -py2.py3-none-manylinux* .whl dist/icloudpd-1.17.2 -py2.py3-none-macos* .whl dist/icloudpd-1.17.2 -py2.py3-none-win* .whl dist/icloudpd-1.17.2 -py3-none-any.whl
1+ #! /bin/bash
2+ set -euo pipefail
3+
4+ # dev script
5+ # expecting dist/binary_dist to be set
6+ # required param registry_url
7+ #
8+ # prereq
9+ # disable auth on pypi server
10+ #
11+ # cleint use: pip install --index http://192.168.1.20:4880 --trusted-host 192.168.1.20 icloudpd
12+
13+ # linux
14+ twine upload --repository-url $1 --non-interactive -u bogus -p bogus dist/icloudpd-1.17.3 -py2.py3-none-manylinux* .whl dist/icloudpd-1.17.3 -py2.py3-none-macos* .whl dist/icloudpd-1.17.3 -py2.py3-none-win* .whl dist/icloudpd-1.17.3 -py3-none-any.whl
Original file line number Diff line number Diff line change 244244 )
245245# a hacky way to get proper version because automatic detection does not
246246# work for some reason
247- @click .version_option (version = "1.17.2 " )
247+ @click .version_option (version = "1.17.3 " )
248248# pylint: disable-msg=too-many-arguments,too-many-statements
249249# pylint: disable-msg=too-many-branches,too-many-locals
250250def main (
You can’t perform that action at this time.
0 commit comments