From f314bf991fee8da2fe187d0731ca6b8f25c65537 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E2=88=9A=28noham=29=C2=B2?= <100566912+NohamR@users.noreply.github.com> Date: Tue, 24 Feb 2026 22:43:32 +0100 Subject: [PATCH] add JaysonPlus (not working) --- JaysonPlus/.gitignore | 3 +++ JaysonPlus/JaysonPlus.plist | 7 +++++++ JaysonPlus/Makefile | 13 +++++++++++++ JaysonPlus/Tweak.x | 11 +++++++++++ JaysonPlus/control | 9 +++++++++ 5 files changed, 43 insertions(+) create mode 100644 JaysonPlus/.gitignore create mode 100644 JaysonPlus/JaysonPlus.plist create mode 100644 JaysonPlus/Makefile create mode 100644 JaysonPlus/Tweak.x create mode 100644 JaysonPlus/control 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)