├── .gitattributes ├── .gitignore ├── .travis.yml ├── 0Cr4shed.plist ├── Frameworks ├── Cephei.framework │ ├── Cephei.tbd │ └── Headers │ │ ├── CompactConstraint.h │ │ ├── HBOutputForShellCommand.h │ │ ├── HBPreferences.h │ │ ├── HBRespringController.h │ │ ├── NSDictionary+HBAdditions.h │ │ ├── NSLayoutConstraint+CompactConstraint.h │ │ ├── NSString+HBAdditions.h │ │ ├── UIColor+HBAdditions.h │ │ └── UIView+CompactConstraint.h ├── CoreSymbolication.framework │ └── CoreSymbolication.tbd └── FRPreferences.framework │ ├── FRPreferences │ ├── Headers │ ├── FRPCell.h │ ├── FRPDeveloperCell.h │ ├── FRPLinkCell.h │ ├── FRPListCell.h │ ├── FRPSection.h │ ├── FRPSegmentCell.h │ ├── FRPSelectListTable.h │ ├── FRPSettings.h │ ├── FRPSliderCell.h │ ├── FRPSwitchCell.h │ ├── FRPTextFieldCell.h │ ├── FRPValueCell.h │ ├── FRPViewCell.h │ ├── FRPViewSection.h │ ├── FRPreferences.h │ └── FRPrefs.h │ └── Info.plist ├── Include ├── Cephei │ ├── CompactConstraint.h │ ├── HBOutputForShellCommand.h │ ├── HBPreferences.h │ ├── HBRespringController.h │ ├── NSDictionary+HBAdditions.h │ ├── NSLayoutConstraint+CompactConstraint.h │ ├── NSString+HBAdditions.h │ ├── UIColor+HBAdditions.h │ └── UIView+CompactConstraint.h ├── CoreSymbolication │ └── CoreSymbolication.h ├── MRYIPCCenter.h ├── MobileGestalt │ └── MobileGestalt.h ├── libnotifications.h ├── sharedutils.h └── symbolication.h ├── Libraries ├── libMobileGestalt.tbd ├── libmryipc.dylib └── libnotifications.dylib ├── Makefile ├── README.md ├── Shared ├── sharedutils.mm └── symbolication.mm ├── Tweak.xm ├── control ├── cr4shedd ├── Makefile ├── ent.plist ├── layout │ └── Library │ │ └── LaunchDaemons │ │ └── com.muirey03.cr4shedd.plist └── main.mm ├── cr4shedgui ├── CRAAppDelegate.h ├── CRAAppDelegate.m ├── CRABlacklistViewController.h ├── CRABlacklistViewController.m ├── CRALogController.h ├── CRALogController.m ├── CRALogInfoViewController.h ├── CRALogInfoViewController.m ├── CRAProcViewController.h ├── CRAProcViewController.m ├── CRAProcessManager.h ├── CRAProcessManager.m ├── CRARootViewController.h ├── CRARootViewController.m ├── CRASettingsViewController.h ├── CRASettingsViewController.m ├── Log.h ├── Log.m ├── Makefile ├── NSString+HTML.h ├── NSString+HTML.m ├── Process.h ├── Process.m ├── Resources │ ├── AppIcon20x20@1x.png │ ├── AppIcon20x20@2x.png │ ├── AppIcon20x20@3x.png │ ├── AppIcon29x29@1x.png │ ├── AppIcon29x29@2x.png │ ├── AppIcon29x29@3x.png │ ├── AppIcon40x40@1x.png │ ├── AppIcon40x40@2x.png │ ├── AppIcon40x40@3x.png │ ├── AppIcon60x60@2x.png │ ├── AppIcon60x60@3x.png │ ├── AppIcon76x76@1x.png │ ├── AppIcon76x76@2x.png │ ├── AppIcon83.5x83.5@2x.png │ ├── Info.plist │ ├── LaunchImage-700-568h@2x.png │ ├── LaunchImage-700-Landscape@2x~ipad.png │ ├── LaunchImage-700-Landscape~ipad.png │ ├── LaunchImage-700-Portrait@2x~ipad.png │ ├── LaunchImage-700-Portrait~ipad.png │ ├── LaunchImage-800-667h@2x.png │ ├── LaunchImage-800-Landscape-736h@3x.png │ ├── LaunchImage-800-Portrait-736h@3x.png │ ├── LaunchImage.png │ └── LaunchImage@2x.png ├── UIImage+UIKitImage.h ├── UIImage+UIKitImage.m ├── dpkgutils.h ├── dpkgutils.m ├── ent.xml └── main.m ├── cr4shedjetsam ├── Cr4shedJetsam.plist ├── Makefile ├── TweakJetsam.xm └── cr4shed_jetsam.h ├── cr4shedmach ├── Cr4shedMach.plist ├── Makefile ├── TweakMach.xm ├── cr4shed_mach.h ├── ivars.txt ├── mach_utils.h ├── mach_utils.mm └── methods.txt ├── frpreferences ├── FRPCell.h ├── FRPCell.m ├── FRPDeveloperCell.h ├── FRPDeveloperCell.m ├── FRPLinkCell.h ├── FRPLinkCell.m ├── FRPListCell.h ├── FRPListCell.m ├── FRPSection.h ├── FRPSection.m ├── FRPSegmentCell.h ├── FRPSegmentCell.m ├── FRPSelectListTable.h ├── FRPSelectListTable.m ├── FRPSettings.h ├── FRPSettings.m ├── FRPSliderCell.h ├── FRPSliderCell.m ├── FRPSwitchCell.h ├── FRPSwitchCell.m ├── FRPTextFieldCell.h ├── FRPTextFieldCell.m ├── FRPValueCell.h ├── FRPValueCell.m ├── FRPViewCell.h ├── FRPViewCell.m ├── FRPViewSection.h ├── FRPViewSection.m ├── FRPreferences.h ├── FRPreferences.m ├── FRPrefs.h ├── Makefile └── Resources │ └── Info.plist └── layout └── DEBIAN ├── postinst └── postrm /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muirey03/Cr4shed/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .theos 2 | packages -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muirey03/Cr4shed/HEAD/.travis.yml -------------------------------------------------------------------------------- /0Cr4shed.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muirey03/Cr4shed/HEAD/0Cr4shed.plist -------------------------------------------------------------------------------- /Frameworks/Cephei.framework/Cephei.tbd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muirey03/Cr4shed/HEAD/Frameworks/Cephei.framework/Cephei.tbd -------------------------------------------------------------------------------- /Frameworks/Cephei.framework/Headers/CompactConstraint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muirey03/Cr4shed/HEAD/Frameworks/Cephei.framework/Headers/CompactConstraint.h -------------------------------------------------------------------------------- /Frameworks/Cephei.framework/Headers/HBOutputForShellCommand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muirey03/Cr4shed/HEAD/Frameworks/Cephei.framework/Headers/HBOutputForShellCommand.h -------------------------------------------------------------------------------- /Frameworks/Cephei.framework/Headers/HBPreferences.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muirey03/Cr4shed/HEAD/Frameworks/Cephei.framework/Headers/HBPreferences.h -------------------------------------------------------------------------------- /Frameworks/Cephei.framework/Headers/HBRespringController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muirey03/Cr4shed/HEAD/Frameworks/Cephei.framework/Headers/HBRespringController.h -------------------------------------------------------------------------------- /Frameworks/Cephei.framework/Headers/NSDictionary+HBAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muirey03/Cr4shed/HEAD/Frameworks/Cephei.framework/Headers/NSDictionary+HBAdditions.h -------------------------------------------------------------------------------- /Frameworks/Cephei.framework/Headers/NSLayoutConstraint+CompactConstraint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muirey03/Cr4shed/HEAD/Frameworks/Cephei.framework/Headers/NSLayoutConstraint+CompactConstraint.h -------------------------------------------------------------------------------- /Frameworks/Cephei.framework/Headers/NSString+HBAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muirey03/Cr4shed/HEAD/Frameworks/Cephei.framework/Headers/NSString+HBAdditions.h -------------------------------------------------------------------------------- /Frameworks/Cephei.framework/Headers/UIColor+HBAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muirey03/Cr4shed/HEAD/Frameworks/Cephei.framework/Headers/UIColor+HBAdditions.h -------------------------------------------------------------------------------- /Frameworks/Cephei.framework/Headers/UIView+CompactConstraint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muirey03/Cr4shed/HEAD/Frameworks/Cephei.framework/Headers/UIView+CompactConstraint.h -------------------------------------------------------------------------------- /Frameworks/CoreSymbolication.framework/CoreSymbolication.tbd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muirey03/Cr4shed/HEAD/Frameworks/CoreSymbolication.framework/CoreSymbolication.tbd -------------------------------------------------------------------------------- /Frameworks/FRPreferences.framework/FRPreferences: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muirey03/Cr4shed/HEAD/Frameworks/FRPreferences.framework/FRPreferences -------------------------------------------------------------------------------- /Frameworks/FRPreferences.framework/Headers/FRPCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muirey03/Cr4shed/HEAD/Frameworks/FRPreferences.framework/Headers/FRPCell.h -------------------------------------------------------------------------------- /Frameworks/FRPreferences.framework/Headers/FRPDeveloperCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muirey03/Cr4shed/HEAD/Frameworks/FRPreferences.framework/Headers/FRPDeveloperCell.h -------------------------------------------------------------------------------- /Frameworks/FRPreferences.framework/Headers/FRPLinkCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muirey03/Cr4shed/HEAD/Frameworks/FRPreferences.framework/Headers/FRPLinkCell.h -------------------------------------------------------------------------------- /Frameworks/FRPreferences.framework/Headers/FRPListCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muirey03/Cr4shed/HEAD/Frameworks/FRPreferences.framework/Headers/FRPListCell.h -------------------------------------------------------------------------------- /Frameworks/FRPreferences.framework/Headers/FRPSection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muirey03/Cr4shed/HEAD/Frameworks/FRPreferences.framework/Headers/FRPSection.h -------------------------------------------------------------------------------- /Frameworks/FRPreferences.framework/Headers/FRPSegmentCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muirey03/Cr4shed/HEAD/Frameworks/FRPreferences.framework/Headers/FRPSegmentCell.h -------------------------------------------------------------------------------- /Frameworks/FRPreferences.framework/Headers/FRPSelectListTable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muirey03/Cr4shed/HEAD/Frameworks/FRPreferences.framework/Headers/FRPSelectListTable.h -------------------------------------------------------------------------------- /Frameworks/FRPreferences.framework/Headers/FRPSettings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muirey03/Cr4shed/HEAD/Frameworks/FRPreferences.framework/Headers/FRPSettings.h -------------------------------------------------------------------------------- /Frameworks/FRPreferences.framework/Headers/FRPSliderCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muirey03/Cr4shed/HEAD/Frameworks/FRPreferences.framework/Headers/FRPSliderCell.h -------------------------------------------------------------------------------- /Frameworks/FRPreferences.framework/Headers/FRPSwitchCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muirey03/Cr4shed/HEAD/Frameworks/FRPreferences.framework/Headers/FRPSwitchCell.h -------------------------------------------------------------------------------- /Frameworks/FRPreferences.framework/Headers/FRPTextFieldCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muirey03/Cr4shed/HEAD/Frameworks/FRPreferences.framework/Headers/FRPTextFieldCell.h -------------------------------------------------------------------------------- /Frameworks/FRPreferences.framework/Headers/FRPValueCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muirey03/Cr4shed/HEAD/Frameworks/FRPreferences.framework/Headers/FRPValueCell.h -------------------------------------------------------------------------------- /Frameworks/FRPreferences.framework/Headers/FRPViewCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muirey03/Cr4shed/HEAD/Frameworks/FRPreferences.framework/Headers/FRPViewCell.h -------------------------------------------------------------------------------- /Frameworks/FRPreferences.framework/Headers/FRPViewSection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muirey03/Cr4shed/HEAD/Frameworks/FRPreferences.framework/Headers/FRPViewSection.h -------------------------------------------------------------------------------- /Frameworks/FRPreferences.framework/Headers/FRPreferences.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muirey03/Cr4shed/HEAD/Frameworks/FRPreferences.framework/Headers/FRPreferences.h -------------------------------------------------------------------------------- /Frameworks/FRPreferences.framework/Headers/FRPrefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muirey03/Cr4shed/HEAD/Frameworks/FRPreferences.framework/Headers/FRPrefs.h -------------------------------------------------------------------------------- /Frameworks/FRPreferences.framework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muirey03/Cr4shed/HEAD/Frameworks/FRPreferences.framework/Info.plist -------------------------------------------------------------------------------- /Include/Cephei/CompactConstraint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muirey03/Cr4shed/HEAD/Include/Cephei/CompactConstraint.h -------------------------------------------------------------------------------- /Include/Cephei/HBOutputForShellCommand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muirey03/Cr4shed/HEAD/Include/Cephei/HBOutputForShellCommand.h -------------------------------------------------------------------------------- /Include/Cephei/HBPreferences.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muirey03/Cr4shed/HEAD/Include/Cephei/HBPreferences.h -------------------------------------------------------------------------------- /Include/Cephei/HBRespringController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muirey03/Cr4shed/HEAD/Include/Cephei/HBRespringController.h -------------------------------------------------------------------------------- /Include/Cephei/NSDictionary+HBAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muirey03/Cr4shed/HEAD/Include/Cephei/NSDictionary+HBAdditions.h -------------------------------------------------------------------------------- /Include/Cephei/NSLayoutConstraint+CompactConstraint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muirey03/Cr4shed/HEAD/Include/Cephei/NSLayoutConstraint+CompactConstraint.h -------------------------------------------------------------------------------- /Include/Cephei/NSString+HBAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muirey03/Cr4shed/HEAD/Include/Cephei/NSString+HBAdditions.h -------------------------------------------------------------------------------- /Include/Cephei/UIColor+HBAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muirey03/Cr4shed/HEAD/Include/Cephei/UIColor+HBAdditions.h -------------------------------------------------------------------------------- /Include/Cephei/UIView+CompactConstraint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muirey03/Cr4shed/HEAD/Include/Cephei/UIView+CompactConstraint.h -------------------------------------------------------------------------------- /Include/CoreSymbolication/CoreSymbolication.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muirey03/Cr4shed/HEAD/Include/CoreSymbolication/CoreSymbolication.h -------------------------------------------------------------------------------- /Include/MRYIPCCenter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muirey03/Cr4shed/HEAD/Include/MRYIPCCenter.h -------------------------------------------------------------------------------- /Include/MobileGestalt/MobileGestalt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muirey03/Cr4shed/HEAD/Include/MobileGestalt/MobileGestalt.h -------------------------------------------------------------------------------- /Include/libnotifications.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muirey03/Cr4shed/HEAD/Include/libnotifications.h -------------------------------------------------------------------------------- /Include/sharedutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muirey03/Cr4shed/HEAD/Include/sharedutils.h -------------------------------------------------------------------------------- /Include/symbolication.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muirey03/Cr4shed/HEAD/Include/symbolication.h -------------------------------------------------------------------------------- /Libraries/libMobileGestalt.tbd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muirey03/Cr4shed/HEAD/Libraries/libMobileGestalt.tbd -------------------------------------------------------------------------------- /Libraries/libmryipc.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muirey03/Cr4shed/HEAD/Libraries/libmryipc.dylib -------------------------------------------------------------------------------- /Libraries/libnotifications.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muirey03/Cr4shed/HEAD/Libraries/libnotifications.dylib -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muirey03/Cr4shed/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muirey03/Cr4shed/HEAD/README.md -------------------------------------------------------------------------------- /Shared/sharedutils.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muirey03/Cr4shed/HEAD/Shared/sharedutils.mm -------------------------------------------------------------------------------- /Shared/symbolication.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muirey03/Cr4shed/HEAD/Shared/symbolication.mm -------------------------------------------------------------------------------- /Tweak.xm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muirey03/Cr4shed/HEAD/Tweak.xm -------------------------------------------------------------------------------- /control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muirey03/Cr4shed/HEAD/control -------------------------------------------------------------------------------- /cr4shedd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muirey03/Cr4shed/HEAD/cr4shedd/Makefile -------------------------------------------------------------------------------- /cr4shedd/ent.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muirey03/Cr4shed/HEAD/cr4shedd/ent.plist -------------------------------------------------------------------------------- /cr4shedd/layout/Library/LaunchDaemons/com.muirey03.cr4shedd.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muirey03/Cr4shed/HEAD/cr4shedd/layout/Library/LaunchDaemons/com.muirey03.cr4shedd.plist -------------------------------------------------------------------------------- /cr4shedd/main.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muirey03/Cr4shed/HEAD/cr4shedd/main.mm -------------------------------------------------------------------------------- /cr4shedgui/CRAAppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muirey03/Cr4shed/HEAD/cr4shedgui/CRAAppDelegate.h -------------------------------------------------------------------------------- /cr4shedgui/CRAAppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muirey03/Cr4shed/HEAD/cr4shedgui/CRAAppDelegate.m -------------------------------------------------------------------------------- /cr4shedgui/CRABlacklistViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muirey03/Cr4shed/HEAD/cr4shedgui/CRABlacklistViewController.h -------------------------------------------------------------------------------- /cr4shedgui/CRABlacklistViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muirey03/Cr4shed/HEAD/cr4shedgui/CRABlacklistViewController.m -------------------------------------------------------------------------------- /cr4shedgui/CRALogController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muirey03/Cr4shed/HEAD/cr4shedgui/CRALogController.h -------------------------------------------------------------------------------- /cr4shedgui/CRALogController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muirey03/Cr4shed/HEAD/cr4shedgui/CRALogController.m -------------------------------------------------------------------------------- /cr4shedgui/CRALogInfoViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muirey03/Cr4shed/HEAD/cr4shedgui/CRALogInfoViewController.h -------------------------------------------------------------------------------- /cr4shedgui/CRALogInfoViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muirey03/Cr4shed/HEAD/cr4shedgui/CRALogInfoViewController.m -------------------------------------------------------------------------------- /cr4shedgui/CRAProcViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muirey03/Cr4shed/HEAD/cr4shedgui/CRAProcViewController.h -------------------------------------------------------------------------------- /cr4shedgui/CRAProcViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muirey03/Cr4shed/HEAD/cr4shedgui/CRAProcViewController.m -------------------------------------------------------------------------------- /cr4shedgui/CRAProcessManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muirey03/Cr4shed/HEAD/cr4shedgui/CRAProcessManager.h -------------------------------------------------------------------------------- /cr4shedgui/CRAProcessManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muirey03/Cr4shed/HEAD/cr4shedgui/CRAProcessManager.m -------------------------------------------------------------------------------- /cr4shedgui/CRARootViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muirey03/Cr4shed/HEAD/cr4shedgui/CRARootViewController.h -------------------------------------------------------------------------------- /cr4shedgui/CRARootViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muirey03/Cr4shed/HEAD/cr4shedgui/CRARootViewController.m -------------------------------------------------------------------------------- /cr4shedgui/CRASettingsViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muirey03/Cr4shed/HEAD/cr4shedgui/CRASettingsViewController.h -------------------------------------------------------------------------------- /cr4shedgui/CRASettingsViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muirey03/Cr4shed/HEAD/cr4shedgui/CRASettingsViewController.m -------------------------------------------------------------------------------- /cr4shedgui/Log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muirey03/Cr4shed/HEAD/cr4shedgui/Log.h -------------------------------------------------------------------------------- /cr4shedgui/Log.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muirey03/Cr4shed/HEAD/cr4shedgui/Log.m -------------------------------------------------------------------------------- /cr4shedgui/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muirey03/Cr4shed/HEAD/cr4shedgui/Makefile -------------------------------------------------------------------------------- /cr4shedgui/NSString+HTML.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muirey03/Cr4shed/HEAD/cr4shedgui/NSString+HTML.h -------------------------------------------------------------------------------- /cr4shedgui/NSString+HTML.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muirey03/Cr4shed/HEAD/cr4shedgui/NSString+HTML.m -------------------------------------------------------------------------------- /cr4shedgui/Process.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muirey03/Cr4shed/HEAD/cr4shedgui/Process.h -------------------------------------------------------------------------------- /cr4shedgui/Process.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muirey03/Cr4shed/HEAD/cr4shedgui/Process.m -------------------------------------------------------------------------------- /cr4shedgui/Resources/AppIcon20x20@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muirey03/Cr4shed/HEAD/cr4shedgui/Resources/AppIcon20x20@1x.png -------------------------------------------------------------------------------- /cr4shedgui/Resources/AppIcon20x20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muirey03/Cr4shed/HEAD/cr4shedgui/Resources/AppIcon20x20@2x.png -------------------------------------------------------------------------------- /cr4shedgui/Resources/AppIcon20x20@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muirey03/Cr4shed/HEAD/cr4shedgui/Resources/AppIcon20x20@3x.png -------------------------------------------------------------------------------- /cr4shedgui/Resources/AppIcon29x29@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muirey03/Cr4shed/HEAD/cr4shedgui/Resources/AppIcon29x29@1x.png -------------------------------------------------------------------------------- /cr4shedgui/Resources/AppIcon29x29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muirey03/Cr4shed/HEAD/cr4shedgui/Resources/AppIcon29x29@2x.png -------------------------------------------------------------------------------- /cr4shedgui/Resources/AppIcon29x29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muirey03/Cr4shed/HEAD/cr4shedgui/Resources/AppIcon29x29@3x.png -------------------------------------------------------------------------------- /cr4shedgui/Resources/AppIcon40x40@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muirey03/Cr4shed/HEAD/cr4shedgui/Resources/AppIcon40x40@1x.png -------------------------------------------------------------------------------- /cr4shedgui/Resources/AppIcon40x40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muirey03/Cr4shed/HEAD/cr4shedgui/Resources/AppIcon40x40@2x.png -------------------------------------------------------------------------------- /cr4shedgui/Resources/AppIcon40x40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muirey03/Cr4shed/HEAD/cr4shedgui/Resources/AppIcon40x40@3x.png -------------------------------------------------------------------------------- /cr4shedgui/Resources/AppIcon60x60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muirey03/Cr4shed/HEAD/cr4shedgui/Resources/AppIcon60x60@2x.png -------------------------------------------------------------------------------- /cr4shedgui/Resources/AppIcon60x60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muirey03/Cr4shed/HEAD/cr4shedgui/Resources/AppIcon60x60@3x.png -------------------------------------------------------------------------------- /cr4shedgui/Resources/AppIcon76x76@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muirey03/Cr4shed/HEAD/cr4shedgui/Resources/AppIcon76x76@1x.png -------------------------------------------------------------------------------- /cr4shedgui/Resources/AppIcon76x76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muirey03/Cr4shed/HEAD/cr4shedgui/Resources/AppIcon76x76@2x.png -------------------------------------------------------------------------------- /cr4shedgui/Resources/AppIcon83.5x83.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muirey03/Cr4shed/HEAD/cr4shedgui/Resources/AppIcon83.5x83.5@2x.png -------------------------------------------------------------------------------- /cr4shedgui/Resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muirey03/Cr4shed/HEAD/cr4shedgui/Resources/Info.plist -------------------------------------------------------------------------------- /cr4shedgui/Resources/LaunchImage-700-568h@2x.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cr4shedgui/Resources/LaunchImage-700-Landscape@2x~ipad.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cr4shedgui/Resources/LaunchImage-700-Landscape~ipad.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cr4shedgui/Resources/LaunchImage-700-Portrait@2x~ipad.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cr4shedgui/Resources/LaunchImage-700-Portrait~ipad.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cr4shedgui/Resources/LaunchImage-800-667h@2x.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cr4shedgui/Resources/LaunchImage-800-Landscape-736h@3x.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cr4shedgui/Resources/LaunchImage-800-Portrait-736h@3x.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cr4shedgui/Resources/LaunchImage.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cr4shedgui/Resources/LaunchImage@2x.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cr4shedgui/UIImage+UIKitImage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muirey03/Cr4shed/HEAD/cr4shedgui/UIImage+UIKitImage.h -------------------------------------------------------------------------------- /cr4shedgui/UIImage+UIKitImage.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muirey03/Cr4shed/HEAD/cr4shedgui/UIImage+UIKitImage.m -------------------------------------------------------------------------------- /cr4shedgui/dpkgutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muirey03/Cr4shed/HEAD/cr4shedgui/dpkgutils.h -------------------------------------------------------------------------------- /cr4shedgui/dpkgutils.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muirey03/Cr4shed/HEAD/cr4shedgui/dpkgutils.m -------------------------------------------------------------------------------- /cr4shedgui/ent.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muirey03/Cr4shed/HEAD/cr4shedgui/ent.xml -------------------------------------------------------------------------------- /cr4shedgui/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muirey03/Cr4shed/HEAD/cr4shedgui/main.m -------------------------------------------------------------------------------- /cr4shedjetsam/Cr4shedJetsam.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muirey03/Cr4shed/HEAD/cr4shedjetsam/Cr4shedJetsam.plist -------------------------------------------------------------------------------- /cr4shedjetsam/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muirey03/Cr4shed/HEAD/cr4shedjetsam/Makefile -------------------------------------------------------------------------------- /cr4shedjetsam/TweakJetsam.xm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muirey03/Cr4shed/HEAD/cr4shedjetsam/TweakJetsam.xm -------------------------------------------------------------------------------- /cr4shedjetsam/cr4shed_jetsam.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muirey03/Cr4shed/HEAD/cr4shedjetsam/cr4shed_jetsam.h -------------------------------------------------------------------------------- /cr4shedmach/Cr4shedMach.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muirey03/Cr4shed/HEAD/cr4shedmach/Cr4shedMach.plist -------------------------------------------------------------------------------- /cr4shedmach/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muirey03/Cr4shed/HEAD/cr4shedmach/Makefile -------------------------------------------------------------------------------- /cr4shedmach/TweakMach.xm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muirey03/Cr4shed/HEAD/cr4shedmach/TweakMach.xm -------------------------------------------------------------------------------- /cr4shedmach/cr4shed_mach.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muirey03/Cr4shed/HEAD/cr4shedmach/cr4shed_mach.h -------------------------------------------------------------------------------- /cr4shedmach/ivars.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muirey03/Cr4shed/HEAD/cr4shedmach/ivars.txt -------------------------------------------------------------------------------- /cr4shedmach/mach_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muirey03/Cr4shed/HEAD/cr4shedmach/mach_utils.h -------------------------------------------------------------------------------- /cr4shedmach/mach_utils.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muirey03/Cr4shed/HEAD/cr4shedmach/mach_utils.mm -------------------------------------------------------------------------------- /cr4shedmach/methods.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muirey03/Cr4shed/HEAD/cr4shedmach/methods.txt -------------------------------------------------------------------------------- /frpreferences/FRPCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muirey03/Cr4shed/HEAD/frpreferences/FRPCell.h -------------------------------------------------------------------------------- /frpreferences/FRPCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muirey03/Cr4shed/HEAD/frpreferences/FRPCell.m -------------------------------------------------------------------------------- /frpreferences/FRPDeveloperCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muirey03/Cr4shed/HEAD/frpreferences/FRPDeveloperCell.h -------------------------------------------------------------------------------- /frpreferences/FRPDeveloperCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muirey03/Cr4shed/HEAD/frpreferences/FRPDeveloperCell.m -------------------------------------------------------------------------------- /frpreferences/FRPLinkCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muirey03/Cr4shed/HEAD/frpreferences/FRPLinkCell.h -------------------------------------------------------------------------------- /frpreferences/FRPLinkCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muirey03/Cr4shed/HEAD/frpreferences/FRPLinkCell.m -------------------------------------------------------------------------------- /frpreferences/FRPListCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muirey03/Cr4shed/HEAD/frpreferences/FRPListCell.h -------------------------------------------------------------------------------- /frpreferences/FRPListCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muirey03/Cr4shed/HEAD/frpreferences/FRPListCell.m -------------------------------------------------------------------------------- /frpreferences/FRPSection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muirey03/Cr4shed/HEAD/frpreferences/FRPSection.h -------------------------------------------------------------------------------- /frpreferences/FRPSection.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muirey03/Cr4shed/HEAD/frpreferences/FRPSection.m -------------------------------------------------------------------------------- /frpreferences/FRPSegmentCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muirey03/Cr4shed/HEAD/frpreferences/FRPSegmentCell.h -------------------------------------------------------------------------------- /frpreferences/FRPSegmentCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muirey03/Cr4shed/HEAD/frpreferences/FRPSegmentCell.m -------------------------------------------------------------------------------- /frpreferences/FRPSelectListTable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muirey03/Cr4shed/HEAD/frpreferences/FRPSelectListTable.h -------------------------------------------------------------------------------- /frpreferences/FRPSelectListTable.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muirey03/Cr4shed/HEAD/frpreferences/FRPSelectListTable.m -------------------------------------------------------------------------------- /frpreferences/FRPSettings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muirey03/Cr4shed/HEAD/frpreferences/FRPSettings.h -------------------------------------------------------------------------------- /frpreferences/FRPSettings.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muirey03/Cr4shed/HEAD/frpreferences/FRPSettings.m -------------------------------------------------------------------------------- /frpreferences/FRPSliderCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muirey03/Cr4shed/HEAD/frpreferences/FRPSliderCell.h -------------------------------------------------------------------------------- /frpreferences/FRPSliderCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muirey03/Cr4shed/HEAD/frpreferences/FRPSliderCell.m -------------------------------------------------------------------------------- /frpreferences/FRPSwitchCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muirey03/Cr4shed/HEAD/frpreferences/FRPSwitchCell.h -------------------------------------------------------------------------------- /frpreferences/FRPSwitchCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muirey03/Cr4shed/HEAD/frpreferences/FRPSwitchCell.m -------------------------------------------------------------------------------- /frpreferences/FRPTextFieldCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muirey03/Cr4shed/HEAD/frpreferences/FRPTextFieldCell.h -------------------------------------------------------------------------------- /frpreferences/FRPTextFieldCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muirey03/Cr4shed/HEAD/frpreferences/FRPTextFieldCell.m -------------------------------------------------------------------------------- /frpreferences/FRPValueCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muirey03/Cr4shed/HEAD/frpreferences/FRPValueCell.h -------------------------------------------------------------------------------- /frpreferences/FRPValueCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muirey03/Cr4shed/HEAD/frpreferences/FRPValueCell.m -------------------------------------------------------------------------------- /frpreferences/FRPViewCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muirey03/Cr4shed/HEAD/frpreferences/FRPViewCell.h -------------------------------------------------------------------------------- /frpreferences/FRPViewCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muirey03/Cr4shed/HEAD/frpreferences/FRPViewCell.m -------------------------------------------------------------------------------- /frpreferences/FRPViewSection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muirey03/Cr4shed/HEAD/frpreferences/FRPViewSection.h -------------------------------------------------------------------------------- /frpreferences/FRPViewSection.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muirey03/Cr4shed/HEAD/frpreferences/FRPViewSection.m -------------------------------------------------------------------------------- /frpreferences/FRPreferences.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muirey03/Cr4shed/HEAD/frpreferences/FRPreferences.h -------------------------------------------------------------------------------- /frpreferences/FRPreferences.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muirey03/Cr4shed/HEAD/frpreferences/FRPreferences.m -------------------------------------------------------------------------------- /frpreferences/FRPrefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muirey03/Cr4shed/HEAD/frpreferences/FRPrefs.h -------------------------------------------------------------------------------- /frpreferences/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muirey03/Cr4shed/HEAD/frpreferences/Makefile -------------------------------------------------------------------------------- /frpreferences/Resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muirey03/Cr4shed/HEAD/frpreferences/Resources/Info.plist -------------------------------------------------------------------------------- /layout/DEBIAN/postinst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muirey03/Cr4shed/HEAD/layout/DEBIAN/postinst -------------------------------------------------------------------------------- /layout/DEBIAN/postrm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muirey03/Cr4shed/HEAD/layout/DEBIAN/postrm --------------------------------------------------------------------------------