浏览代码

fix preferences for iOS 15 xina beta jailbreak

master
gilshahar7 1年前
父节点
当前提交
27ee470446
共有 3 个文件被更改,包括 3 次插入3 次删除
  1. +1
    -1
      control
  2. 二进制
      packages/com.gilshahar7.pearlretry_1.2.1_iphoneos-arm.deb
  3. +2
    -2
      pearlretryprefs/prpRootListController.m

+ 1
- 1
control 查看文件

@@ -1,7 +1,7 @@
Package: com.gilshahar7.pearlretry
Name: PearlRetry
Depends: mobilesubstrate
Version: 1.2
Version: 1.2.1
Architecture: iphoneos-arm
Description: Retry FaceID when failed to recognize.
Maintainer: gilshahar7

二进制
packages/com.gilshahar7.pearlretry_1.2.1_iphoneos-arm.deb 查看文件


+ 2
- 2
pearlretryprefs/prpRootListController.m 查看文件

@@ -4,14 +4,14 @@
@implementation prpRootListController

- (id)readPreferenceValue:(PSSpecifier*)specifier {
NSString *path = [NSString stringWithFormat:@"/User/Library/Preferences/%@.plist", specifier.properties[@"defaults"]];
NSString *path = [NSString stringWithFormat:@"/var/mobile/Library/Preferences/%@.plist", specifier.properties[@"defaults"]];
NSMutableDictionary *settings = [NSMutableDictionary dictionary];
[settings addEntriesFromDictionary:[NSDictionary dictionaryWithContentsOfFile:path]];
return (settings[specifier.properties[@"key"]]) ?: specifier.properties[@"default"];
}

- (void)setPreferenceValue:(id)value specifier:(PSSpecifier*)specifier {
NSString *path = [NSString stringWithFormat:@"/User/Library/Preferences/%@.plist", specifier.properties[@"defaults"]];
NSString *path = [NSString stringWithFormat:@"/var/mobile/Library/Preferences/%@.plist", specifier.properties[@"defaults"]];
NSMutableDictionary *settings = [NSMutableDictionary dictionary];
[settings addEntriesFromDictionary:[NSDictionary dictionaryWithContentsOfFile:path]];
[settings setObject:value forKey:specifier.properties[@"key"]];

正在加载...
取消
保存