├── .cargo └── config.toml ├── .editorconfig ├── .gitattributes ├── .github ├── FUNDING.yml └── workflows │ ├── build.yml │ └── tangled-mirror.yml ├── .gitignore ├── Cargo.lock ├── Cargo.toml ├── GModPatchToolLogo.icns ├── GModPatchToolLogo.ico ├── GModPatchToolLogo.png ├── GModPatchToolLogo.svg ├── LICENSE.txt ├── README.md ├── cef_build ├── README.md ├── darwin.sh ├── linux.sh └── windows.bat ├── examples └── detection_example.lua ├── rustfmt.toml ├── src ├── generate.rs ├── gui.rs ├── lib.rs ├── main.rs ├── patch.rs └── vdf.rs └── version.txt /.cargo/config.toml: -------------------------------------------------------------------------------- 1 | [env] 2 | MACOSX_DEPLOYMENT_TARGET = "11.0" 3 | -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solsticegamestudios/GModPatchTool/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solsticegamestudios/GModPatchTool/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | custom: ['https://solsticegamestudios.com/donate/'] 2 | -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solsticegamestudios/GModPatchTool/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/tangled-mirror.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solsticegamestudios/GModPatchTool/HEAD/.github/workflows/tangled-mirror.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solsticegamestudios/GModPatchTool/HEAD/.gitignore -------------------------------------------------------------------------------- /Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solsticegamestudios/GModPatchTool/HEAD/Cargo.lock -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solsticegamestudios/GModPatchTool/HEAD/Cargo.toml -------------------------------------------------------------------------------- /GModPatchToolLogo.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solsticegamestudios/GModPatchTool/HEAD/GModPatchToolLogo.icns -------------------------------------------------------------------------------- /GModPatchToolLogo.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solsticegamestudios/GModPatchTool/HEAD/GModPatchToolLogo.ico -------------------------------------------------------------------------------- /GModPatchToolLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solsticegamestudios/GModPatchTool/HEAD/GModPatchToolLogo.png -------------------------------------------------------------------------------- /GModPatchToolLogo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solsticegamestudios/GModPatchTool/HEAD/GModPatchToolLogo.svg -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solsticegamestudios/GModPatchTool/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solsticegamestudios/GModPatchTool/HEAD/README.md -------------------------------------------------------------------------------- /cef_build/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solsticegamestudios/GModPatchTool/HEAD/cef_build/README.md -------------------------------------------------------------------------------- /cef_build/darwin.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solsticegamestudios/GModPatchTool/HEAD/cef_build/darwin.sh -------------------------------------------------------------------------------- /cef_build/linux.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solsticegamestudios/GModPatchTool/HEAD/cef_build/linux.sh -------------------------------------------------------------------------------- /cef_build/windows.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solsticegamestudios/GModPatchTool/HEAD/cef_build/windows.bat -------------------------------------------------------------------------------- /examples/detection_example.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solsticegamestudios/GModPatchTool/HEAD/examples/detection_example.lua -------------------------------------------------------------------------------- /rustfmt.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solsticegamestudios/GModPatchTool/HEAD/rustfmt.toml -------------------------------------------------------------------------------- /src/generate.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solsticegamestudios/GModPatchTool/HEAD/src/generate.rs -------------------------------------------------------------------------------- /src/gui.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solsticegamestudios/GModPatchTool/HEAD/src/gui.rs -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solsticegamestudios/GModPatchTool/HEAD/src/lib.rs -------------------------------------------------------------------------------- /src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solsticegamestudios/GModPatchTool/HEAD/src/main.rs -------------------------------------------------------------------------------- /src/patch.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solsticegamestudios/GModPatchTool/HEAD/src/patch.rs -------------------------------------------------------------------------------- /src/vdf.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solsticegamestudios/GModPatchTool/HEAD/src/vdf.rs -------------------------------------------------------------------------------- /version.txt: -------------------------------------------------------------------------------- 1 | 20251102 2 | --------------------------------------------------------------------------------