add JaysonPlus (not working)

This commit is contained in:
√(noham)²
2026-02-24 22:43:32 +01:00
parent 5973408630
commit f314bf991f
5 changed files with 43 additions and 0 deletions

3
JaysonPlus/.gitignore vendored Normal file
View File

@@ -0,0 +1,3 @@
.theos/
packages/
.DS_Store

View File

@@ -0,0 +1,7 @@
{
Filter = {
Bundles = (
"dk.simonbs.Jayson",
);
};
}

13
JaysonPlus/Makefile Normal file
View File

@@ -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

11
JaysonPlus/Tweak.x Normal file
View File

@@ -0,0 +1,11 @@
#import <substrate.h>
%hook UnlockEverythingManager
- (BOOL)haveUnlockedEverything {
return TRUE;
}
- (void)setHaveUnlockedEverything:(BOOL)unlocked {
%orig(YES);
}
%end

9
JaysonPlus/control Normal file
View File

@@ -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)