├── .gitignore ├── 1.0.1.zip ├── 1.0.2.zip ├── 1.1.1.zip ├── 1.1.2.zip ├── 1.1.3.zip ├── 1.1.zip ├── 1.2.10.zip ├── 1.2.5.zip ├── 1.2.6.zip ├── 1.2.7.zip ├── 1.2.8.zip ├── 1.2.9.zip ├── 1.2.zip ├── CCLoader.plist ├── CCLoader.xcodeproj ├── project.pbxproj └── project.xcworkspace │ └── contents.xcworkspacedata ├── CCLoader.xm ├── CCLoaderSettings └── Resources │ └── icon@3x.png ├── CCScrollView.h ├── CCScrollView.m ├── CCSectionView.h ├── CCSectionView.x ├── CCSectionViewController.h ├── CCSectionViewController.xm ├── ControlCenter ├── SBAlert.h ├── SBApplication.h ├── SBCCAirStuffSectionController.h ├── SBCCBrightnessSectionController.h ├── SBCCButtonLayoutView.h ├── SBCCButtonLikeSectionSplitView.h ├── SBCCButtonLikeSectionView.h ├── SBCCMediaControlsSectionController.h ├── SBCCQuickLaunchSectionController.h ├── SBCCSettingsSectionController.h ├── SBControlCenterButton.h ├── SBControlCenterContainerView.h ├── SBControlCenterContentContainerView.h ├── SBControlCenterContentView.h ├── SBControlCenterController.h ├── SBControlCenterGrabberView.h ├── SBControlCenterKnockoutView.h ├── SBControlCenterObserver-Protocol.h ├── SBControlCenterRootView.h ├── SBControlCenterSectionView.h ├── SBControlCenterSectionViewController.h ├── SBControlCenterSectionViewControllerDelegate-Protocol.h ├── SBControlCenterSeparatorView.h ├── SBControlCenterSettings.h ├── SBControlCenterViewController.h ├── SBControlCenterViewControllerDelegate-Protocol.h ├── SBControlCenterWindow.h ├── SBDisplayProtocol-Protocol.h ├── SBLiveIconImageView.h ├── SBLockScreenViewController.h ├── SBRootSettings.h ├── SBScreenTimeTrackingController.h ├── SBUIControlCenterButtonDelegate-Protocol.h ├── SBUIControlCenterControl-Protocol.h ├── SBUIControlCenterControlObserver-Protocol.h ├── SBUIController.h └── SpringBoard.h ├── Makefile ├── README.md ├── SBMediaController.h ├── SSH-Tunneling ├── tcprelay.py ├── usbmux.py └── usbmux.pyc ├── ccloadersettings ├── BBWeeAppController-Protocol.h ├── BBWeeAppControllerHost-Protocol.h ├── CCBundleLoader.h ├── CCBundleLoader.m ├── CCLoaderReplacementsViewController.h ├── CCLoaderReplacementsViewController.m ├── CCLoaderSettingsListController.h ├── CCLoaderSettingsListController.m ├── CCSection-Protocol.h ├── Makefile ├── Preferences │ ├── PSListController.h │ ├── PSSpecifier.h │ └── PSViewController.h ├── Resources │ ├── Info.plist │ ├── icon.png │ └── icon@2x.png ├── SpringBoardUIServices │ ├── _SBUIWidgetHost.h │ ├── _SBUIWidgetViewController.h │ └── _SBUIWidgetViewController_Remote_IPC.h └── entry.plist ├── clean.sh ├── control ├── sshinstall.sh ├── substrate.h ├── usbinstall-Xcode.sh └── usbinstall.sh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonasGessner/CCLoader/HEAD/.gitignore -------------------------------------------------------------------------------- /1.0.1.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonasGessner/CCLoader/HEAD/1.0.1.zip -------------------------------------------------------------------------------- /1.0.2.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonasGessner/CCLoader/HEAD/1.0.2.zip -------------------------------------------------------------------------------- /1.1.1.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonasGessner/CCLoader/HEAD/1.1.1.zip -------------------------------------------------------------------------------- /1.1.2.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonasGessner/CCLoader/HEAD/1.1.2.zip -------------------------------------------------------------------------------- /1.1.3.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonasGessner/CCLoader/HEAD/1.1.3.zip -------------------------------------------------------------------------------- /1.1.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonasGessner/CCLoader/HEAD/1.1.zip -------------------------------------------------------------------------------- /1.2.10.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonasGessner/CCLoader/HEAD/1.2.10.zip -------------------------------------------------------------------------------- /1.2.5.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonasGessner/CCLoader/HEAD/1.2.5.zip -------------------------------------------------------------------------------- /1.2.6.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonasGessner/CCLoader/HEAD/1.2.6.zip -------------------------------------------------------------------------------- /1.2.7.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonasGessner/CCLoader/HEAD/1.2.7.zip -------------------------------------------------------------------------------- /1.2.8.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonasGessner/CCLoader/HEAD/1.2.8.zip -------------------------------------------------------------------------------- /1.2.9.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonasGessner/CCLoader/HEAD/1.2.9.zip -------------------------------------------------------------------------------- /1.2.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonasGessner/CCLoader/HEAD/1.2.zip -------------------------------------------------------------------------------- /CCLoader.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonasGessner/CCLoader/HEAD/CCLoader.plist -------------------------------------------------------------------------------- /CCLoader.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonasGessner/CCLoader/HEAD/CCLoader.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /CCLoader.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonasGessner/CCLoader/HEAD/CCLoader.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /CCLoader.xm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonasGessner/CCLoader/HEAD/CCLoader.xm -------------------------------------------------------------------------------- /CCLoaderSettings/Resources/icon@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonasGessner/CCLoader/HEAD/CCLoaderSettings/Resources/icon@3x.png -------------------------------------------------------------------------------- /CCScrollView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonasGessner/CCLoader/HEAD/CCScrollView.h -------------------------------------------------------------------------------- /CCScrollView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonasGessner/CCLoader/HEAD/CCScrollView.m -------------------------------------------------------------------------------- /CCSectionView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonasGessner/CCLoader/HEAD/CCSectionView.h -------------------------------------------------------------------------------- /CCSectionView.x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonasGessner/CCLoader/HEAD/CCSectionView.x -------------------------------------------------------------------------------- /CCSectionViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonasGessner/CCLoader/HEAD/CCSectionViewController.h -------------------------------------------------------------------------------- /CCSectionViewController.xm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonasGessner/CCLoader/HEAD/CCSectionViewController.xm -------------------------------------------------------------------------------- /ControlCenter/SBAlert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonasGessner/CCLoader/HEAD/ControlCenter/SBAlert.h -------------------------------------------------------------------------------- /ControlCenter/SBApplication.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonasGessner/CCLoader/HEAD/ControlCenter/SBApplication.h -------------------------------------------------------------------------------- /ControlCenter/SBCCAirStuffSectionController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonasGessner/CCLoader/HEAD/ControlCenter/SBCCAirStuffSectionController.h -------------------------------------------------------------------------------- /ControlCenter/SBCCBrightnessSectionController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonasGessner/CCLoader/HEAD/ControlCenter/SBCCBrightnessSectionController.h -------------------------------------------------------------------------------- /ControlCenter/SBCCButtonLayoutView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonasGessner/CCLoader/HEAD/ControlCenter/SBCCButtonLayoutView.h -------------------------------------------------------------------------------- /ControlCenter/SBCCButtonLikeSectionSplitView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonasGessner/CCLoader/HEAD/ControlCenter/SBCCButtonLikeSectionSplitView.h -------------------------------------------------------------------------------- /ControlCenter/SBCCButtonLikeSectionView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonasGessner/CCLoader/HEAD/ControlCenter/SBCCButtonLikeSectionView.h -------------------------------------------------------------------------------- /ControlCenter/SBCCMediaControlsSectionController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonasGessner/CCLoader/HEAD/ControlCenter/SBCCMediaControlsSectionController.h -------------------------------------------------------------------------------- /ControlCenter/SBCCQuickLaunchSectionController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonasGessner/CCLoader/HEAD/ControlCenter/SBCCQuickLaunchSectionController.h -------------------------------------------------------------------------------- /ControlCenter/SBCCSettingsSectionController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonasGessner/CCLoader/HEAD/ControlCenter/SBCCSettingsSectionController.h -------------------------------------------------------------------------------- /ControlCenter/SBControlCenterButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonasGessner/CCLoader/HEAD/ControlCenter/SBControlCenterButton.h -------------------------------------------------------------------------------- /ControlCenter/SBControlCenterContainerView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonasGessner/CCLoader/HEAD/ControlCenter/SBControlCenterContainerView.h -------------------------------------------------------------------------------- /ControlCenter/SBControlCenterContentContainerView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonasGessner/CCLoader/HEAD/ControlCenter/SBControlCenterContentContainerView.h -------------------------------------------------------------------------------- /ControlCenter/SBControlCenterContentView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonasGessner/CCLoader/HEAD/ControlCenter/SBControlCenterContentView.h -------------------------------------------------------------------------------- /ControlCenter/SBControlCenterController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonasGessner/CCLoader/HEAD/ControlCenter/SBControlCenterController.h -------------------------------------------------------------------------------- /ControlCenter/SBControlCenterGrabberView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonasGessner/CCLoader/HEAD/ControlCenter/SBControlCenterGrabberView.h -------------------------------------------------------------------------------- /ControlCenter/SBControlCenterKnockoutView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonasGessner/CCLoader/HEAD/ControlCenter/SBControlCenterKnockoutView.h -------------------------------------------------------------------------------- /ControlCenter/SBControlCenterObserver-Protocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonasGessner/CCLoader/HEAD/ControlCenter/SBControlCenterObserver-Protocol.h -------------------------------------------------------------------------------- /ControlCenter/SBControlCenterRootView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonasGessner/CCLoader/HEAD/ControlCenter/SBControlCenterRootView.h -------------------------------------------------------------------------------- /ControlCenter/SBControlCenterSectionView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonasGessner/CCLoader/HEAD/ControlCenter/SBControlCenterSectionView.h -------------------------------------------------------------------------------- /ControlCenter/SBControlCenterSectionViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonasGessner/CCLoader/HEAD/ControlCenter/SBControlCenterSectionViewController.h -------------------------------------------------------------------------------- /ControlCenter/SBControlCenterSectionViewControllerDelegate-Protocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonasGessner/CCLoader/HEAD/ControlCenter/SBControlCenterSectionViewControllerDelegate-Protocol.h -------------------------------------------------------------------------------- /ControlCenter/SBControlCenterSeparatorView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonasGessner/CCLoader/HEAD/ControlCenter/SBControlCenterSeparatorView.h -------------------------------------------------------------------------------- /ControlCenter/SBControlCenterSettings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonasGessner/CCLoader/HEAD/ControlCenter/SBControlCenterSettings.h -------------------------------------------------------------------------------- /ControlCenter/SBControlCenterViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonasGessner/CCLoader/HEAD/ControlCenter/SBControlCenterViewController.h -------------------------------------------------------------------------------- /ControlCenter/SBControlCenterViewControllerDelegate-Protocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonasGessner/CCLoader/HEAD/ControlCenter/SBControlCenterViewControllerDelegate-Protocol.h -------------------------------------------------------------------------------- /ControlCenter/SBControlCenterWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonasGessner/CCLoader/HEAD/ControlCenter/SBControlCenterWindow.h -------------------------------------------------------------------------------- /ControlCenter/SBDisplayProtocol-Protocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonasGessner/CCLoader/HEAD/ControlCenter/SBDisplayProtocol-Protocol.h -------------------------------------------------------------------------------- /ControlCenter/SBLiveIconImageView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonasGessner/CCLoader/HEAD/ControlCenter/SBLiveIconImageView.h -------------------------------------------------------------------------------- /ControlCenter/SBLockScreenViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonasGessner/CCLoader/HEAD/ControlCenter/SBLockScreenViewController.h -------------------------------------------------------------------------------- /ControlCenter/SBRootSettings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonasGessner/CCLoader/HEAD/ControlCenter/SBRootSettings.h -------------------------------------------------------------------------------- /ControlCenter/SBScreenTimeTrackingController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonasGessner/CCLoader/HEAD/ControlCenter/SBScreenTimeTrackingController.h -------------------------------------------------------------------------------- /ControlCenter/SBUIControlCenterButtonDelegate-Protocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonasGessner/CCLoader/HEAD/ControlCenter/SBUIControlCenterButtonDelegate-Protocol.h -------------------------------------------------------------------------------- /ControlCenter/SBUIControlCenterControl-Protocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonasGessner/CCLoader/HEAD/ControlCenter/SBUIControlCenterControl-Protocol.h -------------------------------------------------------------------------------- /ControlCenter/SBUIControlCenterControlObserver-Protocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonasGessner/CCLoader/HEAD/ControlCenter/SBUIControlCenterControlObserver-Protocol.h -------------------------------------------------------------------------------- /ControlCenter/SBUIController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonasGessner/CCLoader/HEAD/ControlCenter/SBUIController.h -------------------------------------------------------------------------------- /ControlCenter/SpringBoard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonasGessner/CCLoader/HEAD/ControlCenter/SpringBoard.h -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonasGessner/CCLoader/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonasGessner/CCLoader/HEAD/README.md -------------------------------------------------------------------------------- /SBMediaController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonasGessner/CCLoader/HEAD/SBMediaController.h -------------------------------------------------------------------------------- /SSH-Tunneling/tcprelay.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonasGessner/CCLoader/HEAD/SSH-Tunneling/tcprelay.py -------------------------------------------------------------------------------- /SSH-Tunneling/usbmux.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonasGessner/CCLoader/HEAD/SSH-Tunneling/usbmux.py -------------------------------------------------------------------------------- /SSH-Tunneling/usbmux.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonasGessner/CCLoader/HEAD/SSH-Tunneling/usbmux.pyc -------------------------------------------------------------------------------- /ccloadersettings/BBWeeAppController-Protocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonasGessner/CCLoader/HEAD/ccloadersettings/BBWeeAppController-Protocol.h -------------------------------------------------------------------------------- /ccloadersettings/BBWeeAppControllerHost-Protocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonasGessner/CCLoader/HEAD/ccloadersettings/BBWeeAppControllerHost-Protocol.h -------------------------------------------------------------------------------- /ccloadersettings/CCBundleLoader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonasGessner/CCLoader/HEAD/ccloadersettings/CCBundleLoader.h -------------------------------------------------------------------------------- /ccloadersettings/CCBundleLoader.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonasGessner/CCLoader/HEAD/ccloadersettings/CCBundleLoader.m -------------------------------------------------------------------------------- /ccloadersettings/CCLoaderReplacementsViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonasGessner/CCLoader/HEAD/ccloadersettings/CCLoaderReplacementsViewController.h -------------------------------------------------------------------------------- /ccloadersettings/CCLoaderReplacementsViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonasGessner/CCLoader/HEAD/ccloadersettings/CCLoaderReplacementsViewController.m -------------------------------------------------------------------------------- /ccloadersettings/CCLoaderSettingsListController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonasGessner/CCLoader/HEAD/ccloadersettings/CCLoaderSettingsListController.h -------------------------------------------------------------------------------- /ccloadersettings/CCLoaderSettingsListController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonasGessner/CCLoader/HEAD/ccloadersettings/CCLoaderSettingsListController.m -------------------------------------------------------------------------------- /ccloadersettings/CCSection-Protocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonasGessner/CCLoader/HEAD/ccloadersettings/CCSection-Protocol.h -------------------------------------------------------------------------------- /ccloadersettings/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonasGessner/CCLoader/HEAD/ccloadersettings/Makefile -------------------------------------------------------------------------------- /ccloadersettings/Preferences/PSListController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonasGessner/CCLoader/HEAD/ccloadersettings/Preferences/PSListController.h -------------------------------------------------------------------------------- /ccloadersettings/Preferences/PSSpecifier.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonasGessner/CCLoader/HEAD/ccloadersettings/Preferences/PSSpecifier.h -------------------------------------------------------------------------------- /ccloadersettings/Preferences/PSViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonasGessner/CCLoader/HEAD/ccloadersettings/Preferences/PSViewController.h -------------------------------------------------------------------------------- /ccloadersettings/Resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonasGessner/CCLoader/HEAD/ccloadersettings/Resources/Info.plist -------------------------------------------------------------------------------- /ccloadersettings/Resources/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonasGessner/CCLoader/HEAD/ccloadersettings/Resources/icon.png -------------------------------------------------------------------------------- /ccloadersettings/Resources/icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonasGessner/CCLoader/HEAD/ccloadersettings/Resources/icon@2x.png -------------------------------------------------------------------------------- /ccloadersettings/SpringBoardUIServices/_SBUIWidgetHost.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonasGessner/CCLoader/HEAD/ccloadersettings/SpringBoardUIServices/_SBUIWidgetHost.h -------------------------------------------------------------------------------- /ccloadersettings/SpringBoardUIServices/_SBUIWidgetViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonasGessner/CCLoader/HEAD/ccloadersettings/SpringBoardUIServices/_SBUIWidgetViewController.h -------------------------------------------------------------------------------- /ccloadersettings/SpringBoardUIServices/_SBUIWidgetViewController_Remote_IPC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonasGessner/CCLoader/HEAD/ccloadersettings/SpringBoardUIServices/_SBUIWidgetViewController_Remote_IPC.h -------------------------------------------------------------------------------- /ccloadersettings/entry.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonasGessner/CCLoader/HEAD/ccloadersettings/entry.plist -------------------------------------------------------------------------------- /clean.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonasGessner/CCLoader/HEAD/clean.sh -------------------------------------------------------------------------------- /control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonasGessner/CCLoader/HEAD/control -------------------------------------------------------------------------------- /sshinstall.sh: -------------------------------------------------------------------------------- 1 | #! /bin/bash 2 | 3 | make package install -------------------------------------------------------------------------------- /substrate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonasGessner/CCLoader/HEAD/substrate.h -------------------------------------------------------------------------------- /usbinstall-Xcode.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonasGessner/CCLoader/HEAD/usbinstall-Xcode.sh -------------------------------------------------------------------------------- /usbinstall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonasGessner/CCLoader/HEAD/usbinstall.sh --------------------------------------------------------------------------------