├── .gitignore ├── LICENSE ├── README.md ├── requirements.txt ├── run.py └── src ├── core ├── core.py └── patcher.py └── utils ├── config.py └── utils.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arbitraryrw/supersu-patcher/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arbitraryrw/supersu-patcher/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arbitraryrw/supersu-patcher/HEAD/README.md -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arbitraryrw/supersu-patcher/HEAD/requirements.txt -------------------------------------------------------------------------------- /run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arbitraryrw/supersu-patcher/HEAD/run.py -------------------------------------------------------------------------------- /src/core/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arbitraryrw/supersu-patcher/HEAD/src/core/core.py -------------------------------------------------------------------------------- /src/core/patcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arbitraryrw/supersu-patcher/HEAD/src/core/patcher.py -------------------------------------------------------------------------------- /src/utils/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arbitraryrw/supersu-patcher/HEAD/src/utils/config.py -------------------------------------------------------------------------------- /src/utils/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arbitraryrw/supersu-patcher/HEAD/src/utils/utils.py --------------------------------------------------------------------------------