├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── config.yml │ └── feature_request.md └── workflows │ └── make-dist.yml ├── .gitignore ├── HiyaCFW_Helper.py ├── LICENSE ├── README.md ├── launchers ├── AUS ├── CHN ├── EUR ├── JPN ├── KOR └── USA ├── requirements.txt └── tools ├── Darwin ├── 7za ├── fatcat ├── ndsblc └── twltool ├── Linux ├── 7za ├── fatcat ├── ndsblc └── twltool └── Windows ├── 7za.exe └── fatcat.exe /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondul/HiyaCFW-Helper/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondul/HiyaCFW-Helper/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondul/HiyaCFW-Helper/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/workflows/make-dist.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondul/HiyaCFW-Helper/HEAD/.github/workflows/make-dist.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondul/HiyaCFW-Helper/HEAD/.gitignore -------------------------------------------------------------------------------- /HiyaCFW_Helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondul/HiyaCFW-Helper/HEAD/HiyaCFW_Helper.py -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondul/HiyaCFW-Helper/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondul/HiyaCFW-Helper/HEAD/README.md -------------------------------------------------------------------------------- /launchers/AUS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondul/HiyaCFW-Helper/HEAD/launchers/AUS -------------------------------------------------------------------------------- /launchers/CHN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondul/HiyaCFW-Helper/HEAD/launchers/CHN -------------------------------------------------------------------------------- /launchers/EUR: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondul/HiyaCFW-Helper/HEAD/launchers/EUR -------------------------------------------------------------------------------- /launchers/JPN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondul/HiyaCFW-Helper/HEAD/launchers/JPN -------------------------------------------------------------------------------- /launchers/KOR: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondul/HiyaCFW-Helper/HEAD/launchers/KOR -------------------------------------------------------------------------------- /launchers/USA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondul/HiyaCFW-Helper/HEAD/launchers/USA -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | certifi 2 | tkinter 3 | -------------------------------------------------------------------------------- /tools/Darwin/7za: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondul/HiyaCFW-Helper/HEAD/tools/Darwin/7za -------------------------------------------------------------------------------- /tools/Darwin/fatcat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondul/HiyaCFW-Helper/HEAD/tools/Darwin/fatcat -------------------------------------------------------------------------------- /tools/Darwin/ndsblc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondul/HiyaCFW-Helper/HEAD/tools/Darwin/ndsblc -------------------------------------------------------------------------------- /tools/Darwin/twltool: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondul/HiyaCFW-Helper/HEAD/tools/Darwin/twltool -------------------------------------------------------------------------------- /tools/Linux/7za: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondul/HiyaCFW-Helper/HEAD/tools/Linux/7za -------------------------------------------------------------------------------- /tools/Linux/fatcat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondul/HiyaCFW-Helper/HEAD/tools/Linux/fatcat -------------------------------------------------------------------------------- /tools/Linux/ndsblc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondul/HiyaCFW-Helper/HEAD/tools/Linux/ndsblc -------------------------------------------------------------------------------- /tools/Linux/twltool: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondul/HiyaCFW-Helper/HEAD/tools/Linux/twltool -------------------------------------------------------------------------------- /tools/Windows/7za.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondul/HiyaCFW-Helper/HEAD/tools/Windows/7za.exe -------------------------------------------------------------------------------- /tools/Windows/fatcat.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondul/HiyaCFW-Helper/HEAD/tools/Windows/fatcat.exe --------------------------------------------------------------------------------