summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSam Bingner <sam@bingner.com>2019-11-11 14:44:11 -1000
committerSam Bingner <sam@bingner.com>2020-04-08 13:57:35 -1000
commitf19f431b30ca1cf0c4a4a7ac8d1455c9cec06359 (patch)
tree4f4f4c1c08754fef3c4bb0385765fdc95db7d479
parentcfc08167cf9acde092a020ed313e25201e2a9695 (diff)
Fix chariz URL and ... add packix
-rw-r--r--MobileCydia.mm3
-rw-r--r--Sources.list/cydia.list3
-rw-r--r--postinst.mm6
3 files changed, 8 insertions, 4 deletions
diff --git a/MobileCydia.mm b/MobileCydia.mm
index 0e94ec3..5b32ed3 100644
--- a/MobileCydia.mm
+++ b/MobileCydia.mm
@@ -9536,8 +9536,9 @@ int main(int argc, char *argv[]) {
CydiaAddSource(@"http://apt.thebigboss.org/repofiles/cydia/", @"stable", [NSMutableArray arrayWithObject:@"main"]);
CydiaAddSource(@"http://apt.modmyi.com/", @"stable", [NSMutableArray arrayWithObject:@"main"]);
CydiaAddSource(@"http://cydia.zodttd.com/repo/cydia/", @"stable", [NSMutableArray arrayWithObject:@"main"]);
- CydiaAddSource(@"https://repo.chariz.io/", @"./");
+ CydiaAddSource(@"https://repo.chariz.com/", @"./");
CydiaAddSource(@"https://repo.dynastic.co/", @"./");
+ CydiaAddSource(@"https://repo.packix.com/", @"./");
Version_ = [NSNumber numberWithUnsignedInt:1];
diff --git a/Sources.list/cydia.list b/Sources.list/cydia.list
index 2f8e565..94f4558 100644
--- a/Sources.list/cydia.list
+++ b/Sources.list/cydia.list
@@ -2,5 +2,6 @@ deb https://apt.bingner.com/ ./
deb http://apt.thebigboss.org/repofiles/cydia/ stable main
deb http://cydia.zodttd.com/repo/cydia/ stable main
deb http://apt.modmyi.com/ stable main
-deb https://repo.chariz.io/ ./
+deb https://repo.chariz.com/ ./
deb https://repo.dynastic.co/ ./
+deb https://repo.packix.com/ ./
diff --git a/postinst.mm b/postinst.mm
index 014fa60..e8d09fb 100644
--- a/postinst.mm
+++ b/postinst.mm
@@ -264,8 +264,9 @@ int main(int argc, const char *argv[]) {
"deb http://apt.thebigboss.org/repofiles/cydia/ stable main\n"
"deb http://cydia.zodttd.com/repo/cydia/ stable main\n"
"deb http://apt.modmyi.com/ stable main\n"
- "deb https://repo.chariz.io/ ./\n"
+ "deb https://repo.chariz.com/ ./\n"
"deb https://repo.dynastic.co/ ./\n"
+ "deb https://repo.packix.com/ ./\n"
] writeToFile:@ CYDIA_LIST atomically:YES];
} else {
[[NSString stringWithFormat:@
@@ -274,8 +275,9 @@ int main(int argc, const char *argv[]) {
"deb http://apt.thebigboss.org/repofiles/cydia/ stable main\n"
"deb http://cydia.zodttd.com/repo/cydia/ stable main\n"
"deb http://apt.modmyi.com/ stable main\n"
- "deb https://repo.chariz.io/ ./\n"
+ "deb https://repo.chariz.com/ ./\n"
"deb https://repo.dynastic.co/ ./\n"
+ "deb https://repo.packix.com/ ./\n"
, kCFCoreFoundationVersionNumber] writeToFile:@ CYDIA_LIST atomically:YES];
}