├── .github └── workflows │ ├── build_and_test.yml │ ├── docs.yml │ ├── release.yml │ └── swiftlint.yml ├── .gitignore ├── .gitmodules ├── .jazzy.yaml ├── .swiftlint.yml ├── .swiftpm └── xcode │ ├── package.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist │ └── xcshareddata │ └── xcschemes │ ├── Orion-Package.xcscheme │ ├── OrionProcessor.xcscheme │ └── generate-test-fixtures.xcscheme ├── Guides ├── Getting Started.md ├── Orion Directives.md ├── Troubleshooting.md ├── Tweak Preferences.md ├── Using Orion Without Theos.md ├── Using Private Classes.md └── Versions.md ├── LICENSE.md ├── Makefile ├── Orion.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist └── xcshareddata │ └── xcschemes │ └── Orion.xcscheme ├── Orion ├── Info.plist ├── Orion-Target-iphoneos.h ├── Orion-Target-iphonesimulator.h ├── Orion-Target.h ├── Orion.h └── module.modulemap ├── Package.swift ├── Package@swift-5.6.swift ├── Plugins └── OrionPlugin │ └── OrionPlugin.swift ├── README.md ├── Sources ├── CydiaSubstrate │ ├── CydiaSubstrate.h │ ├── lib │ │ ├── lib-appletvos │ │ │ └── libsubstrate.tbd │ │ ├── lib-appletvsimulator │ │ │ └── libsubstrate.tbd │ │ ├── lib-iphoneos │ │ │ └── libsubstrate.tbd │ │ ├── lib-iphonesimulator │ │ │ └── libsubstrate.tbd │ │ ├── lib-maccatalyst │ │ │ └── libsubstrate.tbd │ │ └── lib │ │ │ └── libsubstrate.tbd │ └── module.modulemap ├── Fishhook │ ├── fishhook.c │ └── include │ │ ├── fishhook.h │ │ ├── fishhook_internal.h │ │ └── module.modulemap ├── GenerateTestFixtures │ └── main.swift ├── Orion │ ├── Backend.swift │ ├── ClassHook+Deinit.swift │ ├── ClassHook+Glue.swift │ ├── ClassHook+Super.swift │ ├── ClassHook.swift │ ├── Dynamic.swift │ ├── ErrorHandling.swift │ ├── FunctionHook+Glue.swift │ ├── FunctionHook.swift │ ├── Group.swift │ ├── Hook.swift │ ├── InternalBackend.swift │ ├── Ivars+Weak.swift │ ├── Ivars.swift │ ├── LazyAtomic.swift │ ├── Property.swift │ ├── ReadWriteLock.swift │ └── Tweak.swift ├── OrionBackend_Fishhook │ └── FishhookBackend.swift ├── OrionBackend_Substrate │ └── SubstrateBackend.swift ├── OrionC │ ├── include │ │ ├── orion_lifecycle.h │ │ ├── orion_objcrt.h │ │ └── orion_public.h │ ├── orion_lifecycle.c │ └── orion_objcrt.m ├── OrionCLI │ └── main.swift ├── OrionPlayground │ └── main.swift ├── OrionProcessor │ ├── OrionBatchParser.swift │ ├── OrionData.swift │ ├── OrionDiagnosticEngine.swift │ ├── OrionDirective.swift │ ├── OrionFailure.swift │ ├── OrionGenerator.swift │ ├── OrionParser.swift │ └── OrionVisitor.swift └── OrionTestSupport │ ├── BasicClass.m │ ├── DeClass.m │ ├── GroupClass.m │ ├── InheritedClass.m │ ├── InitClass.m │ ├── MyClass.m │ ├── MyCopyClass.m │ ├── PropertyClass.m │ ├── PropertyClass2.m │ └── include │ ├── BasicClass.h │ ├── DeClass.h │ ├── GroupClass.h │ ├── InheritedClass.h │ ├── InitClass.h │ ├── MyClass.h │ ├── MyCopyClass.h │ ├── PropertyClass.h │ └── PropertyClass2.h ├── Tests ├── LinuxMain.swift ├── OrionProcessorTests │ ├── GeneratorTests.swift │ ├── IntegrationTests.swift │ ├── ParserTests.swift │ └── XCTestManifests.swift └── OrionTests │ ├── ClassHookTests.swift │ ├── DeinitTests.swift │ ├── DynamicTests.swift │ ├── FunctionHookTests.swift │ ├── GroupTests.swift │ ├── IvarsTests.swift │ ├── MethodAdditionTests.swift │ ├── PropertyTests.swift │ ├── SubclassTests.swift │ └── TweakTests.swift ├── assets └── vlc-tweak.png ├── control ├── generate-docs.sh └── head.html /.github/workflows/build_and_test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theos/orion/HEAD/.github/workflows/build_and_test.yml -------------------------------------------------------------------------------- /.github/workflows/docs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theos/orion/HEAD/.github/workflows/docs.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theos/orion/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/swiftlint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theos/orion/HEAD/.github/workflows/swiftlint.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theos/orion/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theos/orion/HEAD/.gitmodules -------------------------------------------------------------------------------- /.jazzy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theos/orion/HEAD/.jazzy.yaml -------------------------------------------------------------------------------- /.swiftlint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theos/orion/HEAD/.swiftlint.yml -------------------------------------------------------------------------------- /.swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theos/orion/HEAD/.swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /.swiftpm/xcode/package.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theos/orion/HEAD/.swiftpm/xcode/package.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /.swiftpm/xcode/xcshareddata/xcschemes/Orion-Package.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theos/orion/HEAD/.swiftpm/xcode/xcshareddata/xcschemes/Orion-Package.xcscheme -------------------------------------------------------------------------------- /.swiftpm/xcode/xcshareddata/xcschemes/OrionProcessor.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theos/orion/HEAD/.swiftpm/xcode/xcshareddata/xcschemes/OrionProcessor.xcscheme -------------------------------------------------------------------------------- /.swiftpm/xcode/xcshareddata/xcschemes/generate-test-fixtures.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theos/orion/HEAD/.swiftpm/xcode/xcshareddata/xcschemes/generate-test-fixtures.xcscheme -------------------------------------------------------------------------------- /Guides/Getting Started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theos/orion/HEAD/Guides/Getting Started.md -------------------------------------------------------------------------------- /Guides/Orion Directives.md: -------------------------------------------------------------------------------- 1 | # Orion Directives 2 | 3 | (TODO) 4 | -------------------------------------------------------------------------------- /Guides/Troubleshooting.md: -------------------------------------------------------------------------------- 1 | # Troubleshooting 2 | 3 | (TODO) 4 | -------------------------------------------------------------------------------- /Guides/Tweak Preferences.md: -------------------------------------------------------------------------------- 1 | # Tweak Preferences 2 | 3 | (TODO) 4 | -------------------------------------------------------------------------------- /Guides/Using Orion Without Theos.md: -------------------------------------------------------------------------------- 1 | # Using Orion Without Theos 2 | 3 | (TODO) 4 | -------------------------------------------------------------------------------- /Guides/Using Private Classes.md: -------------------------------------------------------------------------------- 1 | # Using Private Classes 2 | 3 | (TODO) 4 | -------------------------------------------------------------------------------- /Guides/Versions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theos/orion/HEAD/Guides/Versions.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theos/orion/HEAD/LICENSE.md -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theos/orion/HEAD/Makefile -------------------------------------------------------------------------------- /Orion.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theos/orion/HEAD/Orion.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Orion.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theos/orion/HEAD/Orion.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Orion.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theos/orion/HEAD/Orion.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Orion.xcodeproj/xcshareddata/xcschemes/Orion.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theos/orion/HEAD/Orion.xcodeproj/xcshareddata/xcschemes/Orion.xcscheme -------------------------------------------------------------------------------- /Orion/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theos/orion/HEAD/Orion/Info.plist -------------------------------------------------------------------------------- /Orion/Orion-Target-iphoneos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theos/orion/HEAD/Orion/Orion-Target-iphoneos.h -------------------------------------------------------------------------------- /Orion/Orion-Target-iphonesimulator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theos/orion/HEAD/Orion/Orion-Target-iphonesimulator.h -------------------------------------------------------------------------------- /Orion/Orion-Target.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theos/orion/HEAD/Orion/Orion-Target.h -------------------------------------------------------------------------------- /Orion/Orion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theos/orion/HEAD/Orion/Orion.h -------------------------------------------------------------------------------- /Orion/module.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theos/orion/HEAD/Orion/module.modulemap -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theos/orion/HEAD/Package.swift -------------------------------------------------------------------------------- /Package@swift-5.6.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theos/orion/HEAD/Package@swift-5.6.swift -------------------------------------------------------------------------------- /Plugins/OrionPlugin/OrionPlugin.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theos/orion/HEAD/Plugins/OrionPlugin/OrionPlugin.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theos/orion/HEAD/README.md -------------------------------------------------------------------------------- /Sources/CydiaSubstrate/CydiaSubstrate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theos/orion/HEAD/Sources/CydiaSubstrate/CydiaSubstrate.h -------------------------------------------------------------------------------- /Sources/CydiaSubstrate/lib/lib-appletvos/libsubstrate.tbd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theos/orion/HEAD/Sources/CydiaSubstrate/lib/lib-appletvos/libsubstrate.tbd -------------------------------------------------------------------------------- /Sources/CydiaSubstrate/lib/lib-appletvsimulator/libsubstrate.tbd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theos/orion/HEAD/Sources/CydiaSubstrate/lib/lib-appletvsimulator/libsubstrate.tbd -------------------------------------------------------------------------------- /Sources/CydiaSubstrate/lib/lib-iphoneos/libsubstrate.tbd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theos/orion/HEAD/Sources/CydiaSubstrate/lib/lib-iphoneos/libsubstrate.tbd -------------------------------------------------------------------------------- /Sources/CydiaSubstrate/lib/lib-iphonesimulator/libsubstrate.tbd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theos/orion/HEAD/Sources/CydiaSubstrate/lib/lib-iphonesimulator/libsubstrate.tbd -------------------------------------------------------------------------------- /Sources/CydiaSubstrate/lib/lib-maccatalyst/libsubstrate.tbd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theos/orion/HEAD/Sources/CydiaSubstrate/lib/lib-maccatalyst/libsubstrate.tbd -------------------------------------------------------------------------------- /Sources/CydiaSubstrate/lib/lib/libsubstrate.tbd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theos/orion/HEAD/Sources/CydiaSubstrate/lib/lib/libsubstrate.tbd -------------------------------------------------------------------------------- /Sources/CydiaSubstrate/module.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theos/orion/HEAD/Sources/CydiaSubstrate/module.modulemap -------------------------------------------------------------------------------- /Sources/Fishhook/fishhook.c: -------------------------------------------------------------------------------- 1 | ../../fishhook/fishhook.c -------------------------------------------------------------------------------- /Sources/Fishhook/include/fishhook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theos/orion/HEAD/Sources/Fishhook/include/fishhook.h -------------------------------------------------------------------------------- /Sources/Fishhook/include/fishhook_internal.h: -------------------------------------------------------------------------------- 1 | ../../../fishhook/fishhook.h -------------------------------------------------------------------------------- /Sources/Fishhook/include/module.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theos/orion/HEAD/Sources/Fishhook/include/module.modulemap -------------------------------------------------------------------------------- /Sources/GenerateTestFixtures/main.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theos/orion/HEAD/Sources/GenerateTestFixtures/main.swift -------------------------------------------------------------------------------- /Sources/Orion/Backend.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theos/orion/HEAD/Sources/Orion/Backend.swift -------------------------------------------------------------------------------- /Sources/Orion/ClassHook+Deinit.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theos/orion/HEAD/Sources/Orion/ClassHook+Deinit.swift -------------------------------------------------------------------------------- /Sources/Orion/ClassHook+Glue.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theos/orion/HEAD/Sources/Orion/ClassHook+Glue.swift -------------------------------------------------------------------------------- /Sources/Orion/ClassHook+Super.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theos/orion/HEAD/Sources/Orion/ClassHook+Super.swift -------------------------------------------------------------------------------- /Sources/Orion/ClassHook.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theos/orion/HEAD/Sources/Orion/ClassHook.swift -------------------------------------------------------------------------------- /Sources/Orion/Dynamic.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theos/orion/HEAD/Sources/Orion/Dynamic.swift -------------------------------------------------------------------------------- /Sources/Orion/ErrorHandling.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theos/orion/HEAD/Sources/Orion/ErrorHandling.swift -------------------------------------------------------------------------------- /Sources/Orion/FunctionHook+Glue.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theos/orion/HEAD/Sources/Orion/FunctionHook+Glue.swift -------------------------------------------------------------------------------- /Sources/Orion/FunctionHook.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theos/orion/HEAD/Sources/Orion/FunctionHook.swift -------------------------------------------------------------------------------- /Sources/Orion/Group.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theos/orion/HEAD/Sources/Orion/Group.swift -------------------------------------------------------------------------------- /Sources/Orion/Hook.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theos/orion/HEAD/Sources/Orion/Hook.swift -------------------------------------------------------------------------------- /Sources/Orion/InternalBackend.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theos/orion/HEAD/Sources/Orion/InternalBackend.swift -------------------------------------------------------------------------------- /Sources/Orion/Ivars+Weak.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theos/orion/HEAD/Sources/Orion/Ivars+Weak.swift -------------------------------------------------------------------------------- /Sources/Orion/Ivars.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theos/orion/HEAD/Sources/Orion/Ivars.swift -------------------------------------------------------------------------------- /Sources/Orion/LazyAtomic.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theos/orion/HEAD/Sources/Orion/LazyAtomic.swift -------------------------------------------------------------------------------- /Sources/Orion/Property.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theos/orion/HEAD/Sources/Orion/Property.swift -------------------------------------------------------------------------------- /Sources/Orion/ReadWriteLock.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theos/orion/HEAD/Sources/Orion/ReadWriteLock.swift -------------------------------------------------------------------------------- /Sources/Orion/Tweak.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theos/orion/HEAD/Sources/Orion/Tweak.swift -------------------------------------------------------------------------------- /Sources/OrionBackend_Fishhook/FishhookBackend.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theos/orion/HEAD/Sources/OrionBackend_Fishhook/FishhookBackend.swift -------------------------------------------------------------------------------- /Sources/OrionBackend_Substrate/SubstrateBackend.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theos/orion/HEAD/Sources/OrionBackend_Substrate/SubstrateBackend.swift -------------------------------------------------------------------------------- /Sources/OrionC/include/orion_lifecycle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theos/orion/HEAD/Sources/OrionC/include/orion_lifecycle.h -------------------------------------------------------------------------------- /Sources/OrionC/include/orion_objcrt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theos/orion/HEAD/Sources/OrionC/include/orion_objcrt.h -------------------------------------------------------------------------------- /Sources/OrionC/include/orion_public.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theos/orion/HEAD/Sources/OrionC/include/orion_public.h -------------------------------------------------------------------------------- /Sources/OrionC/orion_lifecycle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theos/orion/HEAD/Sources/OrionC/orion_lifecycle.c -------------------------------------------------------------------------------- /Sources/OrionC/orion_objcrt.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theos/orion/HEAD/Sources/OrionC/orion_objcrt.m -------------------------------------------------------------------------------- /Sources/OrionCLI/main.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theos/orion/HEAD/Sources/OrionCLI/main.swift -------------------------------------------------------------------------------- /Sources/OrionPlayground/main.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theos/orion/HEAD/Sources/OrionPlayground/main.swift -------------------------------------------------------------------------------- /Sources/OrionProcessor/OrionBatchParser.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theos/orion/HEAD/Sources/OrionProcessor/OrionBatchParser.swift -------------------------------------------------------------------------------- /Sources/OrionProcessor/OrionData.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theos/orion/HEAD/Sources/OrionProcessor/OrionData.swift -------------------------------------------------------------------------------- /Sources/OrionProcessor/OrionDiagnosticEngine.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theos/orion/HEAD/Sources/OrionProcessor/OrionDiagnosticEngine.swift -------------------------------------------------------------------------------- /Sources/OrionProcessor/OrionDirective.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theos/orion/HEAD/Sources/OrionProcessor/OrionDirective.swift -------------------------------------------------------------------------------- /Sources/OrionProcessor/OrionFailure.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theos/orion/HEAD/Sources/OrionProcessor/OrionFailure.swift -------------------------------------------------------------------------------- /Sources/OrionProcessor/OrionGenerator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theos/orion/HEAD/Sources/OrionProcessor/OrionGenerator.swift -------------------------------------------------------------------------------- /Sources/OrionProcessor/OrionParser.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theos/orion/HEAD/Sources/OrionProcessor/OrionParser.swift -------------------------------------------------------------------------------- /Sources/OrionProcessor/OrionVisitor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theos/orion/HEAD/Sources/OrionProcessor/OrionVisitor.swift -------------------------------------------------------------------------------- /Sources/OrionTestSupport/BasicClass.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theos/orion/HEAD/Sources/OrionTestSupport/BasicClass.m -------------------------------------------------------------------------------- /Sources/OrionTestSupport/DeClass.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theos/orion/HEAD/Sources/OrionTestSupport/DeClass.m -------------------------------------------------------------------------------- /Sources/OrionTestSupport/GroupClass.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theos/orion/HEAD/Sources/OrionTestSupport/GroupClass.m -------------------------------------------------------------------------------- /Sources/OrionTestSupport/InheritedClass.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theos/orion/HEAD/Sources/OrionTestSupport/InheritedClass.m -------------------------------------------------------------------------------- /Sources/OrionTestSupport/InitClass.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theos/orion/HEAD/Sources/OrionTestSupport/InitClass.m -------------------------------------------------------------------------------- /Sources/OrionTestSupport/MyClass.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theos/orion/HEAD/Sources/OrionTestSupport/MyClass.m -------------------------------------------------------------------------------- /Sources/OrionTestSupport/MyCopyClass.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theos/orion/HEAD/Sources/OrionTestSupport/MyCopyClass.m -------------------------------------------------------------------------------- /Sources/OrionTestSupport/PropertyClass.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theos/orion/HEAD/Sources/OrionTestSupport/PropertyClass.m -------------------------------------------------------------------------------- /Sources/OrionTestSupport/PropertyClass2.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theos/orion/HEAD/Sources/OrionTestSupport/PropertyClass2.m -------------------------------------------------------------------------------- /Sources/OrionTestSupport/include/BasicClass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theos/orion/HEAD/Sources/OrionTestSupport/include/BasicClass.h -------------------------------------------------------------------------------- /Sources/OrionTestSupport/include/DeClass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theos/orion/HEAD/Sources/OrionTestSupport/include/DeClass.h -------------------------------------------------------------------------------- /Sources/OrionTestSupport/include/GroupClass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theos/orion/HEAD/Sources/OrionTestSupport/include/GroupClass.h -------------------------------------------------------------------------------- /Sources/OrionTestSupport/include/InheritedClass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theos/orion/HEAD/Sources/OrionTestSupport/include/InheritedClass.h -------------------------------------------------------------------------------- /Sources/OrionTestSupport/include/InitClass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theos/orion/HEAD/Sources/OrionTestSupport/include/InitClass.h -------------------------------------------------------------------------------- /Sources/OrionTestSupport/include/MyClass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theos/orion/HEAD/Sources/OrionTestSupport/include/MyClass.h -------------------------------------------------------------------------------- /Sources/OrionTestSupport/include/MyCopyClass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theos/orion/HEAD/Sources/OrionTestSupport/include/MyCopyClass.h -------------------------------------------------------------------------------- /Sources/OrionTestSupport/include/PropertyClass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theos/orion/HEAD/Sources/OrionTestSupport/include/PropertyClass.h -------------------------------------------------------------------------------- /Sources/OrionTestSupport/include/PropertyClass2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theos/orion/HEAD/Sources/OrionTestSupport/include/PropertyClass2.h -------------------------------------------------------------------------------- /Tests/LinuxMain.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theos/orion/HEAD/Tests/LinuxMain.swift -------------------------------------------------------------------------------- /Tests/OrionProcessorTests/GeneratorTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theos/orion/HEAD/Tests/OrionProcessorTests/GeneratorTests.swift -------------------------------------------------------------------------------- /Tests/OrionProcessorTests/IntegrationTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theos/orion/HEAD/Tests/OrionProcessorTests/IntegrationTests.swift -------------------------------------------------------------------------------- /Tests/OrionProcessorTests/ParserTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theos/orion/HEAD/Tests/OrionProcessorTests/ParserTests.swift -------------------------------------------------------------------------------- /Tests/OrionProcessorTests/XCTestManifests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theos/orion/HEAD/Tests/OrionProcessorTests/XCTestManifests.swift -------------------------------------------------------------------------------- /Tests/OrionTests/ClassHookTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theos/orion/HEAD/Tests/OrionTests/ClassHookTests.swift -------------------------------------------------------------------------------- /Tests/OrionTests/DeinitTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theos/orion/HEAD/Tests/OrionTests/DeinitTests.swift -------------------------------------------------------------------------------- /Tests/OrionTests/DynamicTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theos/orion/HEAD/Tests/OrionTests/DynamicTests.swift -------------------------------------------------------------------------------- /Tests/OrionTests/FunctionHookTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theos/orion/HEAD/Tests/OrionTests/FunctionHookTests.swift -------------------------------------------------------------------------------- /Tests/OrionTests/GroupTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theos/orion/HEAD/Tests/OrionTests/GroupTests.swift -------------------------------------------------------------------------------- /Tests/OrionTests/IvarsTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theos/orion/HEAD/Tests/OrionTests/IvarsTests.swift -------------------------------------------------------------------------------- /Tests/OrionTests/MethodAdditionTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theos/orion/HEAD/Tests/OrionTests/MethodAdditionTests.swift -------------------------------------------------------------------------------- /Tests/OrionTests/PropertyTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theos/orion/HEAD/Tests/OrionTests/PropertyTests.swift -------------------------------------------------------------------------------- /Tests/OrionTests/SubclassTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theos/orion/HEAD/Tests/OrionTests/SubclassTests.swift -------------------------------------------------------------------------------- /Tests/OrionTests/TweakTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theos/orion/HEAD/Tests/OrionTests/TweakTests.swift -------------------------------------------------------------------------------- /assets/vlc-tweak.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theos/orion/HEAD/assets/vlc-tweak.png -------------------------------------------------------------------------------- /control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theos/orion/HEAD/control -------------------------------------------------------------------------------- /generate-docs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theos/orion/HEAD/generate-docs.sh -------------------------------------------------------------------------------- /head.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theos/orion/HEAD/head.html --------------------------------------------------------------------------------