mirror of
https://github.com/NohamR/Tweaks.git
synced 2026-05-24 19:59:59 +00:00
add JaysonPlus (not working)
This commit is contained in:
3
JaysonPlus/.gitignore
vendored
Normal file
3
JaysonPlus/.gitignore
vendored
Normal file
@@ -0,0 +1,3 @@
|
||||
.theos/
|
||||
packages/
|
||||
.DS_Store
|
||||
7
JaysonPlus/JaysonPlus.plist
Normal file
7
JaysonPlus/JaysonPlus.plist
Normal file
@@ -0,0 +1,7 @@
|
||||
{
|
||||
Filter = {
|
||||
Bundles = (
|
||||
"dk.simonbs.Jayson",
|
||||
);
|
||||
};
|
||||
}
|
||||
13
JaysonPlus/Makefile
Normal file
13
JaysonPlus/Makefile
Normal 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
11
JaysonPlus/Tweak.x
Normal 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
9
JaysonPlus/control
Normal 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)
|
||||
Reference in New Issue
Block a user