├── .clang-format ├── .github └── workflows │ └── Build.yml ├── .gitignore ├── .vscode ├── AirDrop.shortcut ├── extensions.json ├── logos-format.py ├── settings.json └── tasks.json ├── BTLoader.plist ├── Headers ├── DeviceModels.h ├── Fonts.h ├── LoaderConfig.h ├── Logger.h ├── RCTCxxBridge.h ├── Settings.h ├── Themes.h └── Utils.h ├── LICENSE ├── Makefile ├── README.md ├── Sources ├── Fonts.x ├── LoaderConfig.m ├── Logger.m ├── Settings.m ├── Sideloading.x ├── Themes.m ├── Tweak.x ├── Utils.m └── payload-base.template.js ├── TheLegacyOfBT.md ├── assets └── logo │ └── icon.png └── control /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudySn0w/BTLoader/HEAD/.clang-format -------------------------------------------------------------------------------- /.github/workflows/Build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudySn0w/BTLoader/HEAD/.github/workflows/Build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudySn0w/BTLoader/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/AirDrop.shortcut: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudySn0w/BTLoader/HEAD/.vscode/AirDrop.shortcut -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudySn0w/BTLoader/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/logos-format.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudySn0w/BTLoader/HEAD/.vscode/logos-format.py -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudySn0w/BTLoader/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudySn0w/BTLoader/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /BTLoader.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudySn0w/BTLoader/HEAD/BTLoader.plist -------------------------------------------------------------------------------- /Headers/DeviceModels.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudySn0w/BTLoader/HEAD/Headers/DeviceModels.h -------------------------------------------------------------------------------- /Headers/Fonts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudySn0w/BTLoader/HEAD/Headers/Fonts.h -------------------------------------------------------------------------------- /Headers/LoaderConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudySn0w/BTLoader/HEAD/Headers/LoaderConfig.h -------------------------------------------------------------------------------- /Headers/Logger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudySn0w/BTLoader/HEAD/Headers/Logger.h -------------------------------------------------------------------------------- /Headers/RCTCxxBridge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudySn0w/BTLoader/HEAD/Headers/RCTCxxBridge.h -------------------------------------------------------------------------------- /Headers/Settings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudySn0w/BTLoader/HEAD/Headers/Settings.h -------------------------------------------------------------------------------- /Headers/Themes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudySn0w/BTLoader/HEAD/Headers/Themes.h -------------------------------------------------------------------------------- /Headers/Utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudySn0w/BTLoader/HEAD/Headers/Utils.h -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudySn0w/BTLoader/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudySn0w/BTLoader/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudySn0w/BTLoader/HEAD/README.md -------------------------------------------------------------------------------- /Sources/Fonts.x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudySn0w/BTLoader/HEAD/Sources/Fonts.x -------------------------------------------------------------------------------- /Sources/LoaderConfig.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudySn0w/BTLoader/HEAD/Sources/LoaderConfig.m -------------------------------------------------------------------------------- /Sources/Logger.m: -------------------------------------------------------------------------------- 1 | #import "Logger.h" 2 | -------------------------------------------------------------------------------- /Sources/Settings.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudySn0w/BTLoader/HEAD/Sources/Settings.m -------------------------------------------------------------------------------- /Sources/Sideloading.x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudySn0w/BTLoader/HEAD/Sources/Sideloading.x -------------------------------------------------------------------------------- /Sources/Themes.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudySn0w/BTLoader/HEAD/Sources/Themes.m -------------------------------------------------------------------------------- /Sources/Tweak.x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudySn0w/BTLoader/HEAD/Sources/Tweak.x -------------------------------------------------------------------------------- /Sources/Utils.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudySn0w/BTLoader/HEAD/Sources/Utils.m -------------------------------------------------------------------------------- /Sources/payload-base.template.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudySn0w/BTLoader/HEAD/Sources/payload-base.template.js -------------------------------------------------------------------------------- /TheLegacyOfBT.md: -------------------------------------------------------------------------------- 1 | Preparation. 2 | -------------------------------------------------------------------------------- /assets/logo/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudySn0w/BTLoader/HEAD/assets/logo/icon.png -------------------------------------------------------------------------------- /control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudySn0w/BTLoader/HEAD/control --------------------------------------------------------------------------------