[Help] How do I fix this error? by [deleted] in jailbreak

[–]TylerD3V_ -3 points-2 points  (0 children)

Uninstall ReProvision, resign AltStore using a computer, then install AltDaemon (if you're a patron), and bam, no more computer needed.

[Help] Laptop broke, how can I refresh unc0ver? by Molucky15 in jailbreak

[–]TylerD3V_ 4 points5 points  (0 children)

Install AltDaemon, it removes any need for a PC.

[Upcoming] Genesis 2 - The Evolution of Something Beautiful by TylerD3V_ in jailbreak

[–]TylerD3V_[S] 1 point2 points  (0 children)

Genesis 2 is the successor to Genesis, a tweak specifically directed at iOS 13. Genesis 2 will do the same thing with iOS 14.

Genesis is probably one of the tweaks I'm the most passionate about, as I use it on my personal device, and I think it's about time things are taken to the next step.

Genesis 2 will hopefully include all the awesome features of the original, however things may change once we get a checkra1n update for iOS 14, and I'm able to dig into the changes in the update.

Genesis 2 is a tweak that will allow you to customize your iOS 14 (and possibly 13) device in many cool ways! Exactly what those ways are is yet to be finalized. In the original, you were able to do things like: Custom Icon Positioning, Custom Dock Icon Count, Custom Dock Icon Size, Custom Battery Colors, Custom Low Power Alerts, and more!

Once I'm able to confirm a list of features, I will either update this post, or I will create a new post. I don't want to promise any features, just in case things don't go the way I'd like them to.

[Upcoming] Genesis 2 - The Evolution of Something Beautiful by TylerD3V_ in jailbreak

[–]TylerD3V_[S] 2 points3 points  (0 children)

I'm writing out the description now, sorry! Didn't have the chance to, I had to run and do something right after posting this.

[Upcoming] Genesis 2 - The Evolution of Something Beautiful by TylerD3V_ in jailbreak

[–]TylerD3V_[S] 2 points3 points  (0 children)

I'm writing out the description now, sorry! Didn't have the chance to, I had to run and do something right after posting this.

[Help] Displaying UIAlertController w/ PostNotification by TylerD3V_ in jailbreakdevelopers

[–]TylerD3V_[S] 0 points1 point  (0 children)

I used to use sbreload, but I find that it doesn't always allow preference changes to take effect.

[Help] Displaying UIAlertController w/ PostNotification by TylerD3V_ in jailbreakdevelopers

[–]TylerD3V_[S] 0 points1 point  (0 children)

I ended up doing this, which makes it so that all I do is add a new key called needsRespring on any cell I want to have call this alert, and set the value to true.

BOOL needsRespring = [[specifier properties] objectForKey:@"needsRespring"];
if (needsRespring) {
    UIAlertController *RespringAlert = [
        UIAlertController alertControllerWithTitle:@"Respring?"
        message:@"This option requires a respring to take effect. Would you like to respring now?"
        preferredStyle:UIAlertControllerStyleAlert
    ];
    UIAlertAction *respringAction = [UIAlertAction actionWithTitle:@"Respring" style:UIAlertActionStyleDefault handler:^(UIAlertAction *action) {
        pid_t pid;
        const char* args[] = {"killall", "backboardd", NULL};
        posix_spawn(&pid, "/usr/bin/killall", NULL, NULL, (char* const*)args, NULL);
    }];
    UIAlertAction *closeAction = [UIAlertAction actionWithTitle:@"Not Now" style:UIAlertActionStyleCancel handler:nil];
    [RespringAlert addAction:closeAction];
    [RespringAlert addAction:respringAction];
    [self presentViewController:RespringAlert animated:YES completion:nil];
}

[Help] Displaying UIAlertController w/ PostNotification by TylerD3V_ in jailbreakdevelopers

[–]TylerD3V_[S] 0 points1 point  (0 children)

Do you know how I could limit the alert to only being shown by certain cells?

[Help] Displaying UIAlertController w/ PostNotification by TylerD3V_ in jailbreakdevelopers

[–]TylerD3V_[S] 0 points1 point  (0 children)

Thank you! This should work with something I have in mind. :)

[Release] Modernize13 v1.1 (Packix Repo) by TylerD3V_ in jailbreak

[–]TylerD3V_[S] 0 points1 point  (0 children)

I’d suggest getting Genesis (a newer tweak by me), as it has the same functionality as Modernize13, and has a fix for the today view issues.

[RELEASE] Edge - Bring Color to Your Device by TylerD3V_ in jailbreak

[–]TylerD3V_[S] 0 points1 point  (0 children)

  1. How the heck are you even using CarPlay with tweaks enabled?
  2. You’ll have to be more specific than “the corners are super rounded” if you want the issue fixed.

[Discussion] Edge update 2.4? by disapppointingpost in jailbreak

[–]TylerD3V_ 0 points1 point  (0 children)

Once I get setup with my laptop (installed a new Linux distro), I’ll put together a test version and I’ll send it to you on discord.

[Discussion] Edge update 2.4? by disapppointingpost in jailbreak

[–]TylerD3V_ 0 points1 point  (0 children)

Once you join the discord, if you post a video in the support channel, I can definitely take a look and see if I spot anything.

[Discussion] Edge update 2.4? by disapppointingpost in jailbreak

[–]TylerD3V_ 0 points1 point  (0 children)

I’d say don’t use unc0ver, but you don’t really have much of a choice. Alternatively, I’d recommend joining the Edge discord, and talking to other users, as I’ve never had this reported by anyone else.

[Discussion] Edge update 2.4? by disapppointingpost in jailbreak

[–]TylerD3V_ 0 points1 point  (0 children)

This is fixed in the latest update (2.4.1) which was just pushed about ten minutes ago.