summaryrefslogtreecommitdiff
path: root/MobileCydia.app
diff options
context:
space:
mode:
authorGrant Paul <chpwn@chpwn.com>2010-12-30 01:52:12 -0800
committerGrant Paul <chpwn@chpwn.com>2010-12-30 01:52:12 -0800
commitf6e1356137e494e0746becbfda851c8858de1c98 (patch)
treefcdde073e8d373af8d02d3ac529fb5dbc68fec31 /MobileCydia.app
parentdf30fbeeffdde520154ea445b7ac9ff2c99ce198 (diff)
Switch to native UITabBarController handling, and rewrite URL subsystem. Also make a number of changes, creating and renaming classes for the different pages dispalyed in Cydia. Incomplete; -urlForPage methods are not implemented or used and CYSearchController does not yet exist.
Diffstat (limited to 'MobileCydia.app')
-rw-r--r--MobileCydia.app/package.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/MobileCydia.app/package.js b/MobileCydia.app/package.js
index 07f9588..2eaeb4a 100644
--- a/MobileCydia.app/package.js
+++ b/MobileCydia.app/package.js
@@ -117,7 +117,7 @@ $(function () {
}
});
- $("#settings").href("cydia://package-settings/" + idc);
+ $("#settings").href("cydia://package/" + idc + "/settings");
var mode = package.mode;
if (mode == null)
@@ -275,7 +275,7 @@ $(function () {
$("#source-name").html($.xml(source.name));
if (source.trusted)
- $("#trusted").href("cydia://package-signature/" + idc);
+ $("#trusted").href("cydia://package/" + idc + "/signature");
else
$(".trusted").addClass("deleted");