From 22acf4dde143d9bdd262b24ae15f0dea20c8e004 Mon Sep 17 00:00:00 2001 From: TheMasterOfMike <68412795+TheMasterOfMike@users.noreply.github.com> Date: Sun, 21 Aug 2022 22:03:18 -0500 Subject: [PATCH] [Home] Update utility source for Electra to Chimera Repo Two things: - Closes #1997 - Renames the Odyssey Repo name for Odyssey to align with what the Taurine name is (as well as what the repo is named as of now) --- .../ZBCommunitySourcesTableViewController.m | 13 +++---------- 1 file changed, 3 insertions(+), 10 deletions(-) diff --git a/Zebra/Tabs/Home/Community Sources/ZBCommunitySourcesTableViewController.m b/Zebra/Tabs/Home/Community Sources/ZBCommunitySourcesTableViewController.m index a5311041c5..6d69d0f6b0 100644 --- a/Zebra/Tabs/Home/Community Sources/ZBCommunitySourcesTableViewController.m +++ b/Zebra/Tabs/Home/Community Sources/ZBCommunitySourcesTableViewController.m @@ -160,25 +160,18 @@ - (NSArray *)utilitySources { [result addObject:dict]; NSDictionary *dict2 = @{@"type": @"utility", - @"name": @"Odyssey", + @"name": @"Odyssey Repo", @"url" : @"https://repo.theodyssey.dev/", @"icon": @"https://repo.theodyssey.dev/CydiaIcon.png"}; [result addObject:dict2]; } - else if ([ZBDevice jailbreak] == ZBJailbreakChimera) { + else if ([ZBDevice jailbreak] == ZBJailbreakChimera || [ZBDevice jailbreak] == ZBJailbreakElectra) { NSDictionary *dict = @{@"type": @"utility", - @"name": @"Chimera", + @"name": @"Chimera Repo", @"url" : @"https://repo.chimera.sh/", @"icon": @"https://repo.chimera.sh/CydiaIcon.png"}; [result addObject:dict]; } - else if ([ZBDevice jailbreak] == ZBJailbreakElectra) { // electra - NSDictionary *dict = @{@"type": @"utility", - @"name": @"Electra's iOS Utilities", - @"url" : @"https://electrarepo64.coolstar.org/", - @"icon": @"https://electrarepo64.coolstar.org/CydiaIcon.png"}; - [result addObject:dict]; - } else if ([ZBDevice bootstrap] == ZBBootstrapProcursus) { // Unknown JB but it has procursus NSDictionary *dict = @{@"type": @"utility", @"name": @"Procursus",