├── .gitignore ├── .gitmodules ├── LICENSE ├── README.md ├── bin ├── class-dump ├── class-dump-z ├── iosod ├── ldid2 └── lipo ├── install.sh ├── notes └── arm64e-legacy.txt ├── specifications ├── iPhoneOS │ └── Specifications │ │ ├── iPhoneOSPackageTypes.xcspec │ │ └── iPhoneOSProductTypes.xcspec └── iPhoneSimulator │ └── Specifications │ ├── iPhone Simulator PackageTypes.xcspec │ └── iPhone Simulator ProductTypes.xcspec └── templates ├── Activator Listener.xctemplate ├── Icon-small.png ├── Icon-small@2x.png ├── TemplateIcon.icns └── TemplateInfo.plist ├── Base.xctemplate ├── TemplateIcon.icns └── TemplateInfo.plist ├── Cocoa Touch Library.xctemplate ├── TemplateIcon.icns ├── TemplateInfo.plist ├── ___PACKAGENAMEASIDENTIFIER___.h └── ___PACKAGENAMEASIDENTIFIER___.m ├── Command-line Tool.xctemplate ├── TemplateIcon.icns ├── TemplateInfo.plist └── ___PACKAGENAMEASIDENTIFIER___.xcdatamodeld │ ├── .xccurrentversion │ └── ___PACKAGENAMEASIDENTIFIER___.xcdatamodel │ ├── .xccurrentversion │ └── contents ├── Debian Package.xctemplate ├── TemplateIcon.icns └── TemplateInfo.plist ├── Empty Project.xctemplate ├── TemplateIcon.icns └── TemplateInfo.plist ├── Logos Tweak.xctemplate ├── TemplateIcon.icns ├── TemplateInfo.plist ├── ___PACKAGENAMEASIDENTIFIER___.mm └── ___PACKAGENAMEASIDENTIFIER___.xm ├── ManPage.xctemplate ├── TemplateIcon.icns ├── TemplateInfo.plist └── ___PACKAGENAMEASIDENTIFIER___.1 ├── PreferenceLoader Bundle.xctemplate ├── TemplateIcon.icns ├── TemplateInfo.plist ├── ___PACKAGENAMEASIDENTIFIER___-Info.plist ├── ___PACKAGENAMEASIDENTIFIER___-PreferenceBundles.plist ├── ___PACKAGENAMEASIDENTIFIER___-PreferenceLoader.plist ├── ___PACKAGENAMEASIDENTIFIER___-Preferences.plist ├── ___PACKAGENAMEASIDENTIFIER___Controller.h ├── ___PACKAGENAMEASIDENTIFIER___Controller.m ├── ___PACKAGENAMEASIDENTIFIER___Icon.png └── ___PACKAGENAMEASIDENTIFIER___Icon@2x.png ├── PreferenceLoader.xctemplate ├── TemplateIcon.icns ├── TemplateInfo.plist ├── ___PACKAGENAMEASIDENTIFIER___.plist ├── ___PACKAGENAMEASIDENTIFIER___Icon.png └── ___PACKAGENAMEASIDENTIFIER___Icon@2x.png ├── Unit Tests.xctemplate ├── TemplateIcon.icns └── TemplateInfo.plist └── XPC Service.xctemplate ├── TemplateIcon.icns ├── TemplateInfo.plist ├── main.m ├── postinst └── prerm /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/iOSOpenDev/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/iOSOpenDev/HEAD/.gitmodules -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/iOSOpenDev/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/iOSOpenDev/HEAD/README.md -------------------------------------------------------------------------------- /bin/class-dump: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/iOSOpenDev/HEAD/bin/class-dump -------------------------------------------------------------------------------- /bin/class-dump-z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/iOSOpenDev/HEAD/bin/class-dump-z -------------------------------------------------------------------------------- /bin/iosod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/iOSOpenDev/HEAD/bin/iosod -------------------------------------------------------------------------------- /bin/ldid2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/iOSOpenDev/HEAD/bin/ldid2 -------------------------------------------------------------------------------- /bin/lipo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/iOSOpenDev/HEAD/bin/lipo -------------------------------------------------------------------------------- /install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/iOSOpenDev/HEAD/install.sh -------------------------------------------------------------------------------- /notes/arm64e-legacy.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/iOSOpenDev/HEAD/notes/arm64e-legacy.txt -------------------------------------------------------------------------------- /specifications/iPhoneOS/Specifications/iPhoneOSPackageTypes.xcspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/iOSOpenDev/HEAD/specifications/iPhoneOS/Specifications/iPhoneOSPackageTypes.xcspec -------------------------------------------------------------------------------- /specifications/iPhoneOS/Specifications/iPhoneOSProductTypes.xcspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/iOSOpenDev/HEAD/specifications/iPhoneOS/Specifications/iPhoneOSProductTypes.xcspec -------------------------------------------------------------------------------- /specifications/iPhoneSimulator/Specifications/iPhone Simulator PackageTypes.xcspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/iOSOpenDev/HEAD/specifications/iPhoneSimulator/Specifications/iPhone Simulator PackageTypes.xcspec -------------------------------------------------------------------------------- /specifications/iPhoneSimulator/Specifications/iPhone Simulator ProductTypes.xcspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/iOSOpenDev/HEAD/specifications/iPhoneSimulator/Specifications/iPhone Simulator ProductTypes.xcspec -------------------------------------------------------------------------------- /templates/Activator Listener.xctemplate/Icon-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/iOSOpenDev/HEAD/templates/Activator Listener.xctemplate/Icon-small.png -------------------------------------------------------------------------------- /templates/Activator Listener.xctemplate/Icon-small@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/iOSOpenDev/HEAD/templates/Activator Listener.xctemplate/Icon-small@2x.png -------------------------------------------------------------------------------- /templates/Activator Listener.xctemplate/TemplateIcon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/iOSOpenDev/HEAD/templates/Activator Listener.xctemplate/TemplateIcon.icns -------------------------------------------------------------------------------- /templates/Activator Listener.xctemplate/TemplateInfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/iOSOpenDev/HEAD/templates/Activator Listener.xctemplate/TemplateInfo.plist -------------------------------------------------------------------------------- /templates/Base.xctemplate/TemplateIcon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/iOSOpenDev/HEAD/templates/Base.xctemplate/TemplateIcon.icns -------------------------------------------------------------------------------- /templates/Base.xctemplate/TemplateInfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/iOSOpenDev/HEAD/templates/Base.xctemplate/TemplateInfo.plist -------------------------------------------------------------------------------- /templates/Cocoa Touch Library.xctemplate/TemplateIcon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/iOSOpenDev/HEAD/templates/Cocoa Touch Library.xctemplate/TemplateIcon.icns -------------------------------------------------------------------------------- /templates/Cocoa Touch Library.xctemplate/TemplateInfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/iOSOpenDev/HEAD/templates/Cocoa Touch Library.xctemplate/TemplateInfo.plist -------------------------------------------------------------------------------- /templates/Cocoa Touch Library.xctemplate/___PACKAGENAMEASIDENTIFIER___.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/iOSOpenDev/HEAD/templates/Cocoa Touch Library.xctemplate/___PACKAGENAMEASIDENTIFIER___.h -------------------------------------------------------------------------------- /templates/Cocoa Touch Library.xctemplate/___PACKAGENAMEASIDENTIFIER___.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/iOSOpenDev/HEAD/templates/Cocoa Touch Library.xctemplate/___PACKAGENAMEASIDENTIFIER___.m -------------------------------------------------------------------------------- /templates/Command-line Tool.xctemplate/TemplateIcon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/iOSOpenDev/HEAD/templates/Command-line Tool.xctemplate/TemplateIcon.icns -------------------------------------------------------------------------------- /templates/Command-line Tool.xctemplate/TemplateInfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/iOSOpenDev/HEAD/templates/Command-line Tool.xctemplate/TemplateInfo.plist -------------------------------------------------------------------------------- /templates/Command-line Tool.xctemplate/___PACKAGENAMEASIDENTIFIER___.xcdatamodeld/.xccurrentversion: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/iOSOpenDev/HEAD/templates/Command-line Tool.xctemplate/___PACKAGENAMEASIDENTIFIER___.xcdatamodeld/.xccurrentversion -------------------------------------------------------------------------------- /templates/Command-line Tool.xctemplate/___PACKAGENAMEASIDENTIFIER___.xcdatamodeld/___PACKAGENAMEASIDENTIFIER___.xcdatamodel/.xccurrentversion: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/iOSOpenDev/HEAD/templates/Command-line Tool.xctemplate/___PACKAGENAMEASIDENTIFIER___.xcdatamodeld/___PACKAGENAMEASIDENTIFIER___.xcdatamodel/.xccurrentversion -------------------------------------------------------------------------------- /templates/Command-line Tool.xctemplate/___PACKAGENAMEASIDENTIFIER___.xcdatamodeld/___PACKAGENAMEASIDENTIFIER___.xcdatamodel/contents: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/iOSOpenDev/HEAD/templates/Command-line Tool.xctemplate/___PACKAGENAMEASIDENTIFIER___.xcdatamodeld/___PACKAGENAMEASIDENTIFIER___.xcdatamodel/contents -------------------------------------------------------------------------------- /templates/Debian Package.xctemplate/TemplateIcon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/iOSOpenDev/HEAD/templates/Debian Package.xctemplate/TemplateIcon.icns -------------------------------------------------------------------------------- /templates/Debian Package.xctemplate/TemplateInfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/iOSOpenDev/HEAD/templates/Debian Package.xctemplate/TemplateInfo.plist -------------------------------------------------------------------------------- /templates/Empty Project.xctemplate/TemplateIcon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/iOSOpenDev/HEAD/templates/Empty Project.xctemplate/TemplateIcon.icns -------------------------------------------------------------------------------- /templates/Empty Project.xctemplate/TemplateInfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/iOSOpenDev/HEAD/templates/Empty Project.xctemplate/TemplateInfo.plist -------------------------------------------------------------------------------- /templates/Logos Tweak.xctemplate/TemplateIcon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/iOSOpenDev/HEAD/templates/Logos Tweak.xctemplate/TemplateIcon.icns -------------------------------------------------------------------------------- /templates/Logos Tweak.xctemplate/TemplateInfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/iOSOpenDev/HEAD/templates/Logos Tweak.xctemplate/TemplateInfo.plist -------------------------------------------------------------------------------- /templates/Logos Tweak.xctemplate/___PACKAGENAMEASIDENTIFIER___.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/iOSOpenDev/HEAD/templates/Logos Tweak.xctemplate/___PACKAGENAMEASIDENTIFIER___.mm -------------------------------------------------------------------------------- /templates/Logos Tweak.xctemplate/___PACKAGENAMEASIDENTIFIER___.xm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/iOSOpenDev/HEAD/templates/Logos Tweak.xctemplate/___PACKAGENAMEASIDENTIFIER___.xm -------------------------------------------------------------------------------- /templates/ManPage.xctemplate/TemplateIcon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/iOSOpenDev/HEAD/templates/ManPage.xctemplate/TemplateIcon.icns -------------------------------------------------------------------------------- /templates/ManPage.xctemplate/TemplateInfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/iOSOpenDev/HEAD/templates/ManPage.xctemplate/TemplateInfo.plist -------------------------------------------------------------------------------- /templates/ManPage.xctemplate/___PACKAGENAMEASIDENTIFIER___.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/iOSOpenDev/HEAD/templates/ManPage.xctemplate/___PACKAGENAMEASIDENTIFIER___.1 -------------------------------------------------------------------------------- /templates/PreferenceLoader Bundle.xctemplate/TemplateIcon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/iOSOpenDev/HEAD/templates/PreferenceLoader Bundle.xctemplate/TemplateIcon.icns -------------------------------------------------------------------------------- /templates/PreferenceLoader Bundle.xctemplate/TemplateInfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/iOSOpenDev/HEAD/templates/PreferenceLoader Bundle.xctemplate/TemplateInfo.plist -------------------------------------------------------------------------------- /templates/PreferenceLoader Bundle.xctemplate/___PACKAGENAMEASIDENTIFIER___-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/iOSOpenDev/HEAD/templates/PreferenceLoader Bundle.xctemplate/___PACKAGENAMEASIDENTIFIER___-Info.plist -------------------------------------------------------------------------------- /templates/PreferenceLoader Bundle.xctemplate/___PACKAGENAMEASIDENTIFIER___-PreferenceBundles.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/iOSOpenDev/HEAD/templates/PreferenceLoader Bundle.xctemplate/___PACKAGENAMEASIDENTIFIER___-PreferenceBundles.plist -------------------------------------------------------------------------------- /templates/PreferenceLoader Bundle.xctemplate/___PACKAGENAMEASIDENTIFIER___-PreferenceLoader.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/iOSOpenDev/HEAD/templates/PreferenceLoader Bundle.xctemplate/___PACKAGENAMEASIDENTIFIER___-PreferenceLoader.plist -------------------------------------------------------------------------------- /templates/PreferenceLoader Bundle.xctemplate/___PACKAGENAMEASIDENTIFIER___-Preferences.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/iOSOpenDev/HEAD/templates/PreferenceLoader Bundle.xctemplate/___PACKAGENAMEASIDENTIFIER___-Preferences.plist -------------------------------------------------------------------------------- /templates/PreferenceLoader Bundle.xctemplate/___PACKAGENAMEASIDENTIFIER___Controller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/iOSOpenDev/HEAD/templates/PreferenceLoader Bundle.xctemplate/___PACKAGENAMEASIDENTIFIER___Controller.h -------------------------------------------------------------------------------- /templates/PreferenceLoader Bundle.xctemplate/___PACKAGENAMEASIDENTIFIER___Controller.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/iOSOpenDev/HEAD/templates/PreferenceLoader Bundle.xctemplate/___PACKAGENAMEASIDENTIFIER___Controller.m -------------------------------------------------------------------------------- /templates/PreferenceLoader Bundle.xctemplate/___PACKAGENAMEASIDENTIFIER___Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/iOSOpenDev/HEAD/templates/PreferenceLoader Bundle.xctemplate/___PACKAGENAMEASIDENTIFIER___Icon.png -------------------------------------------------------------------------------- /templates/PreferenceLoader Bundle.xctemplate/___PACKAGENAMEASIDENTIFIER___Icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/iOSOpenDev/HEAD/templates/PreferenceLoader Bundle.xctemplate/___PACKAGENAMEASIDENTIFIER___Icon@2x.png -------------------------------------------------------------------------------- /templates/PreferenceLoader.xctemplate/TemplateIcon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/iOSOpenDev/HEAD/templates/PreferenceLoader.xctemplate/TemplateIcon.icns -------------------------------------------------------------------------------- /templates/PreferenceLoader.xctemplate/TemplateInfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/iOSOpenDev/HEAD/templates/PreferenceLoader.xctemplate/TemplateInfo.plist -------------------------------------------------------------------------------- /templates/PreferenceLoader.xctemplate/___PACKAGENAMEASIDENTIFIER___.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/iOSOpenDev/HEAD/templates/PreferenceLoader.xctemplate/___PACKAGENAMEASIDENTIFIER___.plist -------------------------------------------------------------------------------- /templates/PreferenceLoader.xctemplate/___PACKAGENAMEASIDENTIFIER___Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/iOSOpenDev/HEAD/templates/PreferenceLoader.xctemplate/___PACKAGENAMEASIDENTIFIER___Icon.png -------------------------------------------------------------------------------- /templates/PreferenceLoader.xctemplate/___PACKAGENAMEASIDENTIFIER___Icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/iOSOpenDev/HEAD/templates/PreferenceLoader.xctemplate/___PACKAGENAMEASIDENTIFIER___Icon@2x.png -------------------------------------------------------------------------------- /templates/Unit Tests.xctemplate/TemplateIcon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/iOSOpenDev/HEAD/templates/Unit Tests.xctemplate/TemplateIcon.icns -------------------------------------------------------------------------------- /templates/Unit Tests.xctemplate/TemplateInfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/iOSOpenDev/HEAD/templates/Unit Tests.xctemplate/TemplateInfo.plist -------------------------------------------------------------------------------- /templates/XPC Service.xctemplate/TemplateIcon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/iOSOpenDev/HEAD/templates/XPC Service.xctemplate/TemplateIcon.icns -------------------------------------------------------------------------------- /templates/XPC Service.xctemplate/TemplateInfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/iOSOpenDev/HEAD/templates/XPC Service.xctemplate/TemplateInfo.plist -------------------------------------------------------------------------------- /templates/XPC Service.xctemplate/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/iOSOpenDev/HEAD/templates/XPC Service.xctemplate/main.m -------------------------------------------------------------------------------- /templates/XPC Service.xctemplate/postinst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/iOSOpenDev/HEAD/templates/XPC Service.xctemplate/postinst -------------------------------------------------------------------------------- /templates/XPC Service.xctemplate/prerm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/iOSOpenDev/HEAD/templates/XPC Service.xctemplate/prerm --------------------------------------------------------------------------------