├── .gitattributes ├── .gitignore ├── LICENSE ├── README.md ├── Special Categories Guide.txt ├── SpecialCategories.py ├── SpecialCategoriesDefault.py ├── SystemNames.py ├── SystemNamesDefault.py ├── gatelib.py ├── icon.ico ├── main.py ├── requirements.txt ├── screenshots └── screenshot 1.png └── tools ├── UnRAR-license.txt └── UnRAR.exe /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mode8fx/EzRO-gui/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mode8fx/EzRO-gui/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mode8fx/EzRO-gui/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mode8fx/EzRO-gui/HEAD/README.md -------------------------------------------------------------------------------- /Special Categories Guide.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mode8fx/EzRO-gui/HEAD/Special Categories Guide.txt -------------------------------------------------------------------------------- /SpecialCategories.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mode8fx/EzRO-gui/HEAD/SpecialCategories.py -------------------------------------------------------------------------------- /SpecialCategoriesDefault.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mode8fx/EzRO-gui/HEAD/SpecialCategoriesDefault.py -------------------------------------------------------------------------------- /SystemNames.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mode8fx/EzRO-gui/HEAD/SystemNames.py -------------------------------------------------------------------------------- /SystemNamesDefault.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mode8fx/EzRO-gui/HEAD/SystemNamesDefault.py -------------------------------------------------------------------------------- /gatelib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mode8fx/EzRO-gui/HEAD/gatelib.py -------------------------------------------------------------------------------- /icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mode8fx/EzRO-gui/HEAD/icon.ico -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mode8fx/EzRO-gui/HEAD/main.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mode8fx/EzRO-gui/HEAD/requirements.txt -------------------------------------------------------------------------------- /screenshots/screenshot 1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mode8fx/EzRO-gui/HEAD/screenshots/screenshot 1.png -------------------------------------------------------------------------------- /tools/UnRAR-license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mode8fx/EzRO-gui/HEAD/tools/UnRAR-license.txt -------------------------------------------------------------------------------- /tools/UnRAR.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mode8fx/EzRO-gui/HEAD/tools/UnRAR.exe --------------------------------------------------------------------------------