├── .gitignore ├── CONTRIBUTING.md ├── README.md ├── aosd ├── __init__.py ├── commandparse │ ├── CmdBuild.py │ ├── CmdCache.py │ ├── CmdConfig.py │ ├── CmdDiff.py │ ├── CmdDownload.py │ ├── CmdHash.py │ ├── CmdList.py │ ├── CmdPackage.py │ ├── CmdQuit.py │ ├── CmdType.py │ ├── CmdUpdate.py │ ├── CmdVersion.py │ ├── InteractiveInput.py │ ├── RootCmd.py │ ├── __init__.py │ └── readline_unsorted │ │ ├── __init__.py │ │ ├── cmd.py │ │ ├── libedit-unsorted.3.dylib │ │ └── readline.so ├── data │ ├── aosd.plist │ ├── cache │ │ └── package_cache.plist │ ├── dev.plist │ ├── hashes.plist │ ├── ios.plist │ ├── mac.plist │ ├── releases.plist │ └── server.plist ├── downloader │ ├── Builds.py │ ├── Hashes.py │ ├── Packages.py │ ├── __init__.py │ ├── cacher.py │ ├── config.py │ ├── diff.py │ ├── manager.py │ ├── releases.py │ ├── update.py │ ├── utilities.py │ └── versions.py ├── helpers │ ├── __init__.py │ ├── argument_helper.py │ ├── logging_helper.py │ └── subprocess_helper.py ├── main.py └── version.py ├── run └── setup.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samdmarshall/AOS-Downloader/HEAD/.gitignore -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samdmarshall/AOS-Downloader/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samdmarshall/AOS-Downloader/HEAD/README.md -------------------------------------------------------------------------------- /aosd/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samdmarshall/AOS-Downloader/HEAD/aosd/__init__.py -------------------------------------------------------------------------------- /aosd/commandparse/CmdBuild.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samdmarshall/AOS-Downloader/HEAD/aosd/commandparse/CmdBuild.py -------------------------------------------------------------------------------- /aosd/commandparse/CmdCache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samdmarshall/AOS-Downloader/HEAD/aosd/commandparse/CmdCache.py -------------------------------------------------------------------------------- /aosd/commandparse/CmdConfig.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samdmarshall/AOS-Downloader/HEAD/aosd/commandparse/CmdConfig.py -------------------------------------------------------------------------------- /aosd/commandparse/CmdDiff.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samdmarshall/AOS-Downloader/HEAD/aosd/commandparse/CmdDiff.py -------------------------------------------------------------------------------- /aosd/commandparse/CmdDownload.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samdmarshall/AOS-Downloader/HEAD/aosd/commandparse/CmdDownload.py -------------------------------------------------------------------------------- /aosd/commandparse/CmdHash.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samdmarshall/AOS-Downloader/HEAD/aosd/commandparse/CmdHash.py -------------------------------------------------------------------------------- /aosd/commandparse/CmdList.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samdmarshall/AOS-Downloader/HEAD/aosd/commandparse/CmdList.py -------------------------------------------------------------------------------- /aosd/commandparse/CmdPackage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samdmarshall/AOS-Downloader/HEAD/aosd/commandparse/CmdPackage.py -------------------------------------------------------------------------------- /aosd/commandparse/CmdQuit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samdmarshall/AOS-Downloader/HEAD/aosd/commandparse/CmdQuit.py -------------------------------------------------------------------------------- /aosd/commandparse/CmdType.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samdmarshall/AOS-Downloader/HEAD/aosd/commandparse/CmdType.py -------------------------------------------------------------------------------- /aosd/commandparse/CmdUpdate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samdmarshall/AOS-Downloader/HEAD/aosd/commandparse/CmdUpdate.py -------------------------------------------------------------------------------- /aosd/commandparse/CmdVersion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samdmarshall/AOS-Downloader/HEAD/aosd/commandparse/CmdVersion.py -------------------------------------------------------------------------------- /aosd/commandparse/InteractiveInput.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samdmarshall/AOS-Downloader/HEAD/aosd/commandparse/InteractiveInput.py -------------------------------------------------------------------------------- /aosd/commandparse/RootCmd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samdmarshall/AOS-Downloader/HEAD/aosd/commandparse/RootCmd.py -------------------------------------------------------------------------------- /aosd/commandparse/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samdmarshall/AOS-Downloader/HEAD/aosd/commandparse/__init__.py -------------------------------------------------------------------------------- /aosd/commandparse/readline_unsorted/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aosd/commandparse/readline_unsorted/cmd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samdmarshall/AOS-Downloader/HEAD/aosd/commandparse/readline_unsorted/cmd.py -------------------------------------------------------------------------------- /aosd/commandparse/readline_unsorted/libedit-unsorted.3.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samdmarshall/AOS-Downloader/HEAD/aosd/commandparse/readline_unsorted/libedit-unsorted.3.dylib -------------------------------------------------------------------------------- /aosd/commandparse/readline_unsorted/readline.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samdmarshall/AOS-Downloader/HEAD/aosd/commandparse/readline_unsorted/readline.so -------------------------------------------------------------------------------- /aosd/data/aosd.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samdmarshall/AOS-Downloader/HEAD/aosd/data/aosd.plist -------------------------------------------------------------------------------- /aosd/data/cache/package_cache.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samdmarshall/AOS-Downloader/HEAD/aosd/data/cache/package_cache.plist -------------------------------------------------------------------------------- /aosd/data/dev.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samdmarshall/AOS-Downloader/HEAD/aosd/data/dev.plist -------------------------------------------------------------------------------- /aosd/data/hashes.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samdmarshall/AOS-Downloader/HEAD/aosd/data/hashes.plist -------------------------------------------------------------------------------- /aosd/data/ios.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samdmarshall/AOS-Downloader/HEAD/aosd/data/ios.plist -------------------------------------------------------------------------------- /aosd/data/mac.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samdmarshall/AOS-Downloader/HEAD/aosd/data/mac.plist -------------------------------------------------------------------------------- /aosd/data/releases.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samdmarshall/AOS-Downloader/HEAD/aosd/data/releases.plist -------------------------------------------------------------------------------- /aosd/data/server.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samdmarshall/AOS-Downloader/HEAD/aosd/data/server.plist -------------------------------------------------------------------------------- /aosd/downloader/Builds.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samdmarshall/AOS-Downloader/HEAD/aosd/downloader/Builds.py -------------------------------------------------------------------------------- /aosd/downloader/Hashes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samdmarshall/AOS-Downloader/HEAD/aosd/downloader/Hashes.py -------------------------------------------------------------------------------- /aosd/downloader/Packages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samdmarshall/AOS-Downloader/HEAD/aosd/downloader/Packages.py -------------------------------------------------------------------------------- /aosd/downloader/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samdmarshall/AOS-Downloader/HEAD/aosd/downloader/__init__.py -------------------------------------------------------------------------------- /aosd/downloader/cacher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samdmarshall/AOS-Downloader/HEAD/aosd/downloader/cacher.py -------------------------------------------------------------------------------- /aosd/downloader/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samdmarshall/AOS-Downloader/HEAD/aosd/downloader/config.py -------------------------------------------------------------------------------- /aosd/downloader/diff.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samdmarshall/AOS-Downloader/HEAD/aosd/downloader/diff.py -------------------------------------------------------------------------------- /aosd/downloader/manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samdmarshall/AOS-Downloader/HEAD/aosd/downloader/manager.py -------------------------------------------------------------------------------- /aosd/downloader/releases.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samdmarshall/AOS-Downloader/HEAD/aosd/downloader/releases.py -------------------------------------------------------------------------------- /aosd/downloader/update.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samdmarshall/AOS-Downloader/HEAD/aosd/downloader/update.py -------------------------------------------------------------------------------- /aosd/downloader/utilities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samdmarshall/AOS-Downloader/HEAD/aosd/downloader/utilities.py -------------------------------------------------------------------------------- /aosd/downloader/versions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samdmarshall/AOS-Downloader/HEAD/aosd/downloader/versions.py -------------------------------------------------------------------------------- /aosd/helpers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aosd/helpers/argument_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samdmarshall/AOS-Downloader/HEAD/aosd/helpers/argument_helper.py -------------------------------------------------------------------------------- /aosd/helpers/logging_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samdmarshall/AOS-Downloader/HEAD/aosd/helpers/logging_helper.py -------------------------------------------------------------------------------- /aosd/helpers/subprocess_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samdmarshall/AOS-Downloader/HEAD/aosd/helpers/subprocess_helper.py -------------------------------------------------------------------------------- /aosd/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samdmarshall/AOS-Downloader/HEAD/aosd/main.py -------------------------------------------------------------------------------- /aosd/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samdmarshall/AOS-Downloader/HEAD/aosd/version.py -------------------------------------------------------------------------------- /run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samdmarshall/AOS-Downloader/HEAD/run -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samdmarshall/AOS-Downloader/HEAD/setup.py --------------------------------------------------------------------------------