Skip to content

Commit a0bb325

Browse files
Add files via upload
1 parent c52ae9e commit a0bb325

3 files changed

Lines changed: 7 additions & 2 deletions

File tree

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ SDKVERSION = 11.4
55
ARCHS = arm64 arm64e
66
TrollLock_FILES = Tweak.xm
77
DEBUG=0
8-
PACKAGE_VERSION=1.0.0
8+
PACKAGE_VERSION=1.0.1
99
include $(THEOS_MAKE_PATH)/tweak.mk
1010

1111
internal-stage::

Tweak.xm

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,11 @@
33

44
%hook BSUICAPackageView
55
- (id)initWithPackageName:(NSString *)arg1 inBundle:(id)arg2 {
6+
if(![arg1 containsString:@"lock"]) {
7+
return %orig;
8+
}
9+
10+
611
NSString *currentThemeName = @"trollformation";
712
NSString *currentTheme = @"trollformation.bundle";
813
NSBundle *themeBundle = [[NSBundle alloc] initWithPath:[NSString stringWithFormat:@"%@/%@", themepath , currentTheme]];

control

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Package: com.nathan.trolllock
22
Name: TrollLock
33
Description: Tweak that turns the faceID glyph into a trollface
4-
Version: 1.0.0
4+
Version: 1.0.1
55
Priority: optional
66
Section: Tweaks
77
Architecture: iphoneos-arm

0 commit comments

Comments
 (0)