diff options
-rwxr-xr-x | cydia/depictions/index.html | 9 | ||||
-rwxr-xr-x | cydia/depictions/packages/com.fivepixels.mariomaps.json | 36 |
2 files changed, 44 insertions, 1 deletions
diff --git a/cydia/depictions/index.html b/cydia/depictions/index.html index 9c4060f..07b41d1 100755 --- a/cydia/depictions/index.html +++ b/cydia/depictions/index.html @@ -1,7 +1,7 @@ <!DOCTYPE html> <html lang="en"> <head> - <title>FivePixels Cydia Repository</title> + <title>Cydia Tweak</title> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <link rel="icon" href="/repo/CydiaIcon.png"> @@ -105,6 +105,13 @@ var infolinks_wsid = 1; <script> $(document).ready(function() { + var dPackage = getParameterByName("p"); + if (!dPackage) { + $(".package-error").text("This package doesn't seem to exist!").css("display", "block"); + $(".package-info").css("display", "none"); + $(".package-name").text("Not Found"); + return; + } $.getJSON("packages/" + dPackage + ".json", function(data) { document.title = data.name + " by " + data.author; diff --git a/cydia/depictions/packages/com.fivepixels.mariomaps.json b/cydia/depictions/packages/com.fivepixels.mariomaps.json new file mode 100755 index 0000000..d264fb9 --- /dev/null +++ b/cydia/depictions/packages/com.fivepixels.mariomaps.json @@ -0,0 +1,36 @@ +{ + "name": "Appster", + "package": "com.jake0oo0.appster", + "author": "Jake0oo0", + "version": "0.0.7", + "description": "View and export important data and info from your iDevice", + "changelog": { + "0.0.1": [ + "Initial Alpha Release", + "View & Export App Data", + "View & Export Tweak Data" + ], + "0.0.3": [ + "Add support for new iOS 9 applications" + ], + "0.0.4": [ + "Retrieve iTunes metadata for applications" + ], + "0.0.6": [ + "Add support for exporting sources with tweaks" + ], + "0.0.7": [ + "Major work on exporting messages - new view & export button" + ] + }, + "screenshots": { + "appster1.png": "", + "appster2.png": "", + "appster3.png": "", + "appster4.png": "", + "appster5.png": "" + }, + "links": { + "<span class=\"glyphicon glyphicon-heart\"></span> My Twitter": "https://twitter.com/itsjake88" + } +} |