├── .github └── workflows │ ├── actions-updater.yml │ └── automations.yml ├── .gitignore ├── CNAME ├── CydiaIcon.png ├── CydiaIcon@2x.png ├── CydiaIcon@3x.png ├── Packages ├── Packages.bz2 ├── Packages.gz ├── Packages.lzma ├── Packages.xz ├── Packages.zst ├── README.md ├── Release ├── Release.gpg ├── css ├── style.css └── style.min.css ├── debs ├── com.redenticdev.appmore_0.0.9_iphoneos-arm.deb ├── com.redenticdev.appmore_1.0.0_iphoneos-arm.deb ├── com.redenticdev.fastlpm_1.0.1_iphoneos-arm.deb ├── com.redenticdev.fastlpm_1.1.0_iphoneos-arm.deb ├── com.redenticdev.fastlpm_1.1.1_iphoneos-arm.deb ├── com.redenticdev.fastlpm_1.1.2_iphoneos-arm.deb ├── com.redenticdev.fastlpm_1.1.3_iphoneos-arm.deb ├── com.redenticdev.respringpack_1.0.0_iphoneos-arm.deb ├── com.redenticdev.respringpack_1.1.0_iphoneos-arm.deb ├── com.redenticdev.respringpack_1.2.0_iphoneos-arm.deb ├── com.redenticdev.sbcolors_1.0.0_iphoneos-arm.deb ├── com.redenticdev.sbcolors_1.0.1_iphoneos-arm.deb ├── com.redenticdev.swrespringpack_1.0.0_iphoneos-arm.deb └── com.redenticdev.swrespringpack_1.1.0_iphoneos-arm.deb ├── depictions ├── changelog │ └── index.html ├── com.redenticdev.appmore │ ├── base.json │ ├── icon.png │ ├── info.xml │ └── sileo.json ├── com.redenticdev.fastlpm │ ├── 1.png │ ├── 2.png │ ├── 3.png │ ├── banner.png │ ├── base.json │ ├── icon.png │ ├── info.xml │ └── sileo.json ├── com.redenticdev.respringpack │ ├── 1.png │ ├── 2.png │ ├── banner.png │ ├── base.json │ ├── icon.png │ ├── info.xml │ └── sileo.json ├── com.redenticdev.sbcolors │ ├── 1.png │ ├── 2.png │ ├── 3.png │ ├── 4.png │ ├── banner.png │ ├── base.json │ ├── icon.png │ ├── info.xml │ └── sileo.json ├── com.redenticdev.swrespringpack │ ├── 1.png │ ├── 2.png │ ├── base.json │ ├── icon.png │ ├── info.xml │ └── sileo.json ├── css │ ├── main.css │ └── main.min.css ├── index.html └── js │ ├── setChangelog.js │ ├── setChangelog.min.js │ ├── setDepiction.js │ └── setDepiction.min.js ├── index.html ├── js ├── devices.js ├── devices.min.js ├── script.js ├── script.min.js ├── scrollToTop.js └── scrollToTop.min.js └── sileo-featured.json /.github/workflows/actions-updater.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedenticDev/Repo/HEAD/.github/workflows/actions-updater.yml -------------------------------------------------------------------------------- /.github/workflows/automations.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedenticDev/Repo/HEAD/.github/workflows/automations.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | -------------------------------------------------------------------------------- /CNAME: -------------------------------------------------------------------------------- 1 | redentic.dev -------------------------------------------------------------------------------- /CydiaIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedenticDev/Repo/HEAD/CydiaIcon.png -------------------------------------------------------------------------------- /CydiaIcon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedenticDev/Repo/HEAD/CydiaIcon@2x.png -------------------------------------------------------------------------------- /CydiaIcon@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedenticDev/Repo/HEAD/CydiaIcon@3x.png -------------------------------------------------------------------------------- /Packages: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedenticDev/Repo/HEAD/Packages -------------------------------------------------------------------------------- /Packages.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedenticDev/Repo/HEAD/Packages.bz2 -------------------------------------------------------------------------------- /Packages.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedenticDev/Repo/HEAD/Packages.gz -------------------------------------------------------------------------------- /Packages.lzma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedenticDev/Repo/HEAD/Packages.lzma -------------------------------------------------------------------------------- /Packages.xz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedenticDev/Repo/HEAD/Packages.xz -------------------------------------------------------------------------------- /Packages.zst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedenticDev/Repo/HEAD/Packages.zst -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedenticDev/Repo/HEAD/README.md -------------------------------------------------------------------------------- /Release: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedenticDev/Repo/HEAD/Release -------------------------------------------------------------------------------- /Release.gpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedenticDev/Repo/HEAD/Release.gpg -------------------------------------------------------------------------------- /css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedenticDev/Repo/HEAD/css/style.css -------------------------------------------------------------------------------- /css/style.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedenticDev/Repo/HEAD/css/style.min.css -------------------------------------------------------------------------------- /debs/com.redenticdev.appmore_0.0.9_iphoneos-arm.deb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedenticDev/Repo/HEAD/debs/com.redenticdev.appmore_0.0.9_iphoneos-arm.deb -------------------------------------------------------------------------------- /debs/com.redenticdev.appmore_1.0.0_iphoneos-arm.deb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedenticDev/Repo/HEAD/debs/com.redenticdev.appmore_1.0.0_iphoneos-arm.deb -------------------------------------------------------------------------------- /debs/com.redenticdev.fastlpm_1.0.1_iphoneos-arm.deb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedenticDev/Repo/HEAD/debs/com.redenticdev.fastlpm_1.0.1_iphoneos-arm.deb -------------------------------------------------------------------------------- /debs/com.redenticdev.fastlpm_1.1.0_iphoneos-arm.deb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedenticDev/Repo/HEAD/debs/com.redenticdev.fastlpm_1.1.0_iphoneos-arm.deb -------------------------------------------------------------------------------- /debs/com.redenticdev.fastlpm_1.1.1_iphoneos-arm.deb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedenticDev/Repo/HEAD/debs/com.redenticdev.fastlpm_1.1.1_iphoneos-arm.deb -------------------------------------------------------------------------------- /debs/com.redenticdev.fastlpm_1.1.2_iphoneos-arm.deb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedenticDev/Repo/HEAD/debs/com.redenticdev.fastlpm_1.1.2_iphoneos-arm.deb -------------------------------------------------------------------------------- /debs/com.redenticdev.fastlpm_1.1.3_iphoneos-arm.deb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedenticDev/Repo/HEAD/debs/com.redenticdev.fastlpm_1.1.3_iphoneos-arm.deb -------------------------------------------------------------------------------- /debs/com.redenticdev.respringpack_1.0.0_iphoneos-arm.deb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedenticDev/Repo/HEAD/debs/com.redenticdev.respringpack_1.0.0_iphoneos-arm.deb -------------------------------------------------------------------------------- /debs/com.redenticdev.respringpack_1.1.0_iphoneos-arm.deb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedenticDev/Repo/HEAD/debs/com.redenticdev.respringpack_1.1.0_iphoneos-arm.deb -------------------------------------------------------------------------------- /debs/com.redenticdev.respringpack_1.2.0_iphoneos-arm.deb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedenticDev/Repo/HEAD/debs/com.redenticdev.respringpack_1.2.0_iphoneos-arm.deb -------------------------------------------------------------------------------- /debs/com.redenticdev.sbcolors_1.0.0_iphoneos-arm.deb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedenticDev/Repo/HEAD/debs/com.redenticdev.sbcolors_1.0.0_iphoneos-arm.deb -------------------------------------------------------------------------------- /debs/com.redenticdev.sbcolors_1.0.1_iphoneos-arm.deb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedenticDev/Repo/HEAD/debs/com.redenticdev.sbcolors_1.0.1_iphoneos-arm.deb -------------------------------------------------------------------------------- /debs/com.redenticdev.swrespringpack_1.0.0_iphoneos-arm.deb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedenticDev/Repo/HEAD/debs/com.redenticdev.swrespringpack_1.0.0_iphoneos-arm.deb -------------------------------------------------------------------------------- /debs/com.redenticdev.swrespringpack_1.1.0_iphoneos-arm.deb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedenticDev/Repo/HEAD/debs/com.redenticdev.swrespringpack_1.1.0_iphoneos-arm.deb -------------------------------------------------------------------------------- /depictions/changelog/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedenticDev/Repo/HEAD/depictions/changelog/index.html -------------------------------------------------------------------------------- /depictions/com.redenticdev.appmore/base.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedenticDev/Repo/HEAD/depictions/com.redenticdev.appmore/base.json -------------------------------------------------------------------------------- /depictions/com.redenticdev.appmore/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedenticDev/Repo/HEAD/depictions/com.redenticdev.appmore/icon.png -------------------------------------------------------------------------------- /depictions/com.redenticdev.appmore/info.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedenticDev/Repo/HEAD/depictions/com.redenticdev.appmore/info.xml -------------------------------------------------------------------------------- /depictions/com.redenticdev.appmore/sileo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedenticDev/Repo/HEAD/depictions/com.redenticdev.appmore/sileo.json -------------------------------------------------------------------------------- /depictions/com.redenticdev.fastlpm/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedenticDev/Repo/HEAD/depictions/com.redenticdev.fastlpm/1.png -------------------------------------------------------------------------------- /depictions/com.redenticdev.fastlpm/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedenticDev/Repo/HEAD/depictions/com.redenticdev.fastlpm/2.png -------------------------------------------------------------------------------- /depictions/com.redenticdev.fastlpm/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedenticDev/Repo/HEAD/depictions/com.redenticdev.fastlpm/3.png -------------------------------------------------------------------------------- /depictions/com.redenticdev.fastlpm/banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedenticDev/Repo/HEAD/depictions/com.redenticdev.fastlpm/banner.png -------------------------------------------------------------------------------- /depictions/com.redenticdev.fastlpm/base.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedenticDev/Repo/HEAD/depictions/com.redenticdev.fastlpm/base.json -------------------------------------------------------------------------------- /depictions/com.redenticdev.fastlpm/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedenticDev/Repo/HEAD/depictions/com.redenticdev.fastlpm/icon.png -------------------------------------------------------------------------------- /depictions/com.redenticdev.fastlpm/info.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedenticDev/Repo/HEAD/depictions/com.redenticdev.fastlpm/info.xml -------------------------------------------------------------------------------- /depictions/com.redenticdev.fastlpm/sileo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedenticDev/Repo/HEAD/depictions/com.redenticdev.fastlpm/sileo.json -------------------------------------------------------------------------------- /depictions/com.redenticdev.respringpack/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedenticDev/Repo/HEAD/depictions/com.redenticdev.respringpack/1.png -------------------------------------------------------------------------------- /depictions/com.redenticdev.respringpack/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedenticDev/Repo/HEAD/depictions/com.redenticdev.respringpack/2.png -------------------------------------------------------------------------------- /depictions/com.redenticdev.respringpack/banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedenticDev/Repo/HEAD/depictions/com.redenticdev.respringpack/banner.png -------------------------------------------------------------------------------- /depictions/com.redenticdev.respringpack/base.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedenticDev/Repo/HEAD/depictions/com.redenticdev.respringpack/base.json -------------------------------------------------------------------------------- /depictions/com.redenticdev.respringpack/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedenticDev/Repo/HEAD/depictions/com.redenticdev.respringpack/icon.png -------------------------------------------------------------------------------- /depictions/com.redenticdev.respringpack/info.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedenticDev/Repo/HEAD/depictions/com.redenticdev.respringpack/info.xml -------------------------------------------------------------------------------- /depictions/com.redenticdev.respringpack/sileo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedenticDev/Repo/HEAD/depictions/com.redenticdev.respringpack/sileo.json -------------------------------------------------------------------------------- /depictions/com.redenticdev.sbcolors/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedenticDev/Repo/HEAD/depictions/com.redenticdev.sbcolors/1.png -------------------------------------------------------------------------------- /depictions/com.redenticdev.sbcolors/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedenticDev/Repo/HEAD/depictions/com.redenticdev.sbcolors/2.png -------------------------------------------------------------------------------- /depictions/com.redenticdev.sbcolors/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedenticDev/Repo/HEAD/depictions/com.redenticdev.sbcolors/3.png -------------------------------------------------------------------------------- /depictions/com.redenticdev.sbcolors/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedenticDev/Repo/HEAD/depictions/com.redenticdev.sbcolors/4.png -------------------------------------------------------------------------------- /depictions/com.redenticdev.sbcolors/banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedenticDev/Repo/HEAD/depictions/com.redenticdev.sbcolors/banner.png -------------------------------------------------------------------------------- /depictions/com.redenticdev.sbcolors/base.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedenticDev/Repo/HEAD/depictions/com.redenticdev.sbcolors/base.json -------------------------------------------------------------------------------- /depictions/com.redenticdev.sbcolors/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedenticDev/Repo/HEAD/depictions/com.redenticdev.sbcolors/icon.png -------------------------------------------------------------------------------- /depictions/com.redenticdev.sbcolors/info.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedenticDev/Repo/HEAD/depictions/com.redenticdev.sbcolors/info.xml -------------------------------------------------------------------------------- /depictions/com.redenticdev.sbcolors/sileo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedenticDev/Repo/HEAD/depictions/com.redenticdev.sbcolors/sileo.json -------------------------------------------------------------------------------- /depictions/com.redenticdev.swrespringpack/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedenticDev/Repo/HEAD/depictions/com.redenticdev.swrespringpack/1.png -------------------------------------------------------------------------------- /depictions/com.redenticdev.swrespringpack/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedenticDev/Repo/HEAD/depictions/com.redenticdev.swrespringpack/2.png -------------------------------------------------------------------------------- /depictions/com.redenticdev.swrespringpack/base.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedenticDev/Repo/HEAD/depictions/com.redenticdev.swrespringpack/base.json -------------------------------------------------------------------------------- /depictions/com.redenticdev.swrespringpack/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedenticDev/Repo/HEAD/depictions/com.redenticdev.swrespringpack/icon.png -------------------------------------------------------------------------------- /depictions/com.redenticdev.swrespringpack/info.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedenticDev/Repo/HEAD/depictions/com.redenticdev.swrespringpack/info.xml -------------------------------------------------------------------------------- /depictions/com.redenticdev.swrespringpack/sileo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedenticDev/Repo/HEAD/depictions/com.redenticdev.swrespringpack/sileo.json -------------------------------------------------------------------------------- /depictions/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedenticDev/Repo/HEAD/depictions/css/main.css -------------------------------------------------------------------------------- /depictions/css/main.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedenticDev/Repo/HEAD/depictions/css/main.min.css -------------------------------------------------------------------------------- /depictions/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedenticDev/Repo/HEAD/depictions/index.html -------------------------------------------------------------------------------- /depictions/js/setChangelog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedenticDev/Repo/HEAD/depictions/js/setChangelog.js -------------------------------------------------------------------------------- /depictions/js/setChangelog.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedenticDev/Repo/HEAD/depictions/js/setChangelog.min.js -------------------------------------------------------------------------------- /depictions/js/setDepiction.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedenticDev/Repo/HEAD/depictions/js/setDepiction.js -------------------------------------------------------------------------------- /depictions/js/setDepiction.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedenticDev/Repo/HEAD/depictions/js/setDepiction.min.js -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedenticDev/Repo/HEAD/index.html -------------------------------------------------------------------------------- /js/devices.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedenticDev/Repo/HEAD/js/devices.js -------------------------------------------------------------------------------- /js/devices.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedenticDev/Repo/HEAD/js/devices.min.js -------------------------------------------------------------------------------- /js/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedenticDev/Repo/HEAD/js/script.js -------------------------------------------------------------------------------- /js/script.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedenticDev/Repo/HEAD/js/script.min.js -------------------------------------------------------------------------------- /js/scrollToTop.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedenticDev/Repo/HEAD/js/scrollToTop.js -------------------------------------------------------------------------------- /js/scrollToTop.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedenticDev/Repo/HEAD/js/scrollToTop.min.js -------------------------------------------------------------------------------- /sileo-featured.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedenticDev/Repo/HEAD/sileo-featured.json --------------------------------------------------------------------------------