mirror of https://github.com/opa334/TrollStore.git
Screw it, ldid for everyone
This commit is contained in:
parent
fd2f266121
commit
1bc51ad4a5
|
@ -478,11 +478,11 @@ int signApp(NSString* appPath)
|
||||||
#else
|
#else
|
||||||
int signAdhoc(NSString *filePath, NSDictionary *entitlements)
|
int signAdhoc(NSString *filePath, NSDictionary *entitlements)
|
||||||
{
|
{
|
||||||
if (@available(iOS 15, *)) {
|
//if (@available(iOS 15, *)) {
|
||||||
return codesign_sign_adhoc(filePath.fileSystemRepresentation, true, entitlements);
|
// return codesign_sign_adhoc(filePath.fileSystemRepresentation, true, entitlements);
|
||||||
}
|
//}
|
||||||
// If iOS 14 is so great, how come there is no iOS 14 2?????
|
// If iOS 14 is so great, how come there is no iOS 14 2?????
|
||||||
else {
|
//else {
|
||||||
if(!isLdidInstalled()) return 173;
|
if(!isLdidInstalled()) return 173;
|
||||||
|
|
||||||
NSString *entitlementsPath = nil;
|
NSString *entitlementsPath = nil;
|
||||||
|
@ -519,7 +519,7 @@ int signAdhoc(NSString *filePath, NSDictionary *entitlements)
|
||||||
{
|
{
|
||||||
return 175;
|
return 175;
|
||||||
}
|
}
|
||||||
}
|
//}
|
||||||
}
|
}
|
||||||
|
|
||||||
int signApp(NSString* appPath)
|
int signApp(NSString* appPath)
|
||||||
|
@ -1051,7 +1051,7 @@ int installTrollStore(NSString* pathToTar)
|
||||||
NSString* tmpTrollStorePath = [tmpPayloadPath stringByAppendingPathComponent:@"TrollStore.app"];
|
NSString* tmpTrollStorePath = [tmpPayloadPath stringByAppendingPathComponent:@"TrollStore.app"];
|
||||||
if(![[NSFileManager defaultManager] fileExistsAtPath:tmpTrollStorePath]) return 1;
|
if(![[NSFileManager defaultManager] fileExistsAtPath:tmpTrollStorePath]) return 1;
|
||||||
|
|
||||||
if (@available(iOS 15, *)) {} else {
|
//if (@available(iOS 15, *)) {} else {
|
||||||
// Transfer existing ldid installation if it exists
|
// Transfer existing ldid installation if it exists
|
||||||
// But only if the to-be-installed version of TrollStore is 1.5.0 or above
|
// But only if the to-be-installed version of TrollStore is 1.5.0 or above
|
||||||
// This is to make it possible to downgrade to older versions still
|
// This is to make it possible to downgrade to older versions still
|
||||||
|
@ -1084,7 +1084,7 @@ int installTrollStore(NSString* pathToTar)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
//}
|
||||||
|
|
||||||
// Merge existing URL scheme settings value
|
// Merge existing URL scheme settings value
|
||||||
if(!getTSURLSchemeState(nil))
|
if(!getTSURLSchemeState(nil))
|
||||||
|
@ -1367,12 +1367,12 @@ int MAIN_NAME(int argc, char *argv[], char *envp[])
|
||||||
}
|
}
|
||||||
else if([cmd isEqualToString:@"install-ldid"])
|
else if([cmd isEqualToString:@"install-ldid"])
|
||||||
{
|
{
|
||||||
if (@available(iOS 15, *)) {} else {
|
//if (@available(iOS 15, *)) {} else {
|
||||||
if(args.count < 3) return -3;
|
if(args.count < 3) return -3;
|
||||||
NSString* ldidPath = args[1];
|
NSString* ldidPath = args[1];
|
||||||
NSString* ldidVersion = args[2];
|
NSString* ldidVersion = args[2];
|
||||||
installLdid(ldidPath, ldidVersion);
|
installLdid(ldidPath, ldidVersion);
|
||||||
}
|
//}
|
||||||
}
|
}
|
||||||
else if([cmd isEqualToString:@"refresh"])
|
else if([cmd isEqualToString:@"refresh"])
|
||||||
{
|
{
|
||||||
|
|
|
@ -54,12 +54,12 @@ extern NSUserDefaults* trollStoreUserDefaults();
|
||||||
errorDescription = @"The app's main executable does not exist.";
|
errorDescription = @"The app's main executable does not exist.";
|
||||||
break;
|
break;
|
||||||
case 175: {
|
case 175: {
|
||||||
if (@available(iOS 15, *)) {
|
//if (@available(iOS 15, *)) {
|
||||||
errorDescription = @"Failed to sign the app.";
|
// errorDescription = @"Failed to sign the app.";
|
||||||
}
|
//}
|
||||||
else {
|
//else {
|
||||||
errorDescription = @"Failed to sign the app. ldid returned a non zero status code.";
|
errorDescription = @"Failed to sign the app. ldid returned a non zero status code.";
|
||||||
}
|
//}
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
case 176:
|
case 176:
|
||||||
|
|
|
@ -76,7 +76,7 @@
|
||||||
// or if it's the one from an old TrollStore version that's no longer supported
|
// or if it's the one from an old TrollStore version that's no longer supported
|
||||||
- (void)handleLdidCheck
|
- (void)handleLdidCheck
|
||||||
{
|
{
|
||||||
if (@available(iOS 15, *)) {} else {
|
//if (@available(iOS 15, *)) {} else {
|
||||||
NSString* tsAppPath = [NSBundle mainBundle].bundlePath;
|
NSString* tsAppPath = [NSBundle mainBundle].bundlePath;
|
||||||
|
|
||||||
NSString* ldidPath = [tsAppPath stringByAppendingPathComponent:@"ldid"];
|
NSString* ldidPath = [tsAppPath stringByAppendingPathComponent:@"ldid"];
|
||||||
|
@ -86,7 +86,7 @@
|
||||||
{
|
{
|
||||||
[TSInstallationController installLdid];
|
[TSInstallationController installLdid];
|
||||||
}
|
}
|
||||||
}
|
//}
|
||||||
}
|
}
|
||||||
|
|
||||||
- (void)scene:(UIScene *)scene willConnectToSession:(UISceneSession *)session options:(UISceneConnectionOptions *)connectionOptions {
|
- (void)scene:(UIScene *)scene willConnectToSession:(UISceneSession *)session options:(UISceneConnectionOptions *)connectionOptions {
|
||||||
|
|
|
@ -34,7 +34,7 @@ extern NSUserDefaults* trollStoreUserDefaults(void);
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
if (@available(iOS 15, *)) {} else {
|
//if (@available(iOS 15, *)) {} else {
|
||||||
fetchLatestLdidVersion(^(NSString* latestVersion)
|
fetchLatestLdidVersion(^(NSString* latestVersion)
|
||||||
{
|
{
|
||||||
NSString* ldidVersionPath = [NSBundle.mainBundle.bundlePath stringByAppendingPathComponent:@"ldid.version"];
|
NSString* ldidVersionPath = [NSBundle.mainBundle.bundlePath stringByAppendingPathComponent:@"ldid.version"];
|
||||||
|
@ -54,7 +54,7 @@ extern NSUserDefaults* trollStoreUserDefaults(void);
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
}
|
//}
|
||||||
}
|
}
|
||||||
|
|
||||||
- (NSMutableArray*)specifiers
|
- (NSMutableArray*)specifiers
|
||||||
|
@ -113,8 +113,7 @@ extern NSUserDefaults* trollStoreUserDefaults(void);
|
||||||
|
|
||||||
[_specifiers addObject:rebuildIconCacheSpecifier];
|
[_specifiers addObject:rebuildIconCacheSpecifier];
|
||||||
|
|
||||||
if (@available(iOS 15, *)) { }
|
//if (@available(iOS 15, *)) { } else {
|
||||||
else {
|
|
||||||
NSString* ldidPath = [NSBundle.mainBundle.bundlePath stringByAppendingPathComponent:@"ldid"];
|
NSString* ldidPath = [NSBundle.mainBundle.bundlePath stringByAppendingPathComponent:@"ldid"];
|
||||||
NSString* ldidVersionPath = [NSBundle.mainBundle.bundlePath stringByAppendingPathComponent:@"ldid.version"];
|
NSString* ldidVersionPath = [NSBundle.mainBundle.bundlePath stringByAppendingPathComponent:@"ldid.version"];
|
||||||
BOOL ldidInstalled = [[NSFileManager defaultManager] fileExistsAtPath:ldidPath];
|
BOOL ldidInstalled = [[NSFileManager defaultManager] fileExistsAtPath:ldidPath];
|
||||||
|
@ -189,7 +188,7 @@ extern NSUserDefaults* trollStoreUserDefaults(void);
|
||||||
installLdidSpecifier.buttonAction = @selector(installOrUpdateLdidPressed);
|
installLdidSpecifier.buttonAction = @selector(installOrUpdateLdidPressed);
|
||||||
[_specifiers addObject:installLdidSpecifier];
|
[_specifiers addObject:installLdidSpecifier];
|
||||||
}
|
}
|
||||||
}
|
//}
|
||||||
|
|
||||||
PSSpecifier* persistenceGroupSpecifier = [PSSpecifier emptyGroupSpecifier];
|
PSSpecifier* persistenceGroupSpecifier = [PSSpecifier emptyGroupSpecifier];
|
||||||
persistenceGroupSpecifier.name = @"Persistence";
|
persistenceGroupSpecifier.name = @"Persistence";
|
||||||
|
@ -294,7 +293,7 @@ extern NSUserDefaults* trollStoreUserDefaults(void);
|
||||||
[_specifiers addObject:installAlertConfigurationSpecifier];
|
[_specifiers addObject:installAlertConfigurationSpecifier];
|
||||||
|
|
||||||
PSSpecifier* otherGroupSpecifier = [PSSpecifier emptyGroupSpecifier];
|
PSSpecifier* otherGroupSpecifier = [PSSpecifier emptyGroupSpecifier];
|
||||||
[otherGroupSpecifier setProperty:[NSString stringWithFormat:@"TrollStore %@\n\n© 2022-2023 Lars Fröder (opa334)\n\nTrollStore is NOT for piracy!\n\nCredits:\nGoogle TAG, @alfiecg_dev: CoreTrust bug\n@lunotech11, @SerenaKit, @tylinux, @TheRealClarity: Various contributions\n@ProcursusTeam: uicache\n@cstar_ow: uicache", [self getTrollStoreVersion]] forKey:@"footerText"];
|
[otherGroupSpecifier setProperty:[NSString stringWithFormat:@"TrollStore %@\n\n© 2022-2023 Lars Fröder (opa334)\n\nTrollStore is NOT for piracy!\n\nCredits:\nGoogle TAG, @alfiecg_dev: CoreTrust bug\n@lunotech11, @SerenaKit, @tylinux, @TheRealClarity: Various contributions\n@ProcursusTeam: uicache, ldid\n@cstar_ow: uicache\n@saurik: ldid", [self getTrollStoreVersion]] forKey:@"footerText"];
|
||||||
[_specifiers addObject:otherGroupSpecifier];
|
[_specifiers addObject:otherGroupSpecifier];
|
||||||
|
|
||||||
PSSpecifier* advancedLinkSpecifier = [PSSpecifier preferenceSpecifierNamed:@"Advanced"
|
PSSpecifier* advancedLinkSpecifier = [PSSpecifier preferenceSpecifierNamed:@"Advanced"
|
||||||
|
|
Loading…
Reference in New Issue