├── .gitignore ├── LICENSE ├── Makefile ├── Readme.md ├── SSFLEXLoader.plist ├── SSFLEXLoader.xcodeproj ├── project.pbxproj └── project.xcworkspace │ └── contents.xcworkspacedata ├── SSFLEXLoaderLoader.l.mm ├── SSFLEXLoaderMain.m ├── control ├── layout └── Library │ ├── Application Support │ └── FLEXLoader │ │ └── FLEXDylib.dylib │ └── PreferenceLoader │ └── Preferences │ ├── SSFLEXLoader.plist │ ├── SSFLEXLoader.png │ └── SSFLEXLoader@2x.png ├── ssh-askpass └── theos ├── .bootstrap ├── LICENSE ├── Prefix.pch ├── bin ├── bootstrap.sh ├── deb_build_num.sh ├── denicify.pl ├── dpkg-deb ├── fakeroot.sh ├── install.copyFile ├── install.exec ├── install.mergeDir ├── ldid ├── lib │ ├── Logos │ │ ├── Class.pm │ │ ├── Generator.pm │ │ ├── Generator │ │ │ ├── Base │ │ │ │ ├── Class.pm │ │ │ │ ├── Generator.pm │ │ │ │ ├── Group.pm │ │ │ │ ├── Method.pm │ │ │ │ ├── StaticClassGroup.pm │ │ │ │ └── Subclass.pm │ │ │ ├── MobileSubstrate │ │ │ │ ├── Class.pm │ │ │ │ ├── Generator.pm │ │ │ │ ├── Method.pm │ │ │ │ └── Subclass.pm │ │ │ ├── Thunk.pm │ │ │ └── internal │ │ │ │ ├── Class.pm │ │ │ │ ├── Generator.pm │ │ │ │ ├── Method.pm │ │ │ │ └── Subclass.pm │ │ ├── Group.pm │ │ ├── Ivar.pm │ │ ├── Method.pm │ │ ├── Patch.pm │ │ ├── Patch │ │ │ └── Source │ │ │ │ └── Generator.pm │ │ ├── StaticClassGroup.pm │ │ ├── Subclass.pm │ │ └── Util.pm │ ├── NIC │ │ ├── Bridge │ │ │ ├── Context.pm │ │ │ ├── Directory.pm │ │ │ ├── File.pm │ │ │ ├── NICBase.pm │ │ │ ├── NICType.pm │ │ │ ├── Symlink.pm │ │ │ ├── Tie │ │ │ │ └── WrappedMethod.pm │ │ │ ├── _BridgedObject.pm │ │ │ └── _Undefined.pm │ │ ├── Formats │ │ │ ├── NIC1.pm │ │ │ ├── NICTar.pm │ │ │ └── NICTar │ │ │ │ ├── Directory.pm │ │ │ │ ├── File.pm │ │ │ │ ├── Symlink.pm │ │ │ │ └── _TarMixin.pm │ │ ├── NICBase.pm │ │ ├── NICBase │ │ │ ├── Directory.pm │ │ │ ├── File.pm │ │ │ └── Symlink.pm │ │ ├── NICType.pm │ │ └── Tie │ │ │ ├── Method.pm │ │ │ └── PrefixedHandleRedirect.pm │ ├── aliased.pm │ └── parent.pm ├── logify.pl ├── logos.pl ├── nic.pl ├── nicify.pl ├── package_version.sh ├── target.pl └── vercmp.pl ├── documentation ├── Makefile └── makefiles.docbook ├── extras └── vim │ ├── README │ ├── ftplugin │ └── logos.vim │ ├── indent │ └── logos.vim │ └── syntax │ └── logos.vim ├── include ├── DHCommon.h ├── DHHookCommon.h ├── logos │ └── logos.h └── substrate.h ├── lib ├── .keep ├── libsubstrate.dylib └── libsubstrate.dylib.1 ├── makefiles ├── aggregate.mk ├── application.mk ├── bundle.mk ├── common.mk ├── framework.mk ├── install │ ├── deb_local.mk │ ├── deb_remote.mk │ ├── none_local.mk │ └── none_remote.mk ├── instance │ ├── application.mk │ ├── bundle.mk │ ├── framework.mk │ ├── library.mk │ ├── null.mk │ ├── rules.mk │ ├── shared │ │ └── bundle.mk │ ├── subproject.mk │ ├── tool.mk │ └── tweak.mk ├── legacy.mk ├── library.mk ├── master │ ├── aggregate.mk │ ├── application.mk │ ├── bundle.mk │ ├── framework.mk │ ├── library.mk │ ├── null.mk │ ├── rules.mk │ ├── subproject.mk │ ├── tool.mk │ └── tweak.mk ├── messages.mk ├── null.mk ├── package.mk ├── package │ ├── deb.mk │ └── none.mk ├── platform │ ├── Darwin-arm.mk │ ├── Darwin.mk │ └── Linux.mk ├── rules.mk ├── stage.mk ├── subproject.mk ├── targets │ ├── Darwin-arm │ │ ├── iphone.mk │ │ └── native.mk │ ├── Darwin │ │ ├── iphone.mk │ │ ├── macosx.mk │ │ ├── native.mk │ │ └── simulator.mk │ ├── Linux │ │ ├── iphone.mk │ │ ├── linux.mk │ │ └── native.mk │ └── _common │ │ ├── darwin.mk │ │ ├── darwin_flat_bundle.mk │ │ ├── darwin_hierarchial_bundle.mk │ │ └── linux.mk ├── tool.mk └── tweak.mk ├── mod └── .keep └── templates └── iphone ├── application.nic.tar ├── library.nic.tar ├── preference_bundle.nic.tar ├── tool.nic.tar └── tweak.nic.tar /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XueshiQiao/FLEXLoader/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XueshiQiao/FLEXLoader/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XueshiQiao/FLEXLoader/HEAD/Makefile -------------------------------------------------------------------------------- /Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XueshiQiao/FLEXLoader/HEAD/Readme.md -------------------------------------------------------------------------------- /SSFLEXLoader.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XueshiQiao/FLEXLoader/HEAD/SSFLEXLoader.plist -------------------------------------------------------------------------------- /SSFLEXLoader.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XueshiQiao/FLEXLoader/HEAD/SSFLEXLoader.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /SSFLEXLoader.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XueshiQiao/FLEXLoader/HEAD/SSFLEXLoader.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /SSFLEXLoaderLoader.l.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XueshiQiao/FLEXLoader/HEAD/SSFLEXLoaderLoader.l.mm -------------------------------------------------------------------------------- /SSFLEXLoaderMain.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XueshiQiao/FLEXLoader/HEAD/SSFLEXLoaderMain.m -------------------------------------------------------------------------------- /control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XueshiQiao/FLEXLoader/HEAD/control -------------------------------------------------------------------------------- /layout/Library/Application Support/FLEXLoader/FLEXDylib.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XueshiQiao/FLEXLoader/HEAD/layout/Library/Application Support/FLEXLoader/FLEXDylib.dylib -------------------------------------------------------------------------------- /layout/Library/PreferenceLoader/Preferences/SSFLEXLoader.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XueshiQiao/FLEXLoader/HEAD/layout/Library/PreferenceLoader/Preferences/SSFLEXLoader.plist -------------------------------------------------------------------------------- /layout/Library/PreferenceLoader/Preferences/SSFLEXLoader.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XueshiQiao/FLEXLoader/HEAD/layout/Library/PreferenceLoader/Preferences/SSFLEXLoader.png -------------------------------------------------------------------------------- /layout/Library/PreferenceLoader/Preferences/SSFLEXLoader@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XueshiQiao/FLEXLoader/HEAD/layout/Library/PreferenceLoader/Preferences/SSFLEXLoader@2x.png -------------------------------------------------------------------------------- /ssh-askpass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XueshiQiao/FLEXLoader/HEAD/ssh-askpass -------------------------------------------------------------------------------- /theos/.bootstrap: -------------------------------------------------------------------------------- 1 | 2 -------------------------------------------------------------------------------- /theos/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XueshiQiao/FLEXLoader/HEAD/theos/LICENSE -------------------------------------------------------------------------------- /theos/Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XueshiQiao/FLEXLoader/HEAD/theos/Prefix.pch -------------------------------------------------------------------------------- /theos/bin/bootstrap.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XueshiQiao/FLEXLoader/HEAD/theos/bin/bootstrap.sh -------------------------------------------------------------------------------- /theos/bin/deb_build_num.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XueshiQiao/FLEXLoader/HEAD/theos/bin/deb_build_num.sh -------------------------------------------------------------------------------- /theos/bin/denicify.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XueshiQiao/FLEXLoader/HEAD/theos/bin/denicify.pl -------------------------------------------------------------------------------- /theos/bin/dpkg-deb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XueshiQiao/FLEXLoader/HEAD/theos/bin/dpkg-deb -------------------------------------------------------------------------------- /theos/bin/fakeroot.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XueshiQiao/FLEXLoader/HEAD/theos/bin/fakeroot.sh -------------------------------------------------------------------------------- /theos/bin/install.copyFile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XueshiQiao/FLEXLoader/HEAD/theos/bin/install.copyFile -------------------------------------------------------------------------------- /theos/bin/install.exec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XueshiQiao/FLEXLoader/HEAD/theos/bin/install.exec -------------------------------------------------------------------------------- /theos/bin/install.mergeDir: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XueshiQiao/FLEXLoader/HEAD/theos/bin/install.mergeDir -------------------------------------------------------------------------------- /theos/bin/ldid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XueshiQiao/FLEXLoader/HEAD/theos/bin/ldid -------------------------------------------------------------------------------- /theos/bin/lib/Logos/Class.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XueshiQiao/FLEXLoader/HEAD/theos/bin/lib/Logos/Class.pm -------------------------------------------------------------------------------- /theos/bin/lib/Logos/Generator.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XueshiQiao/FLEXLoader/HEAD/theos/bin/lib/Logos/Generator.pm -------------------------------------------------------------------------------- /theos/bin/lib/Logos/Generator/Base/Class.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XueshiQiao/FLEXLoader/HEAD/theos/bin/lib/Logos/Generator/Base/Class.pm -------------------------------------------------------------------------------- /theos/bin/lib/Logos/Generator/Base/Generator.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XueshiQiao/FLEXLoader/HEAD/theos/bin/lib/Logos/Generator/Base/Generator.pm -------------------------------------------------------------------------------- /theos/bin/lib/Logos/Generator/Base/Group.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XueshiQiao/FLEXLoader/HEAD/theos/bin/lib/Logos/Generator/Base/Group.pm -------------------------------------------------------------------------------- /theos/bin/lib/Logos/Generator/Base/Method.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XueshiQiao/FLEXLoader/HEAD/theos/bin/lib/Logos/Generator/Base/Method.pm -------------------------------------------------------------------------------- /theos/bin/lib/Logos/Generator/Base/StaticClassGroup.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XueshiQiao/FLEXLoader/HEAD/theos/bin/lib/Logos/Generator/Base/StaticClassGroup.pm -------------------------------------------------------------------------------- /theos/bin/lib/Logos/Generator/Base/Subclass.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XueshiQiao/FLEXLoader/HEAD/theos/bin/lib/Logos/Generator/Base/Subclass.pm -------------------------------------------------------------------------------- /theos/bin/lib/Logos/Generator/MobileSubstrate/Class.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XueshiQiao/FLEXLoader/HEAD/theos/bin/lib/Logos/Generator/MobileSubstrate/Class.pm -------------------------------------------------------------------------------- /theos/bin/lib/Logos/Generator/MobileSubstrate/Generator.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XueshiQiao/FLEXLoader/HEAD/theos/bin/lib/Logos/Generator/MobileSubstrate/Generator.pm -------------------------------------------------------------------------------- /theos/bin/lib/Logos/Generator/MobileSubstrate/Method.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XueshiQiao/FLEXLoader/HEAD/theos/bin/lib/Logos/Generator/MobileSubstrate/Method.pm -------------------------------------------------------------------------------- /theos/bin/lib/Logos/Generator/MobileSubstrate/Subclass.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XueshiQiao/FLEXLoader/HEAD/theos/bin/lib/Logos/Generator/MobileSubstrate/Subclass.pm -------------------------------------------------------------------------------- /theos/bin/lib/Logos/Generator/Thunk.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XueshiQiao/FLEXLoader/HEAD/theos/bin/lib/Logos/Generator/Thunk.pm -------------------------------------------------------------------------------- /theos/bin/lib/Logos/Generator/internal/Class.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XueshiQiao/FLEXLoader/HEAD/theos/bin/lib/Logos/Generator/internal/Class.pm -------------------------------------------------------------------------------- /theos/bin/lib/Logos/Generator/internal/Generator.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XueshiQiao/FLEXLoader/HEAD/theos/bin/lib/Logos/Generator/internal/Generator.pm -------------------------------------------------------------------------------- /theos/bin/lib/Logos/Generator/internal/Method.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XueshiQiao/FLEXLoader/HEAD/theos/bin/lib/Logos/Generator/internal/Method.pm -------------------------------------------------------------------------------- /theos/bin/lib/Logos/Generator/internal/Subclass.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XueshiQiao/FLEXLoader/HEAD/theos/bin/lib/Logos/Generator/internal/Subclass.pm -------------------------------------------------------------------------------- /theos/bin/lib/Logos/Group.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XueshiQiao/FLEXLoader/HEAD/theos/bin/lib/Logos/Group.pm -------------------------------------------------------------------------------- /theos/bin/lib/Logos/Ivar.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XueshiQiao/FLEXLoader/HEAD/theos/bin/lib/Logos/Ivar.pm -------------------------------------------------------------------------------- /theos/bin/lib/Logos/Method.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XueshiQiao/FLEXLoader/HEAD/theos/bin/lib/Logos/Method.pm -------------------------------------------------------------------------------- /theos/bin/lib/Logos/Patch.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XueshiQiao/FLEXLoader/HEAD/theos/bin/lib/Logos/Patch.pm -------------------------------------------------------------------------------- /theos/bin/lib/Logos/Patch/Source/Generator.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XueshiQiao/FLEXLoader/HEAD/theos/bin/lib/Logos/Patch/Source/Generator.pm -------------------------------------------------------------------------------- /theos/bin/lib/Logos/StaticClassGroup.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XueshiQiao/FLEXLoader/HEAD/theos/bin/lib/Logos/StaticClassGroup.pm -------------------------------------------------------------------------------- /theos/bin/lib/Logos/Subclass.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XueshiQiao/FLEXLoader/HEAD/theos/bin/lib/Logos/Subclass.pm -------------------------------------------------------------------------------- /theos/bin/lib/Logos/Util.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XueshiQiao/FLEXLoader/HEAD/theos/bin/lib/Logos/Util.pm -------------------------------------------------------------------------------- /theos/bin/lib/NIC/Bridge/Context.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XueshiQiao/FLEXLoader/HEAD/theos/bin/lib/NIC/Bridge/Context.pm -------------------------------------------------------------------------------- /theos/bin/lib/NIC/Bridge/Directory.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XueshiQiao/FLEXLoader/HEAD/theos/bin/lib/NIC/Bridge/Directory.pm -------------------------------------------------------------------------------- /theos/bin/lib/NIC/Bridge/File.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XueshiQiao/FLEXLoader/HEAD/theos/bin/lib/NIC/Bridge/File.pm -------------------------------------------------------------------------------- /theos/bin/lib/NIC/Bridge/NICBase.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XueshiQiao/FLEXLoader/HEAD/theos/bin/lib/NIC/Bridge/NICBase.pm -------------------------------------------------------------------------------- /theos/bin/lib/NIC/Bridge/NICType.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XueshiQiao/FLEXLoader/HEAD/theos/bin/lib/NIC/Bridge/NICType.pm -------------------------------------------------------------------------------- /theos/bin/lib/NIC/Bridge/Symlink.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XueshiQiao/FLEXLoader/HEAD/theos/bin/lib/NIC/Bridge/Symlink.pm -------------------------------------------------------------------------------- /theos/bin/lib/NIC/Bridge/Tie/WrappedMethod.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XueshiQiao/FLEXLoader/HEAD/theos/bin/lib/NIC/Bridge/Tie/WrappedMethod.pm -------------------------------------------------------------------------------- /theos/bin/lib/NIC/Bridge/_BridgedObject.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XueshiQiao/FLEXLoader/HEAD/theos/bin/lib/NIC/Bridge/_BridgedObject.pm -------------------------------------------------------------------------------- /theos/bin/lib/NIC/Bridge/_Undefined.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XueshiQiao/FLEXLoader/HEAD/theos/bin/lib/NIC/Bridge/_Undefined.pm -------------------------------------------------------------------------------- /theos/bin/lib/NIC/Formats/NIC1.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XueshiQiao/FLEXLoader/HEAD/theos/bin/lib/NIC/Formats/NIC1.pm -------------------------------------------------------------------------------- /theos/bin/lib/NIC/Formats/NICTar.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XueshiQiao/FLEXLoader/HEAD/theos/bin/lib/NIC/Formats/NICTar.pm -------------------------------------------------------------------------------- /theos/bin/lib/NIC/Formats/NICTar/Directory.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XueshiQiao/FLEXLoader/HEAD/theos/bin/lib/NIC/Formats/NICTar/Directory.pm -------------------------------------------------------------------------------- /theos/bin/lib/NIC/Formats/NICTar/File.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XueshiQiao/FLEXLoader/HEAD/theos/bin/lib/NIC/Formats/NICTar/File.pm -------------------------------------------------------------------------------- /theos/bin/lib/NIC/Formats/NICTar/Symlink.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XueshiQiao/FLEXLoader/HEAD/theos/bin/lib/NIC/Formats/NICTar/Symlink.pm -------------------------------------------------------------------------------- /theos/bin/lib/NIC/Formats/NICTar/_TarMixin.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XueshiQiao/FLEXLoader/HEAD/theos/bin/lib/NIC/Formats/NICTar/_TarMixin.pm -------------------------------------------------------------------------------- /theos/bin/lib/NIC/NICBase.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XueshiQiao/FLEXLoader/HEAD/theos/bin/lib/NIC/NICBase.pm -------------------------------------------------------------------------------- /theos/bin/lib/NIC/NICBase/Directory.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XueshiQiao/FLEXLoader/HEAD/theos/bin/lib/NIC/NICBase/Directory.pm -------------------------------------------------------------------------------- /theos/bin/lib/NIC/NICBase/File.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XueshiQiao/FLEXLoader/HEAD/theos/bin/lib/NIC/NICBase/File.pm -------------------------------------------------------------------------------- /theos/bin/lib/NIC/NICBase/Symlink.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XueshiQiao/FLEXLoader/HEAD/theos/bin/lib/NIC/NICBase/Symlink.pm -------------------------------------------------------------------------------- /theos/bin/lib/NIC/NICType.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XueshiQiao/FLEXLoader/HEAD/theos/bin/lib/NIC/NICType.pm -------------------------------------------------------------------------------- /theos/bin/lib/NIC/Tie/Method.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XueshiQiao/FLEXLoader/HEAD/theos/bin/lib/NIC/Tie/Method.pm -------------------------------------------------------------------------------- /theos/bin/lib/NIC/Tie/PrefixedHandleRedirect.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XueshiQiao/FLEXLoader/HEAD/theos/bin/lib/NIC/Tie/PrefixedHandleRedirect.pm -------------------------------------------------------------------------------- /theos/bin/lib/aliased.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XueshiQiao/FLEXLoader/HEAD/theos/bin/lib/aliased.pm -------------------------------------------------------------------------------- /theos/bin/lib/parent.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XueshiQiao/FLEXLoader/HEAD/theos/bin/lib/parent.pm -------------------------------------------------------------------------------- /theos/bin/logify.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XueshiQiao/FLEXLoader/HEAD/theos/bin/logify.pl -------------------------------------------------------------------------------- /theos/bin/logos.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XueshiQiao/FLEXLoader/HEAD/theos/bin/logos.pl -------------------------------------------------------------------------------- /theos/bin/nic.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XueshiQiao/FLEXLoader/HEAD/theos/bin/nic.pl -------------------------------------------------------------------------------- /theos/bin/nicify.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XueshiQiao/FLEXLoader/HEAD/theos/bin/nicify.pl -------------------------------------------------------------------------------- /theos/bin/package_version.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XueshiQiao/FLEXLoader/HEAD/theos/bin/package_version.sh -------------------------------------------------------------------------------- /theos/bin/target.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XueshiQiao/FLEXLoader/HEAD/theos/bin/target.pl -------------------------------------------------------------------------------- /theos/bin/vercmp.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XueshiQiao/FLEXLoader/HEAD/theos/bin/vercmp.pl -------------------------------------------------------------------------------- /theos/documentation/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XueshiQiao/FLEXLoader/HEAD/theos/documentation/Makefile -------------------------------------------------------------------------------- /theos/documentation/makefiles.docbook: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XueshiQiao/FLEXLoader/HEAD/theos/documentation/makefiles.docbook -------------------------------------------------------------------------------- /theos/extras/vim/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XueshiQiao/FLEXLoader/HEAD/theos/extras/vim/README -------------------------------------------------------------------------------- /theos/extras/vim/ftplugin/logos.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XueshiQiao/FLEXLoader/HEAD/theos/extras/vim/ftplugin/logos.vim -------------------------------------------------------------------------------- /theos/extras/vim/indent/logos.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XueshiQiao/FLEXLoader/HEAD/theos/extras/vim/indent/logos.vim -------------------------------------------------------------------------------- /theos/extras/vim/syntax/logos.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XueshiQiao/FLEXLoader/HEAD/theos/extras/vim/syntax/logos.vim -------------------------------------------------------------------------------- /theos/include/DHCommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XueshiQiao/FLEXLoader/HEAD/theos/include/DHCommon.h -------------------------------------------------------------------------------- /theos/include/DHHookCommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XueshiQiao/FLEXLoader/HEAD/theos/include/DHHookCommon.h -------------------------------------------------------------------------------- /theos/include/logos/logos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XueshiQiao/FLEXLoader/HEAD/theos/include/logos/logos.h -------------------------------------------------------------------------------- /theos/include/substrate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XueshiQiao/FLEXLoader/HEAD/theos/include/substrate.h -------------------------------------------------------------------------------- /theos/lib/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /theos/lib/libsubstrate.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XueshiQiao/FLEXLoader/HEAD/theos/lib/libsubstrate.dylib -------------------------------------------------------------------------------- /theos/lib/libsubstrate.dylib.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XueshiQiao/FLEXLoader/HEAD/theos/lib/libsubstrate.dylib.1 -------------------------------------------------------------------------------- /theos/makefiles/aggregate.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XueshiQiao/FLEXLoader/HEAD/theos/makefiles/aggregate.mk -------------------------------------------------------------------------------- /theos/makefiles/application.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XueshiQiao/FLEXLoader/HEAD/theos/makefiles/application.mk -------------------------------------------------------------------------------- /theos/makefiles/bundle.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XueshiQiao/FLEXLoader/HEAD/theos/makefiles/bundle.mk -------------------------------------------------------------------------------- /theos/makefiles/common.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XueshiQiao/FLEXLoader/HEAD/theos/makefiles/common.mk -------------------------------------------------------------------------------- /theos/makefiles/framework.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XueshiQiao/FLEXLoader/HEAD/theos/makefiles/framework.mk -------------------------------------------------------------------------------- /theos/makefiles/install/deb_local.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XueshiQiao/FLEXLoader/HEAD/theos/makefiles/install/deb_local.mk -------------------------------------------------------------------------------- /theos/makefiles/install/deb_remote.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XueshiQiao/FLEXLoader/HEAD/theos/makefiles/install/deb_remote.mk -------------------------------------------------------------------------------- /theos/makefiles/install/none_local.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XueshiQiao/FLEXLoader/HEAD/theos/makefiles/install/none_local.mk -------------------------------------------------------------------------------- /theos/makefiles/install/none_remote.mk: -------------------------------------------------------------------------------- 1 | none_local.mk -------------------------------------------------------------------------------- /theos/makefiles/instance/application.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XueshiQiao/FLEXLoader/HEAD/theos/makefiles/instance/application.mk -------------------------------------------------------------------------------- /theos/makefiles/instance/bundle.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XueshiQiao/FLEXLoader/HEAD/theos/makefiles/instance/bundle.mk -------------------------------------------------------------------------------- /theos/makefiles/instance/framework.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XueshiQiao/FLEXLoader/HEAD/theos/makefiles/instance/framework.mk -------------------------------------------------------------------------------- /theos/makefiles/instance/library.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XueshiQiao/FLEXLoader/HEAD/theos/makefiles/instance/library.mk -------------------------------------------------------------------------------- /theos/makefiles/instance/null.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XueshiQiao/FLEXLoader/HEAD/theos/makefiles/instance/null.mk -------------------------------------------------------------------------------- /theos/makefiles/instance/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XueshiQiao/FLEXLoader/HEAD/theos/makefiles/instance/rules.mk -------------------------------------------------------------------------------- /theos/makefiles/instance/shared/bundle.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XueshiQiao/FLEXLoader/HEAD/theos/makefiles/instance/shared/bundle.mk -------------------------------------------------------------------------------- /theos/makefiles/instance/subproject.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XueshiQiao/FLEXLoader/HEAD/theos/makefiles/instance/subproject.mk -------------------------------------------------------------------------------- /theos/makefiles/instance/tool.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XueshiQiao/FLEXLoader/HEAD/theos/makefiles/instance/tool.mk -------------------------------------------------------------------------------- /theos/makefiles/instance/tweak.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XueshiQiao/FLEXLoader/HEAD/theos/makefiles/instance/tweak.mk -------------------------------------------------------------------------------- /theos/makefiles/legacy.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XueshiQiao/FLEXLoader/HEAD/theos/makefiles/legacy.mk -------------------------------------------------------------------------------- /theos/makefiles/library.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XueshiQiao/FLEXLoader/HEAD/theos/makefiles/library.mk -------------------------------------------------------------------------------- /theos/makefiles/master/aggregate.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XueshiQiao/FLEXLoader/HEAD/theos/makefiles/master/aggregate.mk -------------------------------------------------------------------------------- /theos/makefiles/master/application.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XueshiQiao/FLEXLoader/HEAD/theos/makefiles/master/application.mk -------------------------------------------------------------------------------- /theos/makefiles/master/bundle.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XueshiQiao/FLEXLoader/HEAD/theos/makefiles/master/bundle.mk -------------------------------------------------------------------------------- /theos/makefiles/master/framework.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XueshiQiao/FLEXLoader/HEAD/theos/makefiles/master/framework.mk -------------------------------------------------------------------------------- /theos/makefiles/master/library.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XueshiQiao/FLEXLoader/HEAD/theos/makefiles/master/library.mk -------------------------------------------------------------------------------- /theos/makefiles/master/null.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XueshiQiao/FLEXLoader/HEAD/theos/makefiles/master/null.mk -------------------------------------------------------------------------------- /theos/makefiles/master/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XueshiQiao/FLEXLoader/HEAD/theos/makefiles/master/rules.mk -------------------------------------------------------------------------------- /theos/makefiles/master/subproject.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XueshiQiao/FLEXLoader/HEAD/theos/makefiles/master/subproject.mk -------------------------------------------------------------------------------- /theos/makefiles/master/tool.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XueshiQiao/FLEXLoader/HEAD/theos/makefiles/master/tool.mk -------------------------------------------------------------------------------- /theos/makefiles/master/tweak.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XueshiQiao/FLEXLoader/HEAD/theos/makefiles/master/tweak.mk -------------------------------------------------------------------------------- /theos/makefiles/messages.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XueshiQiao/FLEXLoader/HEAD/theos/makefiles/messages.mk -------------------------------------------------------------------------------- /theos/makefiles/null.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XueshiQiao/FLEXLoader/HEAD/theos/makefiles/null.mk -------------------------------------------------------------------------------- /theos/makefiles/package.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XueshiQiao/FLEXLoader/HEAD/theos/makefiles/package.mk -------------------------------------------------------------------------------- /theos/makefiles/package/deb.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XueshiQiao/FLEXLoader/HEAD/theos/makefiles/package/deb.mk -------------------------------------------------------------------------------- /theos/makefiles/package/none.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XueshiQiao/FLEXLoader/HEAD/theos/makefiles/package/none.mk -------------------------------------------------------------------------------- /theos/makefiles/platform/Darwin-arm.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XueshiQiao/FLEXLoader/HEAD/theos/makefiles/platform/Darwin-arm.mk -------------------------------------------------------------------------------- /theos/makefiles/platform/Darwin.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XueshiQiao/FLEXLoader/HEAD/theos/makefiles/platform/Darwin.mk -------------------------------------------------------------------------------- /theos/makefiles/platform/Linux.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XueshiQiao/FLEXLoader/HEAD/theos/makefiles/platform/Linux.mk -------------------------------------------------------------------------------- /theos/makefiles/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XueshiQiao/FLEXLoader/HEAD/theos/makefiles/rules.mk -------------------------------------------------------------------------------- /theos/makefiles/stage.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XueshiQiao/FLEXLoader/HEAD/theos/makefiles/stage.mk -------------------------------------------------------------------------------- /theos/makefiles/subproject.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XueshiQiao/FLEXLoader/HEAD/theos/makefiles/subproject.mk -------------------------------------------------------------------------------- /theos/makefiles/targets/Darwin-arm/iphone.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XueshiQiao/FLEXLoader/HEAD/theos/makefiles/targets/Darwin-arm/iphone.mk -------------------------------------------------------------------------------- /theos/makefiles/targets/Darwin-arm/native.mk: -------------------------------------------------------------------------------- 1 | iphone.mk -------------------------------------------------------------------------------- /theos/makefiles/targets/Darwin/iphone.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XueshiQiao/FLEXLoader/HEAD/theos/makefiles/targets/Darwin/iphone.mk -------------------------------------------------------------------------------- /theos/makefiles/targets/Darwin/macosx.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XueshiQiao/FLEXLoader/HEAD/theos/makefiles/targets/Darwin/macosx.mk -------------------------------------------------------------------------------- /theos/makefiles/targets/Darwin/native.mk: -------------------------------------------------------------------------------- 1 | macosx.mk -------------------------------------------------------------------------------- /theos/makefiles/targets/Darwin/simulator.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XueshiQiao/FLEXLoader/HEAD/theos/makefiles/targets/Darwin/simulator.mk -------------------------------------------------------------------------------- /theos/makefiles/targets/Linux/iphone.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XueshiQiao/FLEXLoader/HEAD/theos/makefiles/targets/Linux/iphone.mk -------------------------------------------------------------------------------- /theos/makefiles/targets/Linux/linux.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XueshiQiao/FLEXLoader/HEAD/theos/makefiles/targets/Linux/linux.mk -------------------------------------------------------------------------------- /theos/makefiles/targets/Linux/native.mk: -------------------------------------------------------------------------------- 1 | linux.mk -------------------------------------------------------------------------------- /theos/makefiles/targets/_common/darwin.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XueshiQiao/FLEXLoader/HEAD/theos/makefiles/targets/_common/darwin.mk -------------------------------------------------------------------------------- /theos/makefiles/targets/_common/darwin_flat_bundle.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XueshiQiao/FLEXLoader/HEAD/theos/makefiles/targets/_common/darwin_flat_bundle.mk -------------------------------------------------------------------------------- /theos/makefiles/targets/_common/darwin_hierarchial_bundle.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XueshiQiao/FLEXLoader/HEAD/theos/makefiles/targets/_common/darwin_hierarchial_bundle.mk -------------------------------------------------------------------------------- /theos/makefiles/targets/_common/linux.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XueshiQiao/FLEXLoader/HEAD/theos/makefiles/targets/_common/linux.mk -------------------------------------------------------------------------------- /theos/makefiles/tool.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XueshiQiao/FLEXLoader/HEAD/theos/makefiles/tool.mk -------------------------------------------------------------------------------- /theos/makefiles/tweak.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XueshiQiao/FLEXLoader/HEAD/theos/makefiles/tweak.mk -------------------------------------------------------------------------------- /theos/mod/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /theos/templates/iphone/application.nic.tar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XueshiQiao/FLEXLoader/HEAD/theos/templates/iphone/application.nic.tar -------------------------------------------------------------------------------- /theos/templates/iphone/library.nic.tar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XueshiQiao/FLEXLoader/HEAD/theos/templates/iphone/library.nic.tar -------------------------------------------------------------------------------- /theos/templates/iphone/preference_bundle.nic.tar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XueshiQiao/FLEXLoader/HEAD/theos/templates/iphone/preference_bundle.nic.tar -------------------------------------------------------------------------------- /theos/templates/iphone/tool.nic.tar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XueshiQiao/FLEXLoader/HEAD/theos/templates/iphone/tool.nic.tar -------------------------------------------------------------------------------- /theos/templates/iphone/tweak.nic.tar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XueshiQiao/FLEXLoader/HEAD/theos/templates/iphone/tweak.nic.tar --------------------------------------------------------------------------------