├── .gitignore ├── LICENSE ├── README.md └── YAXBPC ├── CopyMe ├── apply_patch_linux.sh ├── apply_patch_linux_alternative.sh ├── apply_patch_mac.command ├── apply_patch_mac_alternative.command ├── apply_patch_windows.bat ├── apply_patch_windows_alternative.bat ├── how_to_apply_this_patch.txt ├── subscript1.ps1 ├── xdelta3 ├── xdelta3.exe ├── xdelta3.x86_64 ├── xdelta3.x86_64.exe └── xdelta3_mac ├── CustomExceptionHandler.cs ├── Database.cs ├── Form1.Designer.cs ├── Form1.cs ├── Form1.resx ├── Licenses.cs ├── Program.cs ├── Properties ├── AssemblyInfo.cs ├── Resources.Designer.cs ├── Resources.resx ├── Settings.Designer.cs └── Settings.settings ├── YAXBPC.csproj ├── Yet Another xdelta-based Patch Creator.sln ├── app.config └── output6.ico /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamer2908/YAXBPC/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamer2908/YAXBPC/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # YAXBPC 2 | Yet another xdelta-based patch creator 3 | -------------------------------------------------------------------------------- /YAXBPC/CopyMe/apply_patch_linux.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamer2908/YAXBPC/HEAD/YAXBPC/CopyMe/apply_patch_linux.sh -------------------------------------------------------------------------------- /YAXBPC/CopyMe/apply_patch_linux_alternative.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamer2908/YAXBPC/HEAD/YAXBPC/CopyMe/apply_patch_linux_alternative.sh -------------------------------------------------------------------------------- /YAXBPC/CopyMe/apply_patch_mac.command: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamer2908/YAXBPC/HEAD/YAXBPC/CopyMe/apply_patch_mac.command -------------------------------------------------------------------------------- /YAXBPC/CopyMe/apply_patch_mac_alternative.command: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamer2908/YAXBPC/HEAD/YAXBPC/CopyMe/apply_patch_mac_alternative.command -------------------------------------------------------------------------------- /YAXBPC/CopyMe/apply_patch_windows.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamer2908/YAXBPC/HEAD/YAXBPC/CopyMe/apply_patch_windows.bat -------------------------------------------------------------------------------- /YAXBPC/CopyMe/apply_patch_windows_alternative.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamer2908/YAXBPC/HEAD/YAXBPC/CopyMe/apply_patch_windows_alternative.bat -------------------------------------------------------------------------------- /YAXBPC/CopyMe/how_to_apply_this_patch.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamer2908/YAXBPC/HEAD/YAXBPC/CopyMe/how_to_apply_this_patch.txt -------------------------------------------------------------------------------- /YAXBPC/CopyMe/subscript1.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamer2908/YAXBPC/HEAD/YAXBPC/CopyMe/subscript1.ps1 -------------------------------------------------------------------------------- /YAXBPC/CopyMe/xdelta3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamer2908/YAXBPC/HEAD/YAXBPC/CopyMe/xdelta3 -------------------------------------------------------------------------------- /YAXBPC/CopyMe/xdelta3.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamer2908/YAXBPC/HEAD/YAXBPC/CopyMe/xdelta3.exe -------------------------------------------------------------------------------- /YAXBPC/CopyMe/xdelta3.x86_64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamer2908/YAXBPC/HEAD/YAXBPC/CopyMe/xdelta3.x86_64 -------------------------------------------------------------------------------- /YAXBPC/CopyMe/xdelta3.x86_64.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamer2908/YAXBPC/HEAD/YAXBPC/CopyMe/xdelta3.x86_64.exe -------------------------------------------------------------------------------- /YAXBPC/CopyMe/xdelta3_mac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamer2908/YAXBPC/HEAD/YAXBPC/CopyMe/xdelta3_mac -------------------------------------------------------------------------------- /YAXBPC/CustomExceptionHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamer2908/YAXBPC/HEAD/YAXBPC/CustomExceptionHandler.cs -------------------------------------------------------------------------------- /YAXBPC/Database.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamer2908/YAXBPC/HEAD/YAXBPC/Database.cs -------------------------------------------------------------------------------- /YAXBPC/Form1.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamer2908/YAXBPC/HEAD/YAXBPC/Form1.Designer.cs -------------------------------------------------------------------------------- /YAXBPC/Form1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamer2908/YAXBPC/HEAD/YAXBPC/Form1.cs -------------------------------------------------------------------------------- /YAXBPC/Form1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamer2908/YAXBPC/HEAD/YAXBPC/Form1.resx -------------------------------------------------------------------------------- /YAXBPC/Licenses.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamer2908/YAXBPC/HEAD/YAXBPC/Licenses.cs -------------------------------------------------------------------------------- /YAXBPC/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamer2908/YAXBPC/HEAD/YAXBPC/Program.cs -------------------------------------------------------------------------------- /YAXBPC/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamer2908/YAXBPC/HEAD/YAXBPC/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /YAXBPC/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamer2908/YAXBPC/HEAD/YAXBPC/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /YAXBPC/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamer2908/YAXBPC/HEAD/YAXBPC/Properties/Resources.resx -------------------------------------------------------------------------------- /YAXBPC/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamer2908/YAXBPC/HEAD/YAXBPC/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /YAXBPC/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamer2908/YAXBPC/HEAD/YAXBPC/Properties/Settings.settings -------------------------------------------------------------------------------- /YAXBPC/YAXBPC.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamer2908/YAXBPC/HEAD/YAXBPC/YAXBPC.csproj -------------------------------------------------------------------------------- /YAXBPC/Yet Another xdelta-based Patch Creator.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamer2908/YAXBPC/HEAD/YAXBPC/Yet Another xdelta-based Patch Creator.sln -------------------------------------------------------------------------------- /YAXBPC/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamer2908/YAXBPC/HEAD/YAXBPC/app.config -------------------------------------------------------------------------------- /YAXBPC/output6.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamer2908/YAXBPC/HEAD/YAXBPC/output6.ico --------------------------------------------------------------------------------