mirror of https://github.com/opa334/TrollStore.git
Fix last
This commit is contained in:
parent
e157415304
commit
fa948c0646
|
@ -46,7 +46,7 @@
|
||||||
</array>
|
</array>
|
||||||
<key>com.apple.private.amfi.developer-mode-control</key>
|
<key>com.apple.private.amfi.developer-mode-control</key>
|
||||||
<true/>
|
<true/>
|
||||||
<key>com.apple.frontboard.shutdown</key>
|
<key>com.apple.frontboard.shutdown</key>
|
||||||
<true/>
|
<true/>
|
||||||
</dict>
|
</dict>
|
||||||
</plist>
|
</plist>
|
||||||
|
|
|
@ -1068,6 +1068,7 @@ extern UIImage* imageWithSize(UIImage* image, CGSize size);
|
||||||
[description appendAttributedString:[[NSAttributedString alloc] initWithString:[NSString stringWithFormat:@"\nBundle Identifier: %@", bundleId] attributes:bodyAttributes]];
|
[description appendAttributedString:[[NSAttributedString alloc] initWithString:[NSString stringWithFormat:@"\nBundle Identifier: %@", bundleId] attributes:bodyAttributes]];
|
||||||
[description appendAttributedString:[[NSAttributedString alloc] initWithString:[NSString stringWithFormat:@"\nVersion: %@", version] attributes:bodyAttributes]];
|
[description appendAttributedString:[[NSAttributedString alloc] initWithString:[NSString stringWithFormat:@"\nVersion: %@", version] attributes:bodyAttributes]];
|
||||||
[description appendAttributedString:[[NSAttributedString alloc] initWithString:[NSString stringWithFormat:@"\nSize: %@", sizeString] attributes:bodyAttributes]];
|
[description appendAttributedString:[[NSAttributedString alloc] initWithString:[NSString stringWithFormat:@"\nSize: %@", sizeString] attributes:bodyAttributes]];
|
||||||
|
|
||||||
[description appendAttributedString:[[NSAttributedString alloc] initWithString:@"\n\nSandboxing" attributes:headerAttributes]];
|
[description appendAttributedString:[[NSAttributedString alloc] initWithString:@"\n\nSandboxing" attributes:headerAttributes]];
|
||||||
if(isUnsandboxed)
|
if(isUnsandboxed)
|
||||||
{
|
{
|
||||||
|
|
|
@ -51,7 +51,7 @@ extern NSUserDefaults* trollStoreUserDefaults(void);
|
||||||
[errorAlert addAction:forceInstallAction];
|
[errorAlert addAction:forceInstallAction];
|
||||||
|
|
||||||
[TSPresentationDelegate presentViewController:errorAlert animated:YES completion:nil];
|
[TSPresentationDelegate presentViewController:errorAlert animated:YES completion:nil];
|
||||||
} else if (ret == 180) {
|
} else if (ret == 182) {
|
||||||
// non-fatal informative message
|
// non-fatal informative message
|
||||||
UIAlertController* rebootNotification = [UIAlertController alertControllerWithTitle:@"Reboot Required" message:[error localizedDescription] preferredStyle:UIAlertControllerStyleAlert];
|
UIAlertController* rebootNotification = [UIAlertController alertControllerWithTitle:@"Reboot Required" message:[error localizedDescription] preferredStyle:UIAlertControllerStyleAlert];
|
||||||
UIAlertAction* closeAction = [UIAlertAction actionWithTitle:@"Close" style:UIAlertActionStyleDefault handler:^(UIAlertAction* action)
|
UIAlertAction* closeAction = [UIAlertAction actionWithTitle:@"Close" style:UIAlertActionStyleDefault handler:^(UIAlertAction* action)
|
||||||
|
|
Loading…
Reference in New Issue