├── .github └── workflows │ └── main.yml ├── .gitignore ├── Changelog.md ├── FeatureUnlock.xcodeproj └── project.pbxproj ├── FeatureUnlock ├── Info.plist ├── kern_dyld_patch.hpp ├── kern_model_info.hpp ├── kern_start.cpp └── kern_usr_patch.hpp ├── LICENSE.txt └── README.md /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidanthera/FeatureUnlock/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidanthera/FeatureUnlock/HEAD/.gitignore -------------------------------------------------------------------------------- /Changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidanthera/FeatureUnlock/HEAD/Changelog.md -------------------------------------------------------------------------------- /FeatureUnlock.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidanthera/FeatureUnlock/HEAD/FeatureUnlock.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /FeatureUnlock/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidanthera/FeatureUnlock/HEAD/FeatureUnlock/Info.plist -------------------------------------------------------------------------------- /FeatureUnlock/kern_dyld_patch.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidanthera/FeatureUnlock/HEAD/FeatureUnlock/kern_dyld_patch.hpp -------------------------------------------------------------------------------- /FeatureUnlock/kern_model_info.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidanthera/FeatureUnlock/HEAD/FeatureUnlock/kern_model_info.hpp -------------------------------------------------------------------------------- /FeatureUnlock/kern_start.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidanthera/FeatureUnlock/HEAD/FeatureUnlock/kern_start.cpp -------------------------------------------------------------------------------- /FeatureUnlock/kern_usr_patch.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidanthera/FeatureUnlock/HEAD/FeatureUnlock/kern_usr_patch.hpp -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidanthera/FeatureUnlock/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidanthera/FeatureUnlock/HEAD/README.md --------------------------------------------------------------------------------