Bladeren bron

fix preferences for iOS 15 xina beta jailbreak

master
gilshahar7 1 jaar geleden
bovenliggende
commit
27ee470446
3 gewijzigde bestanden met toevoegingen van 3 en 3 verwijderingen
  1. +1
    -1
      control
  2. BIN
      packages/com.gilshahar7.pearlretry_1.2.1_iphoneos-arm.deb
  3. +2
    -2
      pearlretryprefs/prpRootListController.m

+ 1
- 1
control Bestand weergeven

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

BIN
packages/com.gilshahar7.pearlretry_1.2.1_iphoneos-arm.deb Bestand weergeven


+ 2
- 2
pearlretryprefs/prpRootListController.m Bestand weergeven

@@ -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"]];

Laden…
Annuleren
Opslaan