├── .github ├── FUNDING.yml └── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── .gitignore ├── .info ├── .shellcheckrc ├── README.md ├── config ├── .DIALOGRC_DARK └── .DIALOGRC_LIGHT ├── install.sh ├── main.sh ├── modules ├── app │ ├── antisplit.sh │ ├── delete.sh │ ├── download.sh │ ├── import.sh │ ├── select.sh │ └── version.sh ├── assets.sh ├── constants.sh ├── json │ ├── api.sh │ ├── apps.sh │ ├── cli.sh │ ├── constants.sh │ ├── options.sh │ ├── parse.sh │ └── patches.sh ├── patch.sh ├── preferences.sh ├── source.sh ├── system │ ├── install.sh │ └── root.sh ├── utils.sh └── workflow.sh ├── revancify ├── root ├── mount.sh └── umount.sh └── sources.json /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: 'decipher3114' 2 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decipher3114/Revancify/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decipher3114/Revancify/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decipher3114/Revancify/HEAD/.gitignore -------------------------------------------------------------------------------- /.info: -------------------------------------------------------------------------------- 1 | VERSION='v2.7.2' 2 | -------------------------------------------------------------------------------- /.shellcheckrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decipher3114/Revancify/HEAD/.shellcheckrc -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decipher3114/Revancify/HEAD/README.md -------------------------------------------------------------------------------- /config/.DIALOGRC_DARK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decipher3114/Revancify/HEAD/config/.DIALOGRC_DARK -------------------------------------------------------------------------------- /config/.DIALOGRC_LIGHT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decipher3114/Revancify/HEAD/config/.DIALOGRC_LIGHT -------------------------------------------------------------------------------- /install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decipher3114/Revancify/HEAD/install.sh -------------------------------------------------------------------------------- /main.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decipher3114/Revancify/HEAD/main.sh -------------------------------------------------------------------------------- /modules/app/antisplit.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decipher3114/Revancify/HEAD/modules/app/antisplit.sh -------------------------------------------------------------------------------- /modules/app/delete.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decipher3114/Revancify/HEAD/modules/app/delete.sh -------------------------------------------------------------------------------- /modules/app/download.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decipher3114/Revancify/HEAD/modules/app/download.sh -------------------------------------------------------------------------------- /modules/app/import.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decipher3114/Revancify/HEAD/modules/app/import.sh -------------------------------------------------------------------------------- /modules/app/select.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decipher3114/Revancify/HEAD/modules/app/select.sh -------------------------------------------------------------------------------- /modules/app/version.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decipher3114/Revancify/HEAD/modules/app/version.sh -------------------------------------------------------------------------------- /modules/assets.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decipher3114/Revancify/HEAD/modules/assets.sh -------------------------------------------------------------------------------- /modules/constants.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decipher3114/Revancify/HEAD/modules/constants.sh -------------------------------------------------------------------------------- /modules/json/api.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decipher3114/Revancify/HEAD/modules/json/api.sh -------------------------------------------------------------------------------- /modules/json/apps.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decipher3114/Revancify/HEAD/modules/json/apps.sh -------------------------------------------------------------------------------- /modules/json/cli.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decipher3114/Revancify/HEAD/modules/json/cli.sh -------------------------------------------------------------------------------- /modules/json/constants.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decipher3114/Revancify/HEAD/modules/json/constants.sh -------------------------------------------------------------------------------- /modules/json/options.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decipher3114/Revancify/HEAD/modules/json/options.sh -------------------------------------------------------------------------------- /modules/json/parse.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decipher3114/Revancify/HEAD/modules/json/parse.sh -------------------------------------------------------------------------------- /modules/json/patches.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decipher3114/Revancify/HEAD/modules/json/patches.sh -------------------------------------------------------------------------------- /modules/patch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decipher3114/Revancify/HEAD/modules/patch.sh -------------------------------------------------------------------------------- /modules/preferences.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decipher3114/Revancify/HEAD/modules/preferences.sh -------------------------------------------------------------------------------- /modules/source.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decipher3114/Revancify/HEAD/modules/source.sh -------------------------------------------------------------------------------- /modules/system/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decipher3114/Revancify/HEAD/modules/system/install.sh -------------------------------------------------------------------------------- /modules/system/root.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decipher3114/Revancify/HEAD/modules/system/root.sh -------------------------------------------------------------------------------- /modules/utils.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decipher3114/Revancify/HEAD/modules/utils.sh -------------------------------------------------------------------------------- /modules/workflow.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decipher3114/Revancify/HEAD/modules/workflow.sh -------------------------------------------------------------------------------- /revancify: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decipher3114/Revancify/HEAD/revancify -------------------------------------------------------------------------------- /root/mount.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decipher3114/Revancify/HEAD/root/mount.sh -------------------------------------------------------------------------------- /root/umount.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decipher3114/Revancify/HEAD/root/umount.sh -------------------------------------------------------------------------------- /sources.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decipher3114/Revancify/HEAD/sources.json --------------------------------------------------------------------------------