├── .github └── workflows │ └── ipa.yml ├── curver.txt └── workflow_helper ├── iTunesDownload ├── download_ipa.py ├── get_header_rpc.js ├── get_version.py └── precheck_version.py ├── iTunesInstall ├── Preferences_initial │ ├── ByHost_ │ │ ├── com.apple.iTunes.{3f9ec417-afdb-11eb-bac6-806e6f6e6963}.plist │ │ └── com.apple.iTunes_.plist │ ├── com.apple.iTunes.eq.plist │ ├── com.apple.iTunes.plist │ └── iTunes.exe.plist └── install_itunes.bat └── itunes_auto_login.py /.github/workflows/ipa.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaMisty/AutoIPADownload/HEAD/.github/workflows/ipa.yml -------------------------------------------------------------------------------- /curver.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /workflow_helper/iTunesDownload/download_ipa.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaMisty/AutoIPADownload/HEAD/workflow_helper/iTunesDownload/download_ipa.py -------------------------------------------------------------------------------- /workflow_helper/iTunesDownload/get_header_rpc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaMisty/AutoIPADownload/HEAD/workflow_helper/iTunesDownload/get_header_rpc.js -------------------------------------------------------------------------------- /workflow_helper/iTunesDownload/get_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaMisty/AutoIPADownload/HEAD/workflow_helper/iTunesDownload/get_version.py -------------------------------------------------------------------------------- /workflow_helper/iTunesDownload/precheck_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaMisty/AutoIPADownload/HEAD/workflow_helper/iTunesDownload/precheck_version.py -------------------------------------------------------------------------------- /workflow_helper/iTunesInstall/Preferences_initial/ByHost_/com.apple.iTunes.{3f9ec417-afdb-11eb-bac6-806e6f6e6963}.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaMisty/AutoIPADownload/HEAD/workflow_helper/iTunesInstall/Preferences_initial/ByHost_/com.apple.iTunes.{3f9ec417-afdb-11eb-bac6-806e6f6e6963}.plist -------------------------------------------------------------------------------- /workflow_helper/iTunesInstall/Preferences_initial/ByHost_/com.apple.iTunes_.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaMisty/AutoIPADownload/HEAD/workflow_helper/iTunesInstall/Preferences_initial/ByHost_/com.apple.iTunes_.plist -------------------------------------------------------------------------------- /workflow_helper/iTunesInstall/Preferences_initial/com.apple.iTunes.eq.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaMisty/AutoIPADownload/HEAD/workflow_helper/iTunesInstall/Preferences_initial/com.apple.iTunes.eq.plist -------------------------------------------------------------------------------- /workflow_helper/iTunesInstall/Preferences_initial/com.apple.iTunes.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaMisty/AutoIPADownload/HEAD/workflow_helper/iTunesInstall/Preferences_initial/com.apple.iTunes.plist -------------------------------------------------------------------------------- /workflow_helper/iTunesInstall/Preferences_initial/iTunes.exe.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaMisty/AutoIPADownload/HEAD/workflow_helper/iTunesInstall/Preferences_initial/iTunes.exe.plist -------------------------------------------------------------------------------- /workflow_helper/iTunesInstall/install_itunes.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaMisty/AutoIPADownload/HEAD/workflow_helper/iTunesInstall/install_itunes.bat -------------------------------------------------------------------------------- /workflow_helper/itunes_auto_login.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaMisty/AutoIPADownload/HEAD/workflow_helper/itunes_auto_login.py --------------------------------------------------------------------------------