From 88e0e8acea245c4e8f288fbaa978f6c9529ca067 Mon Sep 17 00:00:00 2001 From: "Jay Freeman (saurik)" Date: Mon, 16 Sep 2013 22:29:54 -0700 Subject: Extract iOS Safe Mode from Substrate and use Theos. --- .gitignore | 4 +- Makefile | 11 ++ MobileSafety.mm | 318 ----------------------------------------------------- MobileSafety.plist | Bin 0 -> 118 bytes Tweak.xm | 295 +++++++++++++++++++++++++++++++++++++++++++++++++ control | 9 ++ make.sh | 2 - theos | 1 + 8 files changed, 319 insertions(+), 321 deletions(-) create mode 100644 Makefile delete mode 100644 MobileSafety.mm create mode 100644 MobileSafety.plist create mode 100644 Tweak.xm create mode 100644 control delete mode 100755 make.sh create mode 120000 theos diff --git a/.gitignore b/.gitignore index 63dc3ec..e512e52 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,4 @@ -*.dylib +obj *.deb +.theos +_ diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..bfa08a2 --- /dev/null +++ b/Makefile @@ -0,0 +1,11 @@ +TARGET := iphone:5.1:2.0 +ARCHS := armv6 +PACKAGE_VERSION := $(shell ./version.sh) + +include theos/makefiles/common.mk + +TWEAK_NAME := MobileSafety +MobileSafety_FILES := Tweak.xm +MobileSafety_FRAMEWORKS := UIKit + +include $(THEOS_MAKE_PATH)/tweak.mk diff --git a/MobileSafety.mm b/MobileSafety.mm deleted file mode 100644 index 8025f8a..0000000 --- a/MobileSafety.mm +++ /dev/null @@ -1,318 +0,0 @@ -/* Cydia Substrate - Powerful Code Insertion Platform - * Copyright (C) 2008-2013 Jay Freeman (saurik) -*/ - -/* GNU Lesser General Public License, Version 3 {{{ */ -/* - * Substrate is free software: you can redistribute it and/or modify it under - * the terms of the GNU Lesser General Public License as published by the - * Free Software Foundation, either version 3 of the License, or (at your - * option) any later version. - * - * Substrate is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or - * FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public - * License for more details. - * - * You should have received a copy of the GNU Lesser General Public License - * along with Substrate. If not, see . -**/ -/* }}} */ - -%apt Package: com.saurik.substrate.safemode -%apt Author: Jay Freeman (saurik) - -%apt Name: Substrate Safe Mode -%apt Description: safe mode safety extension (safe) - -%apt Depends: mobilesubstrate (>= 0.9.3367+38) - -%fflag 1 -%fflag 2 - -%bundle com.apple.springboard - -%flag -framework Foundation -%flag -framework UIKit - -#import -#import -#import -#import - -#include "CydiaSubstrate.h" - -MSClassHook(UIStatusBar) - -MSClassHook(UIImage) -MSMetaClassHook(UIImage) - -MSClassHook(AAAccountManager) -MSMetaClassHook(AAAccountManager) - -MSClassHook(BBSectionInfo) -MSClassHook(BKSApplicationLaunchSettings) - -MSClassHook(SBAlertItemsController) -MSClassHook(SBButtonBar) -MSClassHook(SBIconController) -MSClassHook(SBStatusBar) -MSClassHook(SBStatusBarDataManager) -MSClassHook(SBStatusBarTimeView) -MSClassHook(SBUIController) - -Class $SafeModeAlertItem; - -@interface SBAlertItem : NSObject { -} -- (UIAlertView *) alertSheet; -- (void) dismiss; -@end - -@interface SBAlertItemsController : NSObject { -} -+ (SBAlertItemsController *) sharedInstance; -- (void) activateAlertItem:(SBAlertItem *)item; -@end - -@interface SBStatusBarTimeView : UIView { -} -- (id) textFont; -@end - -@interface UIApplication (CydiaSubstrate) -- (void) applicationOpenURL:(id)url; -@end - -@interface UIAlertView (CydiaSubstrate) -- (void) setForceHorizontalButtonsLayout:(BOOL)force; -- (void) setBodyText:(NSString *)body; -- (void) setNumberOfRows:(NSInteger)rows; -@end - -void SafeModeAlertItem$alertSheet$buttonClicked$(id self, SEL sel, id sheet, int button) { - switch (button) { - case 1: - break; - - case 2: - if (kCFCoreFoundationVersionNumber >= 700) - system("killall backboardd"); - else - // XXX: there are better ways of restarting SpringBoard that would actually save state - exit(0); - break; - - case 3: - [[UIApplication sharedApplication] applicationOpenURL:[NSURL URLWithString:@"http://cydia.saurik.com/safemode/"]]; - break; - } - - [self dismiss]; -} - -void SafeModeAlertItem$configure$requirePasscodeForActions$(id self, SEL sel, BOOL configure, BOOL require) { - UIAlertView *sheet([self alertSheet]); - - [sheet setDelegate:self]; - [sheet setBodyText:@"We apologize for the inconvenience, but SpringBoard has just crashed.\n\nMobileSubstrate /did not/ cause this problem: it has protected you from it.\n\nYour device is now running in Safe Mode. All extensions that support this safety system are disabled.\n\nReboot (or restart SpringBoard) to return to the normal mode. To return to this dialog touch the status bar.\n\nTap \"Help\" below for more tips."]; - [sheet addButtonWithTitle:@"OK"]; - [sheet addButtonWithTitle:@"Restart"]; - [sheet addButtonWithTitle:@"Help"]; - [sheet setNumberOfRows:1]; - - if ([sheet respondsToSelector:@selector(setForceHorizontalButtonsLayout:)]) - [sheet setForceHorizontalButtonsLayout:YES]; -} - -void SafeModeAlertItem$performUnlockAction(id self, SEL sel) { - [[$SBAlertItemsController sharedInstance] activateAlertItem:self]; -} - -static void MSAlert() { - if ($SafeModeAlertItem == nil) - $SafeModeAlertItem = objc_lookUpClass("SafeModeAlertItem"); - if ($SafeModeAlertItem == nil) { - $SafeModeAlertItem = objc_allocateClassPair(objc_getClass("SBAlertItem"), "SafeModeAlertItem", 0); - if ($SafeModeAlertItem == nil) - return; - - class_addMethod($SafeModeAlertItem, @selector(alertSheet:buttonClicked:), (IMP) &SafeModeAlertItem$alertSheet$buttonClicked$, "v@:@i"); - class_addMethod($SafeModeAlertItem, @selector(configure:requirePasscodeForActions:), (IMP) &SafeModeAlertItem$configure$requirePasscodeForActions$, "v@:cc"); - class_addMethod($SafeModeAlertItem, @selector(performUnlockAction), (IMP) SafeModeAlertItem$performUnlockAction, "v@:"); - objc_registerClassPair($SafeModeAlertItem); - } - - if ($SBAlertItemsController != nil) - [[$SBAlertItemsController sharedInstance] activateAlertItem:[[[$SafeModeAlertItem alloc] init] autorelease]]; -} - - -// XXX: on iOS 5.0, we really would prefer avoiding - -MSInstanceMessageHook2(void, SBStatusBar, touchesEnded,withEvent, id, touches, id, event) { - MSAlert(); - MSOldCall(touches, event); -} - -MSInstanceMessageHook1(void, SBStatusBar, mouseDown, void *, event) { - MSAlert(); - MSOldCall(event); -} - -MSInstanceMessageHook2(void, UIStatusBar, touchesBegan,withEvent, void *, touches, void *, event) { - MSAlert(); - MSOldCall(touches, event); -} - - -// this fairly complex code came from Grant, to solve the "it Safe Mode"-in-bar bug - -MSInstanceMessageHook0(void, SBStatusBarDataManager, _updateTimeString) { - char *_data(&MSHookIvar(self, "_data")); - if (_data == NULL) - return; - - Ivar _itemIsEnabled(object_getInstanceVariable(self, "_itemIsEnabled", NULL)); - if (_itemIsEnabled == NULL) - return; - - Ivar _itemIsCloaked(object_getInstanceVariable(self, "_itemIsCloaked", NULL)); - if (_itemIsCloaked == NULL) - return; - - size_t enabledOffset(ivar_getOffset(_itemIsEnabled)); - size_t cloakedOffset(ivar_getOffset(_itemIsCloaked)); - if (enabledOffset >= cloakedOffset) - return; - - size_t offset(cloakedOffset - enabledOffset); - char *timeString(_data + offset); - strcpy(timeString, "Exit Safe Mode"); -} - - -static bool alerted_; - -static void AlertIfNeeded() { - if (alerted_) - return; - alerted_ = true; - MSAlert(); -} - - -// on iOS 4.3 and above we can use this advertisement, which seems to check every time the user unlocks -// XXX: verify that this still works on iOS 5.0 - -MSClassMessageHook0(void, AAAccountManager, showMobileMeOfferIfNecessary) { - AlertIfNeeded(); -} - - -// -[SBIconController showInfoAlertIfNeeded] explains how to drag icons around the iPhone home screen -// it used to be shown to users when they unlocked their screen for the first time, and happened every unlock -// however, as of iOS 4.3, it got relegated to only appearing once the user installed an app or web clip - -MSInstanceMessageHook0(void, SBIconController, showInfoAlertIfNeeded) { - AlertIfNeeded(); -} - - -// the icon state, including crazy configurations like Five Icon Dock, is stored in SpringBoard's defaults -// unfortunately, SpringBoard on iOS 2.0 and 2.1 (maybe 2.2 as well) buffer overrun with more than 4 icons -// there is a third party package called IconSupport that remedies this, but not everyone is using it yet - -MSInstanceMessageHook0(int, SBButtonBar, maxIconColumns) { - static int max; - if (max == 0) { - max = MSOldCall(); - if (NSUserDefaults *defaults = [NSUserDefaults standardUserDefaults]) - if (NSDictionary *iconState = [defaults objectForKey:@"iconState"]) - if (NSDictionary *buttonBar = [iconState objectForKey:@"buttonBar"]) - if (NSArray *iconMatrix = [buttonBar objectForKey:@"iconMatrix"]) - if ([iconMatrix count] != 0) - if (NSArray *row = [iconMatrix objectAtIndex:0]) { - int count([row count]); - if (max < count) - max = count; - } - } return max; -} - - -MSInstanceMessageHook0(id, SBUIController, init) { - if ((self = MSOldCall()) != nil) { - UIView *&_contentLayer(MSHookIvar(self, "_contentLayer")); - UIView *&_contentView(MSHookIvar(self, "_contentView")); - - UIView *layer; - if (&_contentLayer != NULL) - layer = _contentLayer; - else if (&_contentView != NULL) - layer = _contentView; - else - layer = nil; - - if (layer != nil) - [layer setBackgroundColor:[UIColor darkGrayColor]]; - } return self; -} - -#define Paper_ "/Library/MobileSubstrate/MobileSafety.png" - -MSClassMessageHook0(UIImage *, UIImage, defaultDesktopImage) { - return [UIImage imageWithContentsOfFile:@Paper_]; -} - -MSInstanceMessageHook0(void, SBStatusBarTimeView, tile) { - NSString *&_time(MSHookIvar(self, "_time")); - CGRect &_textRect(MSHookIvar(self, "_textRect")); - if (_time != nil) - [_time release]; - _time = [@"Exit Safe Mode" retain]; - id font([self textFont]); - CGSize size([_time sizeWithFont:font]); - CGRect frame([self frame]); - _textRect.size = size; - _textRect.origin.x = (frame.size.width - size.width) / 2; - _textRect.origin.y = (frame.size.height - size.height) / 2; -} - - -// notification widgets ("wee apps" or "bulletin board sections") are capable of crashing SpringBoard -// unfortunately, which ones are in use are stored in SpringBoard's defaults, so we need to turn them off - -MSInstanceMessageHook0(BOOL, BBSectionInfo, showsInNotificationCenter) { - return NO; -} - - -// on iOS 6.0, Apple split parts of SpringBoard into a daemon called backboardd, including app launches -// in order to allow safe mode to propogate into applications, we need to then tell backboardd here -// XXX: (all of this should be replaced, however, with per-process launchd-mediated exception handling) - -MSInstanceMessageHook1(void, BKSApplicationLaunchSettings, setEnvironment, NSDictionary *, original) { - if (original == nil) - return MSOldCall(nil); - - NSMutableDictionary *modified([original mutableCopy]); - [modified setObject:@"1" forKey:@"_MSSafeMode"]; - return MSOldCall(modified); -} - -MSInitialize { - NSAutoreleasePool *pool([[NSAutoreleasePool alloc] init]); - - // on iOS 6, backboardd is in charge of brightness, and freaks out when SpringBoard restarts :( - // the result is that the device is super dark until we attempt to update the brightness here. - - if (kCFCoreFoundationVersionNumber >= 700) { - if (void (*GSEventSetBacklightLevel)(float) = reinterpret_cast(dlsym(RTLD_DEFAULT, "GSEventSetBacklightLevel"))) - if (NSMutableDictionary *defaults = [NSMutableDictionary dictionaryWithContentsOfFile:[NSString stringWithFormat:@"%@/Library/Preferences/com.apple.springboard.plist", NSHomeDirectory()]]) - if (NSNumber *level = [defaults objectForKey:@"SBBacklightLevel2"]) - GSEventSetBacklightLevel([level floatValue]); - } - - [pool release]; -} diff --git a/MobileSafety.plist b/MobileSafety.plist new file mode 100644 index 0000000..6aa0b8e Binary files /dev/null and b/MobileSafety.plist differ diff --git a/Tweak.xm b/Tweak.xm new file mode 100644 index 0000000..e63d8e7 --- /dev/null +++ b/Tweak.xm @@ -0,0 +1,295 @@ +/* Cydia Substrate - Powerful Code Insertion Platform + * Copyright (C) 2008-2013 Jay Freeman (saurik) +*/ + +/* GNU Lesser General Public License, Version 3 {{{ */ +/* + * Substrate is free software: you can redistribute it and/or modify it under + * the terms of the GNU Lesser General Public License as published by the + * Free Software Foundation, either version 3 of the License, or (at your + * option) any later version. + * + * Substrate is distributed in the hope that it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public + * License for more details. + * + * You should have received a copy of the GNU Lesser General Public License + * along with Substrate. If not, see . +**/ +/* }}} */ + +#import +#import +#import +#import + +#include + +Class $SafeModeAlertItem; + +@interface SBAlertItem : NSObject { +} +- (UIAlertView *) alertSheet; +- (void) dismiss; +@end + +@interface SBAlertItemsController : NSObject { +} ++ (SBAlertItemsController *) sharedInstance; +- (void) activateAlertItem:(SBAlertItem *)item; +@end + +@interface SBStatusBarTimeView : UIView { +} +- (id) textFont; +@end + +@interface UIApplication (CydiaSubstrate) +- (void) applicationOpenURL:(id)url; +@end + +@interface UIAlertView (CydiaSubstrate) +- (void) setForceHorizontalButtonsLayout:(BOOL)force; +- (void) setBodyText:(NSString *)body; +- (void) setNumberOfRows:(NSInteger)rows; +@end + +void SafeModeAlertItem$alertSheet$buttonClicked$(id self, SEL sel, id sheet, int button) { + switch (button) { + case 1: + break; + + case 2: + if (kCFCoreFoundationVersionNumber >= 700) + system("killall backboardd"); + else + // XXX: there are better ways of restarting SpringBoard that would actually save state + exit(0); + break; + + case 3: + [[UIApplication sharedApplication] applicationOpenURL:[NSURL URLWithString:@"http://cydia.saurik.com/safemode/"]]; + break; + } + + [self dismiss]; +} + +void SafeModeAlertItem$configure$requirePasscodeForActions$(id self, SEL sel, BOOL configure, BOOL require) { + UIAlertView *sheet([self alertSheet]); + + [sheet setDelegate:self]; + [sheet setBodyText:@"We apologize for the inconvenience, but SpringBoard has just crashed.\n\nMobileSubstrate /did not/ cause this problem: it has protected you from it.\n\nYour device is now running in Safe Mode. All extensions that support this safety system are disabled.\n\nReboot (or restart SpringBoard) to return to the normal mode. To return to this dialog touch the status bar.\n\nTap \"Help\" below for more tips."]; + [sheet addButtonWithTitle:@"OK"]; + [sheet addButtonWithTitle:@"Restart"]; + [sheet addButtonWithTitle:@"Help"]; + [sheet setNumberOfRows:1]; + + if ([sheet respondsToSelector:@selector(setForceHorizontalButtonsLayout:)]) + [sheet setForceHorizontalButtonsLayout:YES]; +} + +void SafeModeAlertItem$performUnlockAction(id self, SEL sel) { + [[%c(SBAlertItemsController) sharedInstance] activateAlertItem:self]; +} + +static void MSAlert() { + if ($SafeModeAlertItem == nil) + $SafeModeAlertItem = objc_lookUpClass("SafeModeAlertItem"); + if ($SafeModeAlertItem == nil) { + $SafeModeAlertItem = objc_allocateClassPair(objc_getClass("SBAlertItem"), "SafeModeAlertItem", 0); + if ($SafeModeAlertItem == nil) + return; + + class_addMethod($SafeModeAlertItem, @selector(alertSheet:buttonClicked:), (IMP) &SafeModeAlertItem$alertSheet$buttonClicked$, "v@:@i"); + class_addMethod($SafeModeAlertItem, @selector(configure:requirePasscodeForActions:), (IMP) &SafeModeAlertItem$configure$requirePasscodeForActions$, "v@:cc"); + class_addMethod($SafeModeAlertItem, @selector(performUnlockAction), (IMP) SafeModeAlertItem$performUnlockAction, "v@:"); + objc_registerClassPair($SafeModeAlertItem); + } + + if (%c(SBAlertItemsController) != nil) + [[%c(SBAlertItemsController) sharedInstance] activateAlertItem:[[[$SafeModeAlertItem alloc] init] autorelease]]; +} + + +// XXX: on iOS 5.0, we really would prefer avoiding + +%hook SBStatusBar +- (void) touchesEnded:(id)touches withEvent:(id)event { + MSAlert(); + %orig(touches, event); +} %end + +%hook SBStatusBar +- (void) mouseDown:(void *)event { + MSAlert(); + %orig(event); +} %end + +%hook UIStatusBar +- (void) touchesBegan:(void *)touches withEvent:(void *)event { + MSAlert(); + %orig(touches, event); +} %end + + +// this fairly complex code came from Grant, to solve the "it Safe Mode"-in-bar bug + +%hook SBStatusBarDataManager +- (void) _updateTimeString { + char *_data(&MSHookIvar(self, "_data")); + if (_data == NULL) + return; + + Ivar _itemIsEnabled(object_getInstanceVariable(self, "_itemIsEnabled", NULL)); + if (_itemIsEnabled == NULL) + return; + + Ivar _itemIsCloaked(object_getInstanceVariable(self, "_itemIsCloaked", NULL)); + if (_itemIsCloaked == NULL) + return; + + size_t enabledOffset(ivar_getOffset(_itemIsEnabled)); + size_t cloakedOffset(ivar_getOffset(_itemIsCloaked)); + if (enabledOffset >= cloakedOffset) + return; + + size_t offset(cloakedOffset - enabledOffset); + char *timeString(_data + offset); + strcpy(timeString, "Exit Safe Mode"); +} %end + + +static bool alerted_; + +static void AlertIfNeeded() { + if (alerted_) + return; + alerted_ = true; + MSAlert(); +} + + +// on iOS 4.3 and above we can use this advertisement, which seems to check every time the user unlocks +// XXX: verify that this still works on iOS 5.0 + +%hook AAAccountManager ++ (void) showMobileMeOfferIfNecessary { + AlertIfNeeded(); +} %end + + +// -[SBIconController showInfoAlertIfNeeded] explains how to drag icons around the iPhone home screen +// it used to be shown to users when they unlocked their screen for the first time, and happened every unlock +// however, as of iOS 4.3, it got relegated to only appearing once the user installed an app or web clip + +%hook SBIconController +- (void) showInfoAlertIfNeeded { + AlertIfNeeded(); +} %end + + +// the icon state, including crazy configurations like Five Icon Dock, is stored in SpringBoard's defaults +// unfortunately, SpringBoard on iOS 2.0 and 2.1 (maybe 2.2 as well) buffer overrun with more than 4 icons +// there is a third party package called IconSupport that remedies this, but not everyone is using it yet + +%hook SBButtonBar +- (int) maxIconColumns { + static int max; + if (max == 0) { + max = %orig(); + if (NSUserDefaults *defaults = [NSUserDefaults standardUserDefaults]) + if (NSDictionary *iconState = [defaults objectForKey:@"iconState"]) + if (NSDictionary *buttonBar = [iconState objectForKey:@"buttonBar"]) + if (NSArray *iconMatrix = [buttonBar objectForKey:@"iconMatrix"]) + if ([iconMatrix count] != 0) + if (NSArray *row = [iconMatrix objectAtIndex:0]) { + int count([row count]); + if (max < count) + max = count; + } + } return max; +} %end + + +%hook SBUIController +- (id) init { + if ((self = %orig()) != nil) { + UIView *&_contentLayer(MSHookIvar(self, "_contentLayer")); + UIView *&_contentView(MSHookIvar(self, "_contentView")); + + UIView *layer; + if (&_contentLayer != NULL) + layer = _contentLayer; + else if (&_contentView != NULL) + layer = _contentView; + else + layer = nil; + + if (layer != nil) + [layer setBackgroundColor:[UIColor darkGrayColor]]; + } return self; +} %end + +#define Paper_ "/Library/MobileSubstrate/MobileSafety.png" + +%hook UIImage ++ (UIImage *) defaultDesktopImage { + return [UIImage imageWithContentsOfFile:@Paper_]; +} %end + +%hook SBStatusBarTimeView +- (void) tile { + NSString *&_time(MSHookIvar(self, "_time")); + CGRect &_textRect(MSHookIvar(self, "_textRect")); + if (_time != nil) + [_time release]; + _time = [@"Exit Safe Mode" retain]; + id font([self textFont]); + CGSize size([_time sizeWithFont:font]); + CGRect frame([self frame]); + _textRect.size = size; + _textRect.origin.x = (frame.size.width - size.width) / 2; + _textRect.origin.y = (frame.size.height - size.height) / 2; +} %end + + +// notification widgets ("wee apps" or "bulletin board sections") are capable of crashing SpringBoard +// unfortunately, which ones are in use are stored in SpringBoard's defaults, so we need to turn them off + +%hook BBSectionInfo +- (BOOL) showsInNotificationCenter { + return NO; +} %end + + +// on iOS 6.0, Apple split parts of SpringBoard into a daemon called backboardd, including app launches +// in order to allow safe mode to propogate into applications, we need to then tell backboardd here +// XXX: (all of this should be replaced, however, with per-process launchd-mediated exception handling) + +%hook BKSApplicationLaunchSettings +- (void) setEnvironment:(NSDictionary *)original { + if (original == nil) + return %orig(nil); + + NSMutableDictionary *modified([original mutableCopy]); + [modified setObject:@"1" forKey:@"_MSSafeMode"]; + return %orig(modified); +} %end + +%ctor { + NSAutoreleasePool *pool([[NSAutoreleasePool alloc] init]); + + // on iOS 6, backboardd is in charge of brightness, and freaks out when SpringBoard restarts :( + // the result is that the device is super dark until we attempt to update the brightness here. + + if (kCFCoreFoundationVersionNumber >= 700) { + if (void (*GSEventSetBacklightLevel)(float) = reinterpret_cast(dlsym(RTLD_DEFAULT, "GSEventSetBacklightLevel"))) + if (NSMutableDictionary *defaults = [NSMutableDictionary dictionaryWithContentsOfFile:[NSString stringWithFormat:@"%@/Library/Preferences/com.apple.springboard.plist", NSHomeDirectory()]]) + if (NSNumber *level = [defaults objectForKey:@"SBBacklightLevel2"]) + GSEventSetBacklightLevel([level floatValue]); + } + + [pool release]; +} diff --git a/control b/control new file mode 100644 index 0000000..df30644 --- /dev/null +++ b/control @@ -0,0 +1,9 @@ +Package: com.saurik.substrate.safemode +Author: Jay Freeman (saurik) +Name: Substrate Safe Mode +Description: safe mode safety extension (safe) +Depends: mobilesubstrate (>= 0.9.3367+38) +Architecture: iphoneos-arm +Maintainer: Jay Freeman (saurik) +Priority: optional +Section: Tweaks diff --git a/make.sh b/make.sh deleted file mode 100755 index d7e88f5..0000000 --- a/make.sh +++ /dev/null @@ -1,2 +0,0 @@ -#!/bin/bash -CYCC_APT_VERSION=$(./version.sh) cycc -i2.0 -s -p MobileSafety.mm diff --git a/theos b/theos new file mode 120000 index 0000000..e30945d --- /dev/null +++ b/theos @@ -0,0 +1 @@ +/opt/theos \ No newline at end of file -- cgit v1.2.3