├── .github └── ISSUE_TEMPLATE │ └── bug_report.md ├── .gitignore ├── CydiaIcon.png ├── LICENSE ├── Packages ├── Packages.bz2 ├── README.md ├── Release ├── debs ├── com.supermamon.newpackage_2.0.0-1_iphoneos-arm.deb └── com.supermamon.oldpackage_1.0.0-1_iphoneos-arm.deb ├── depictions ├── changelog.html ├── com.supermamon.newpackage │ ├── changelog.xml │ ├── info.xml │ └── screenshots │ │ ├── cydia.jpg │ │ ├── shot1-thumb.jpg │ │ └── shot1.jpg ├── com.supermamon.oldpackage │ ├── changelog.xml │ └── info.xml ├── index.html ├── js │ ├── content-blocks-changelog.js │ ├── content-blocks-index.js │ ├── content-blocks-screenshots.js │ ├── data-loader-engine.js │ ├── ios_version_check.js │ └── jquery.querystring.js ├── screenshots.html └── style.css ├── index.html └── repo.xml /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermamon/Reposi3/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store -------------------------------------------------------------------------------- /CydiaIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermamon/Reposi3/HEAD/CydiaIcon.png -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermamon/Reposi3/HEAD/LICENSE -------------------------------------------------------------------------------- /Packages: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermamon/Reposi3/HEAD/Packages -------------------------------------------------------------------------------- /Packages.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermamon/Reposi3/HEAD/Packages.bz2 -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermamon/Reposi3/HEAD/README.md -------------------------------------------------------------------------------- /Release: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermamon/Reposi3/HEAD/Release -------------------------------------------------------------------------------- /debs/com.supermamon.newpackage_2.0.0-1_iphoneos-arm.deb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermamon/Reposi3/HEAD/debs/com.supermamon.newpackage_2.0.0-1_iphoneos-arm.deb -------------------------------------------------------------------------------- /debs/com.supermamon.oldpackage_1.0.0-1_iphoneos-arm.deb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermamon/Reposi3/HEAD/debs/com.supermamon.oldpackage_1.0.0-1_iphoneos-arm.deb -------------------------------------------------------------------------------- /depictions/changelog.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermamon/Reposi3/HEAD/depictions/changelog.html -------------------------------------------------------------------------------- /depictions/com.supermamon.newpackage/changelog.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermamon/Reposi3/HEAD/depictions/com.supermamon.newpackage/changelog.xml -------------------------------------------------------------------------------- /depictions/com.supermamon.newpackage/info.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermamon/Reposi3/HEAD/depictions/com.supermamon.newpackage/info.xml -------------------------------------------------------------------------------- /depictions/com.supermamon.newpackage/screenshots/cydia.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermamon/Reposi3/HEAD/depictions/com.supermamon.newpackage/screenshots/cydia.jpg -------------------------------------------------------------------------------- /depictions/com.supermamon.newpackage/screenshots/shot1-thumb.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermamon/Reposi3/HEAD/depictions/com.supermamon.newpackage/screenshots/shot1-thumb.jpg -------------------------------------------------------------------------------- /depictions/com.supermamon.newpackage/screenshots/shot1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermamon/Reposi3/HEAD/depictions/com.supermamon.newpackage/screenshots/shot1.jpg -------------------------------------------------------------------------------- /depictions/com.supermamon.oldpackage/changelog.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermamon/Reposi3/HEAD/depictions/com.supermamon.oldpackage/changelog.xml -------------------------------------------------------------------------------- /depictions/com.supermamon.oldpackage/info.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermamon/Reposi3/HEAD/depictions/com.supermamon.oldpackage/info.xml -------------------------------------------------------------------------------- /depictions/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermamon/Reposi3/HEAD/depictions/index.html -------------------------------------------------------------------------------- /depictions/js/content-blocks-changelog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermamon/Reposi3/HEAD/depictions/js/content-blocks-changelog.js -------------------------------------------------------------------------------- /depictions/js/content-blocks-index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermamon/Reposi3/HEAD/depictions/js/content-blocks-index.js -------------------------------------------------------------------------------- /depictions/js/content-blocks-screenshots.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermamon/Reposi3/HEAD/depictions/js/content-blocks-screenshots.js -------------------------------------------------------------------------------- /depictions/js/data-loader-engine.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermamon/Reposi3/HEAD/depictions/js/data-loader-engine.js -------------------------------------------------------------------------------- /depictions/js/ios_version_check.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermamon/Reposi3/HEAD/depictions/js/ios_version_check.js -------------------------------------------------------------------------------- /depictions/js/jquery.querystring.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermamon/Reposi3/HEAD/depictions/js/jquery.querystring.js -------------------------------------------------------------------------------- /depictions/screenshots.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermamon/Reposi3/HEAD/depictions/screenshots.html -------------------------------------------------------------------------------- /depictions/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermamon/Reposi3/HEAD/depictions/style.css -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermamon/Reposi3/HEAD/index.html -------------------------------------------------------------------------------- /repo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermamon/Reposi3/HEAD/repo.xml --------------------------------------------------------------------------------