├── .gitattributes ├── .github ├── CONTRIBUTING.md ├── ISSUE_TEMPLATE.md └── PULL_REQUEST_TEMPLATE.md ├── .gitignore ├── LICENSE ├── README.md ├── Unix-like └── patcher.sh ├── Windows ├── WiiWarePatcher.bat └── WiiWarePatcher │ ├── Sharpii.exe │ ├── WadInstaller.dll │ ├── WiiWarePatcher.exe │ ├── libWiiSharp.dll │ └── lzx.exe ├── bin ├── Sharpii.exe ├── WadInstaller.dll ├── WiiwarePatcher.exe ├── libWiiSharp.dll ├── lzx-Darwin-amd64 ├── lzx-Linux-amd64 ├── lzx-Linux-arm ├── lzx-Linux-i386 ├── lzx.exe ├── sharpii-Darwin-amd64 ├── sharpii-Linux-amd64 ├── sharpii-Linux-arm ├── sharpii-Linux-i386 ├── wiiwarepatcher-Darwin-amd64 ├── wiiwarepatcher-Linux-amd64 ├── wiiwarepatcher-Linux-arm └── wiiwarepatcher-Linux-i386 └── src ├── compile_windows.bat ├── lzx.c └── wiiwarepatcher.cpp /.gitattributes: -------------------------------------------------------------------------------- 1 | patcher.sh eol=lf -------------------------------------------------------------------------------- /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiiConnect24/WiiWare-Patcher/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiiConnect24/WiiWare-Patcher/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- 1 | ***PR Desc: *** 2 | **Operating Systems Edited: ALL/MAC/LINUX/WINDOWS** -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiiConnect24/WiiWare-Patcher/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiiConnect24/WiiWare-Patcher/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiiConnect24/WiiWare-Patcher/HEAD/README.md -------------------------------------------------------------------------------- /Unix-like/patcher.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiiConnect24/WiiWare-Patcher/HEAD/Unix-like/patcher.sh -------------------------------------------------------------------------------- /Windows/WiiWarePatcher.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiiConnect24/WiiWare-Patcher/HEAD/Windows/WiiWarePatcher.bat -------------------------------------------------------------------------------- /Windows/WiiWarePatcher/Sharpii.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiiConnect24/WiiWare-Patcher/HEAD/Windows/WiiWarePatcher/Sharpii.exe -------------------------------------------------------------------------------- /Windows/WiiWarePatcher/WadInstaller.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiiConnect24/WiiWare-Patcher/HEAD/Windows/WiiWarePatcher/WadInstaller.dll -------------------------------------------------------------------------------- /Windows/WiiWarePatcher/WiiWarePatcher.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiiConnect24/WiiWare-Patcher/HEAD/Windows/WiiWarePatcher/WiiWarePatcher.exe -------------------------------------------------------------------------------- /Windows/WiiWarePatcher/libWiiSharp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiiConnect24/WiiWare-Patcher/HEAD/Windows/WiiWarePatcher/libWiiSharp.dll -------------------------------------------------------------------------------- /Windows/WiiWarePatcher/lzx.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiiConnect24/WiiWare-Patcher/HEAD/Windows/WiiWarePatcher/lzx.exe -------------------------------------------------------------------------------- /bin/Sharpii.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiiConnect24/WiiWare-Patcher/HEAD/bin/Sharpii.exe -------------------------------------------------------------------------------- /bin/WadInstaller.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiiConnect24/WiiWare-Patcher/HEAD/bin/WadInstaller.dll -------------------------------------------------------------------------------- /bin/WiiwarePatcher.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiiConnect24/WiiWare-Patcher/HEAD/bin/WiiwarePatcher.exe -------------------------------------------------------------------------------- /bin/libWiiSharp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiiConnect24/WiiWare-Patcher/HEAD/bin/libWiiSharp.dll -------------------------------------------------------------------------------- /bin/lzx-Darwin-amd64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiiConnect24/WiiWare-Patcher/HEAD/bin/lzx-Darwin-amd64 -------------------------------------------------------------------------------- /bin/lzx-Linux-amd64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiiConnect24/WiiWare-Patcher/HEAD/bin/lzx-Linux-amd64 -------------------------------------------------------------------------------- /bin/lzx-Linux-arm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiiConnect24/WiiWare-Patcher/HEAD/bin/lzx-Linux-arm -------------------------------------------------------------------------------- /bin/lzx-Linux-i386: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiiConnect24/WiiWare-Patcher/HEAD/bin/lzx-Linux-i386 -------------------------------------------------------------------------------- /bin/lzx.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiiConnect24/WiiWare-Patcher/HEAD/bin/lzx.exe -------------------------------------------------------------------------------- /bin/sharpii-Darwin-amd64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiiConnect24/WiiWare-Patcher/HEAD/bin/sharpii-Darwin-amd64 -------------------------------------------------------------------------------- /bin/sharpii-Linux-amd64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiiConnect24/WiiWare-Patcher/HEAD/bin/sharpii-Linux-amd64 -------------------------------------------------------------------------------- /bin/sharpii-Linux-arm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiiConnect24/WiiWare-Patcher/HEAD/bin/sharpii-Linux-arm -------------------------------------------------------------------------------- /bin/sharpii-Linux-i386: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiiConnect24/WiiWare-Patcher/HEAD/bin/sharpii-Linux-i386 -------------------------------------------------------------------------------- /bin/wiiwarepatcher-Darwin-amd64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiiConnect24/WiiWare-Patcher/HEAD/bin/wiiwarepatcher-Darwin-amd64 -------------------------------------------------------------------------------- /bin/wiiwarepatcher-Linux-amd64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiiConnect24/WiiWare-Patcher/HEAD/bin/wiiwarepatcher-Linux-amd64 -------------------------------------------------------------------------------- /bin/wiiwarepatcher-Linux-arm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiiConnect24/WiiWare-Patcher/HEAD/bin/wiiwarepatcher-Linux-arm -------------------------------------------------------------------------------- /bin/wiiwarepatcher-Linux-i386: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiiConnect24/WiiWare-Patcher/HEAD/bin/wiiwarepatcher-Linux-i386 -------------------------------------------------------------------------------- /src/compile_windows.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiiConnect24/WiiWare-Patcher/HEAD/src/compile_windows.bat -------------------------------------------------------------------------------- /src/lzx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiiConnect24/WiiWare-Patcher/HEAD/src/lzx.c -------------------------------------------------------------------------------- /src/wiiwarepatcher.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiiConnect24/WiiWare-Patcher/HEAD/src/wiiwarepatcher.cpp --------------------------------------------------------------------------------