├── .gitignore ├── AgasperPatchingTools.sln ├── AgasperPatchingTools.v11.suo ├── MIT-LICENSE.txt ├── PatchBuilder ├── FileHelper.cs ├── PatchBuilder.csproj ├── PatchBuilder.csproj.user ├── Program.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── app.config ├── app.manifest ├── frmMain.Designer.cs ├── frmMain.cs ├── frmMain.resx ├── frmStatus.Designer.cs ├── frmStatus.cs └── frmStatus.resx ├── Patcher ├── Configuration.cs ├── Patcher.csproj ├── Patcher.csproj.user ├── PatcherException.cs ├── Program.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ ├── Settings.settings │ ├── Strings.Designer.cs │ ├── Strings.resx │ ├── Strings.ru-RU.Designer.cs │ └── Strings.ru-RU.resx ├── Resources │ ├── Button.psd │ ├── CloseButton.psd │ ├── back.psd │ ├── button.png │ ├── button_active.png │ ├── button_hover.png │ ├── close_button.png │ ├── close_button_active.png │ ├── close_button_hover.png │ ├── header.png │ ├── icon.psd │ ├── minimize_button.png │ ├── minimize_button_active.png │ └── minimize_button_hover.png ├── Updater.cs ├── Windows7Taskbar.cs ├── app.config ├── app.manifest ├── frmMain.Designer.cs ├── frmMain.cs ├── frmMain.resx ├── frmMain.ru.resx └── icon.ico ├── README.md ├── RsyncNet ├── Delta │ ├── ByteDelta.cs │ ├── CopyDelta.cs │ ├── DeltaGenerator.cs │ ├── DeltaStatistics.cs │ ├── DeltaStreamer.cs │ └── IDelta.cs ├── Hash │ ├── FileHash.cs │ ├── HashBlock.cs │ ├── HashBlockGenerator.cs │ └── HashBlockStreamer.cs ├── Helpers │ ├── MathEx.cs │ └── StreamUtils.cs ├── Libraries │ ├── HashAlgorithmWrapper.cs │ ├── IHashAlgorithm.cs │ ├── IRollingChecksum.cs │ ├── RollingChecksum.cs │ └── SlidingStreamBuffer.cs ├── Properties │ └── AssemblyInfo.cs ├── RsyncNet.csproj └── app.config └── lib └── ICSharpCode.SharpZipLib.dll /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agasper/GamePatcher/HEAD/.gitignore -------------------------------------------------------------------------------- /AgasperPatchingTools.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agasper/GamePatcher/HEAD/AgasperPatchingTools.sln -------------------------------------------------------------------------------- /AgasperPatchingTools.v11.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agasper/GamePatcher/HEAD/AgasperPatchingTools.v11.suo -------------------------------------------------------------------------------- /MIT-LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agasper/GamePatcher/HEAD/MIT-LICENSE.txt -------------------------------------------------------------------------------- /PatchBuilder/FileHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agasper/GamePatcher/HEAD/PatchBuilder/FileHelper.cs -------------------------------------------------------------------------------- /PatchBuilder/PatchBuilder.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agasper/GamePatcher/HEAD/PatchBuilder/PatchBuilder.csproj -------------------------------------------------------------------------------- /PatchBuilder/PatchBuilder.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agasper/GamePatcher/HEAD/PatchBuilder/PatchBuilder.csproj.user -------------------------------------------------------------------------------- /PatchBuilder/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agasper/GamePatcher/HEAD/PatchBuilder/Program.cs -------------------------------------------------------------------------------- /PatchBuilder/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agasper/GamePatcher/HEAD/PatchBuilder/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /PatchBuilder/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agasper/GamePatcher/HEAD/PatchBuilder/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /PatchBuilder/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agasper/GamePatcher/HEAD/PatchBuilder/Properties/Resources.resx -------------------------------------------------------------------------------- /PatchBuilder/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agasper/GamePatcher/HEAD/PatchBuilder/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /PatchBuilder/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agasper/GamePatcher/HEAD/PatchBuilder/Properties/Settings.settings -------------------------------------------------------------------------------- /PatchBuilder/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agasper/GamePatcher/HEAD/PatchBuilder/app.config -------------------------------------------------------------------------------- /PatchBuilder/app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agasper/GamePatcher/HEAD/PatchBuilder/app.manifest -------------------------------------------------------------------------------- /PatchBuilder/frmMain.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agasper/GamePatcher/HEAD/PatchBuilder/frmMain.Designer.cs -------------------------------------------------------------------------------- /PatchBuilder/frmMain.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agasper/GamePatcher/HEAD/PatchBuilder/frmMain.cs -------------------------------------------------------------------------------- /PatchBuilder/frmMain.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agasper/GamePatcher/HEAD/PatchBuilder/frmMain.resx -------------------------------------------------------------------------------- /PatchBuilder/frmStatus.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agasper/GamePatcher/HEAD/PatchBuilder/frmStatus.Designer.cs -------------------------------------------------------------------------------- /PatchBuilder/frmStatus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agasper/GamePatcher/HEAD/PatchBuilder/frmStatus.cs -------------------------------------------------------------------------------- /PatchBuilder/frmStatus.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agasper/GamePatcher/HEAD/PatchBuilder/frmStatus.resx -------------------------------------------------------------------------------- /Patcher/Configuration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agasper/GamePatcher/HEAD/Patcher/Configuration.cs -------------------------------------------------------------------------------- /Patcher/Patcher.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agasper/GamePatcher/HEAD/Patcher/Patcher.csproj -------------------------------------------------------------------------------- /Patcher/Patcher.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agasper/GamePatcher/HEAD/Patcher/Patcher.csproj.user -------------------------------------------------------------------------------- /Patcher/PatcherException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agasper/GamePatcher/HEAD/Patcher/PatcherException.cs -------------------------------------------------------------------------------- /Patcher/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agasper/GamePatcher/HEAD/Patcher/Program.cs -------------------------------------------------------------------------------- /Patcher/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agasper/GamePatcher/HEAD/Patcher/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Patcher/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agasper/GamePatcher/HEAD/Patcher/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /Patcher/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agasper/GamePatcher/HEAD/Patcher/Properties/Resources.resx -------------------------------------------------------------------------------- /Patcher/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agasper/GamePatcher/HEAD/Patcher/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /Patcher/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agasper/GamePatcher/HEAD/Patcher/Properties/Settings.settings -------------------------------------------------------------------------------- /Patcher/Properties/Strings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agasper/GamePatcher/HEAD/Patcher/Properties/Strings.Designer.cs -------------------------------------------------------------------------------- /Patcher/Properties/Strings.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agasper/GamePatcher/HEAD/Patcher/Properties/Strings.resx -------------------------------------------------------------------------------- /Patcher/Properties/Strings.ru-RU.Designer.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Patcher/Properties/Strings.ru-RU.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agasper/GamePatcher/HEAD/Patcher/Properties/Strings.ru-RU.resx -------------------------------------------------------------------------------- /Patcher/Resources/Button.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agasper/GamePatcher/HEAD/Patcher/Resources/Button.psd -------------------------------------------------------------------------------- /Patcher/Resources/CloseButton.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agasper/GamePatcher/HEAD/Patcher/Resources/CloseButton.psd -------------------------------------------------------------------------------- /Patcher/Resources/back.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agasper/GamePatcher/HEAD/Patcher/Resources/back.psd -------------------------------------------------------------------------------- /Patcher/Resources/button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agasper/GamePatcher/HEAD/Patcher/Resources/button.png -------------------------------------------------------------------------------- /Patcher/Resources/button_active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agasper/GamePatcher/HEAD/Patcher/Resources/button_active.png -------------------------------------------------------------------------------- /Patcher/Resources/button_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agasper/GamePatcher/HEAD/Patcher/Resources/button_hover.png -------------------------------------------------------------------------------- /Patcher/Resources/close_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agasper/GamePatcher/HEAD/Patcher/Resources/close_button.png -------------------------------------------------------------------------------- /Patcher/Resources/close_button_active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agasper/GamePatcher/HEAD/Patcher/Resources/close_button_active.png -------------------------------------------------------------------------------- /Patcher/Resources/close_button_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agasper/GamePatcher/HEAD/Patcher/Resources/close_button_hover.png -------------------------------------------------------------------------------- /Patcher/Resources/header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agasper/GamePatcher/HEAD/Patcher/Resources/header.png -------------------------------------------------------------------------------- /Patcher/Resources/icon.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agasper/GamePatcher/HEAD/Patcher/Resources/icon.psd -------------------------------------------------------------------------------- /Patcher/Resources/minimize_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agasper/GamePatcher/HEAD/Patcher/Resources/minimize_button.png -------------------------------------------------------------------------------- /Patcher/Resources/minimize_button_active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agasper/GamePatcher/HEAD/Patcher/Resources/minimize_button_active.png -------------------------------------------------------------------------------- /Patcher/Resources/minimize_button_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agasper/GamePatcher/HEAD/Patcher/Resources/minimize_button_hover.png -------------------------------------------------------------------------------- /Patcher/Updater.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agasper/GamePatcher/HEAD/Patcher/Updater.cs -------------------------------------------------------------------------------- /Patcher/Windows7Taskbar.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agasper/GamePatcher/HEAD/Patcher/Windows7Taskbar.cs -------------------------------------------------------------------------------- /Patcher/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agasper/GamePatcher/HEAD/Patcher/app.config -------------------------------------------------------------------------------- /Patcher/app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agasper/GamePatcher/HEAD/Patcher/app.manifest -------------------------------------------------------------------------------- /Patcher/frmMain.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agasper/GamePatcher/HEAD/Patcher/frmMain.Designer.cs -------------------------------------------------------------------------------- /Patcher/frmMain.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agasper/GamePatcher/HEAD/Patcher/frmMain.cs -------------------------------------------------------------------------------- /Patcher/frmMain.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agasper/GamePatcher/HEAD/Patcher/frmMain.resx -------------------------------------------------------------------------------- /Patcher/frmMain.ru.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agasper/GamePatcher/HEAD/Patcher/frmMain.ru.resx -------------------------------------------------------------------------------- /Patcher/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agasper/GamePatcher/HEAD/Patcher/icon.ico -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agasper/GamePatcher/HEAD/README.md -------------------------------------------------------------------------------- /RsyncNet/Delta/ByteDelta.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agasper/GamePatcher/HEAD/RsyncNet/Delta/ByteDelta.cs -------------------------------------------------------------------------------- /RsyncNet/Delta/CopyDelta.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agasper/GamePatcher/HEAD/RsyncNet/Delta/CopyDelta.cs -------------------------------------------------------------------------------- /RsyncNet/Delta/DeltaGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agasper/GamePatcher/HEAD/RsyncNet/Delta/DeltaGenerator.cs -------------------------------------------------------------------------------- /RsyncNet/Delta/DeltaStatistics.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agasper/GamePatcher/HEAD/RsyncNet/Delta/DeltaStatistics.cs -------------------------------------------------------------------------------- /RsyncNet/Delta/DeltaStreamer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agasper/GamePatcher/HEAD/RsyncNet/Delta/DeltaStreamer.cs -------------------------------------------------------------------------------- /RsyncNet/Delta/IDelta.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agasper/GamePatcher/HEAD/RsyncNet/Delta/IDelta.cs -------------------------------------------------------------------------------- /RsyncNet/Hash/FileHash.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agasper/GamePatcher/HEAD/RsyncNet/Hash/FileHash.cs -------------------------------------------------------------------------------- /RsyncNet/Hash/HashBlock.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agasper/GamePatcher/HEAD/RsyncNet/Hash/HashBlock.cs -------------------------------------------------------------------------------- /RsyncNet/Hash/HashBlockGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agasper/GamePatcher/HEAD/RsyncNet/Hash/HashBlockGenerator.cs -------------------------------------------------------------------------------- /RsyncNet/Hash/HashBlockStreamer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agasper/GamePatcher/HEAD/RsyncNet/Hash/HashBlockStreamer.cs -------------------------------------------------------------------------------- /RsyncNet/Helpers/MathEx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agasper/GamePatcher/HEAD/RsyncNet/Helpers/MathEx.cs -------------------------------------------------------------------------------- /RsyncNet/Helpers/StreamUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agasper/GamePatcher/HEAD/RsyncNet/Helpers/StreamUtils.cs -------------------------------------------------------------------------------- /RsyncNet/Libraries/HashAlgorithmWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agasper/GamePatcher/HEAD/RsyncNet/Libraries/HashAlgorithmWrapper.cs -------------------------------------------------------------------------------- /RsyncNet/Libraries/IHashAlgorithm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agasper/GamePatcher/HEAD/RsyncNet/Libraries/IHashAlgorithm.cs -------------------------------------------------------------------------------- /RsyncNet/Libraries/IRollingChecksum.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agasper/GamePatcher/HEAD/RsyncNet/Libraries/IRollingChecksum.cs -------------------------------------------------------------------------------- /RsyncNet/Libraries/RollingChecksum.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agasper/GamePatcher/HEAD/RsyncNet/Libraries/RollingChecksum.cs -------------------------------------------------------------------------------- /RsyncNet/Libraries/SlidingStreamBuffer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agasper/GamePatcher/HEAD/RsyncNet/Libraries/SlidingStreamBuffer.cs -------------------------------------------------------------------------------- /RsyncNet/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agasper/GamePatcher/HEAD/RsyncNet/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /RsyncNet/RsyncNet.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agasper/GamePatcher/HEAD/RsyncNet/RsyncNet.csproj -------------------------------------------------------------------------------- /RsyncNet/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agasper/GamePatcher/HEAD/RsyncNet/app.config -------------------------------------------------------------------------------- /lib/ICSharpCode.SharpZipLib.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agasper/GamePatcher/HEAD/lib/ICSharpCode.SharpZipLib.dll --------------------------------------------------------------------------------