diff --git a/Hooks/Utils/Utils.m b/Hooks/Utils/Utils.m index 54f2a4a..0528cfd 100644 --- a/Hooks/Utils/Utils.m +++ b/Hooks/Utils/Utils.m @@ -111,6 +111,9 @@ -(NSArray*)possibleClassNameFromSignature:(NSString*)className{ -(void)setupSignatureDatabase{ #ifdef WTFJHTWEAKNAME #pragma message "Don't Change This Filename Or Setup Will Crash:" Meh(WTFJHTWEAKNAME) + NSDictionary* prefs=[[NSMutableDictionary alloc] initWithContentsOfFile:preferenceFilePath]; + self.MinimumMatchConfidence=[prefs objectForKey:@"MinimumMatchConfidence"]; + [prefs release]; for(int i=0;i<_dyld_image_count();i++){ const char * Nam=_dyld_get_image_name(i); NSString* curName=[NSString stringWithUTF8String:Nam]; diff --git a/build.py b/build.py index 5cfe87f..b78f491 100755 --- a/build.py +++ b/build.py @@ -162,6 +162,15 @@ def BuildPF(): "default": False, "defaults": "naville.wtfjh" } + Plist["items"].append(Dict)#Deobfuscation Confidence + Dict = { + "cell": "PSEditTextCell", + "keyboard": "numbers", + "placeholder": 0.8, + "bestGuess":0.8, + "isNumeric": True, + "defaults": "naville.wtfjh" + } Plist["items"].append(Dict) Dict = { "cell": "PSSwitchCell",