diff --git a/JaysonPlus/.gitignore b/JaysonPlus/.gitignore new file mode 100644 index 0000000..faf8687 --- /dev/null +++ b/JaysonPlus/.gitignore @@ -0,0 +1,3 @@ +.theos/ +packages/ +.DS_Store diff --git a/JaysonPlus/JaysonPlus.plist b/JaysonPlus/JaysonPlus.plist new file mode 100644 index 0000000..d4cff44 --- /dev/null +++ b/JaysonPlus/JaysonPlus.plist @@ -0,0 +1,7 @@ +{ + Filter = { + Bundles = ( + "dk.simonbs.Jayson", + ); + }; +} \ No newline at end of file diff --git a/JaysonPlus/Makefile b/JaysonPlus/Makefile new file mode 100644 index 0000000..e529ac9 --- /dev/null +++ b/JaysonPlus/Makefile @@ -0,0 +1,13 @@ +TARGET = iphone:latest:14.0 +INSTALL_TARGET_PROCESSES = Jayson +ARCHS = arm64 arm64e + +include $(THEOS)/makefiles/common.mk + +TWEAK_NAME = JaysonPlus + +JaysonPlus_FILES = Tweak.x +JaysonPlus_CFLAGS = -fobjc-arc +JaysonPlus_FRAMEWORKS = Foundation + +include $(THEOS_MAKE_PATH)/tweak.mk diff --git a/JaysonPlus/Tweak.x b/JaysonPlus/Tweak.x new file mode 100644 index 0000000..3129106 --- /dev/null +++ b/JaysonPlus/Tweak.x @@ -0,0 +1,11 @@ +#import + +%hook UnlockEverythingManager +- (BOOL)haveUnlockedEverything { + return TRUE; +} + +- (void)setHaveUnlockedEverything:(BOOL)unlocked { + %orig(YES); +} +%end diff --git a/JaysonPlus/control b/JaysonPlus/control new file mode 100644 index 0000000..0235bd1 --- /dev/null +++ b/JaysonPlus/control @@ -0,0 +1,9 @@ +Package: xyz.nohamr.jaysonplus +Name: JaysonPlus +Version: 1.0.0 +Architecture: iphoneos-arm +Description: Unlocks everything in the Jayson app. +Maintainer: NohamR +Author: NohamR +Section: Tweaks +Depends: mobilesubstrate (>= 0.9.5000)