summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSam Bingner <sam@bingner.com>2019-11-11 14:44:11 -1000
committerSam Bingner <sam@bingner.com>2019-11-11 14:44:11 -1000
commitc45c6115630de10e704beb5bbfdbd0db7900b97e (patch)
treed074d7eb4fc59151e95cf35aee3322a0e5815544
parent464dbc1dfa75123c4cf3fa1bff535d4c1d9cb480 (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 3210d92..4622588 100644
--- a/MobileCydia.mm
+++ b/MobileCydia.mm
@@ -9487,8 +9487,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 41746b3..b422338 100644
--- a/postinst.mm
+++ b/postinst.mm
@@ -266,8 +266,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];
} else {
[[NSString stringWithFormat:@
@@ -276,8 +277,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];
}