├── .gitattributes ├── .gitignore ├── CabalOnlineUpdater.sln ├── ClientUpdater ├── 7zip │ ├── Common │ │ ├── CRC.cs │ │ ├── CommandLineParser.cs │ │ ├── InBuffer.cs │ │ └── OutBuffer.cs │ ├── Compress │ │ ├── LZ │ │ │ ├── IMatchFinder.cs │ │ │ ├── LzBinTree.cs │ │ │ ├── LzInWindow.cs │ │ │ └── LzOutWindow.cs │ │ ├── LZMA │ │ │ ├── LzmaBase.cs │ │ │ ├── LzmaDecoder.cs │ │ │ └── LzmaEncoder.cs │ │ └── RangeCoder │ │ │ ├── RangeCoder.cs │ │ │ ├── RangeCoderBit.cs │ │ │ └── RangeCoderBitTree.cs │ └── ICoder.cs ├── ClientUpdater.csproj ├── Folders.cs ├── Program.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── Resources │ ├── Background.jpg │ ├── File.png │ ├── InfoBack.png │ ├── Total.png │ ├── bar.jpg │ ├── bar2.jpg │ ├── bg1.jpg │ ├── close.png │ ├── closehov.png │ ├── closehov1.png │ ├── full-check-disabled.png │ ├── full-check-enabled.png │ ├── mini.png │ ├── minihov.png │ ├── set.png │ ├── sethov.png │ ├── startDisabled.png │ ├── startEnabled.png │ ├── stop-disabled.png │ └── stop-enabled.png ├── Updater.Designer.cs ├── Updater.cs ├── Updater.resx ├── app.config ├── app.manifest └── favicon.ico ├── LICENSE ├── PatchGenerator ├── 7zip │ ├── Common │ │ ├── CRC.cs │ │ ├── CommandLineParser.cs │ │ ├── InBuffer.cs │ │ └── OutBuffer.cs │ ├── Compress │ │ ├── LZ │ │ │ ├── IMatchFinder.cs │ │ │ ├── LzBinTree.cs │ │ │ ├── LzInWindow.cs │ │ │ └── LzOutWindow.cs │ │ ├── LZMA │ │ │ ├── LzmaBase.cs │ │ │ ├── LzmaDecoder.cs │ │ │ └── LzmaEncoder.cs │ │ └── RangeCoder │ │ │ ├── RangeCoder.cs │ │ │ ├── RangeCoderBit.cs │ │ │ └── RangeCoderBitTree.cs │ └── ICoder.cs ├── Main.Designer.cs ├── Main.cs ├── Main.resx ├── PatchGenerator.csproj ├── Program.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ ├── Settings.settings │ └── app.manifest ├── app.config ├── app.manifest └── favicon.ico └── README.md /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberinferno/cabal-online-updater/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberinferno/cabal-online-updater/HEAD/.gitignore -------------------------------------------------------------------------------- /CabalOnlineUpdater.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberinferno/cabal-online-updater/HEAD/CabalOnlineUpdater.sln -------------------------------------------------------------------------------- /ClientUpdater/7zip/Common/CRC.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberinferno/cabal-online-updater/HEAD/ClientUpdater/7zip/Common/CRC.cs -------------------------------------------------------------------------------- /ClientUpdater/7zip/Common/CommandLineParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberinferno/cabal-online-updater/HEAD/ClientUpdater/7zip/Common/CommandLineParser.cs -------------------------------------------------------------------------------- /ClientUpdater/7zip/Common/InBuffer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberinferno/cabal-online-updater/HEAD/ClientUpdater/7zip/Common/InBuffer.cs -------------------------------------------------------------------------------- /ClientUpdater/7zip/Common/OutBuffer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberinferno/cabal-online-updater/HEAD/ClientUpdater/7zip/Common/OutBuffer.cs -------------------------------------------------------------------------------- /ClientUpdater/7zip/Compress/LZ/IMatchFinder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberinferno/cabal-online-updater/HEAD/ClientUpdater/7zip/Compress/LZ/IMatchFinder.cs -------------------------------------------------------------------------------- /ClientUpdater/7zip/Compress/LZ/LzBinTree.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberinferno/cabal-online-updater/HEAD/ClientUpdater/7zip/Compress/LZ/LzBinTree.cs -------------------------------------------------------------------------------- /ClientUpdater/7zip/Compress/LZ/LzInWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberinferno/cabal-online-updater/HEAD/ClientUpdater/7zip/Compress/LZ/LzInWindow.cs -------------------------------------------------------------------------------- /ClientUpdater/7zip/Compress/LZ/LzOutWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberinferno/cabal-online-updater/HEAD/ClientUpdater/7zip/Compress/LZ/LzOutWindow.cs -------------------------------------------------------------------------------- /ClientUpdater/7zip/Compress/LZMA/LzmaBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberinferno/cabal-online-updater/HEAD/ClientUpdater/7zip/Compress/LZMA/LzmaBase.cs -------------------------------------------------------------------------------- /ClientUpdater/7zip/Compress/LZMA/LzmaDecoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberinferno/cabal-online-updater/HEAD/ClientUpdater/7zip/Compress/LZMA/LzmaDecoder.cs -------------------------------------------------------------------------------- /ClientUpdater/7zip/Compress/LZMA/LzmaEncoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberinferno/cabal-online-updater/HEAD/ClientUpdater/7zip/Compress/LZMA/LzmaEncoder.cs -------------------------------------------------------------------------------- /ClientUpdater/7zip/Compress/RangeCoder/RangeCoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberinferno/cabal-online-updater/HEAD/ClientUpdater/7zip/Compress/RangeCoder/RangeCoder.cs -------------------------------------------------------------------------------- /ClientUpdater/7zip/Compress/RangeCoder/RangeCoderBit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberinferno/cabal-online-updater/HEAD/ClientUpdater/7zip/Compress/RangeCoder/RangeCoderBit.cs -------------------------------------------------------------------------------- /ClientUpdater/7zip/Compress/RangeCoder/RangeCoderBitTree.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberinferno/cabal-online-updater/HEAD/ClientUpdater/7zip/Compress/RangeCoder/RangeCoderBitTree.cs -------------------------------------------------------------------------------- /ClientUpdater/7zip/ICoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberinferno/cabal-online-updater/HEAD/ClientUpdater/7zip/ICoder.cs -------------------------------------------------------------------------------- /ClientUpdater/ClientUpdater.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberinferno/cabal-online-updater/HEAD/ClientUpdater/ClientUpdater.csproj -------------------------------------------------------------------------------- /ClientUpdater/Folders.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberinferno/cabal-online-updater/HEAD/ClientUpdater/Folders.cs -------------------------------------------------------------------------------- /ClientUpdater/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberinferno/cabal-online-updater/HEAD/ClientUpdater/Program.cs -------------------------------------------------------------------------------- /ClientUpdater/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberinferno/cabal-online-updater/HEAD/ClientUpdater/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /ClientUpdater/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberinferno/cabal-online-updater/HEAD/ClientUpdater/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /ClientUpdater/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberinferno/cabal-online-updater/HEAD/ClientUpdater/Properties/Resources.resx -------------------------------------------------------------------------------- /ClientUpdater/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberinferno/cabal-online-updater/HEAD/ClientUpdater/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /ClientUpdater/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberinferno/cabal-online-updater/HEAD/ClientUpdater/Properties/Settings.settings -------------------------------------------------------------------------------- /ClientUpdater/Resources/Background.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberinferno/cabal-online-updater/HEAD/ClientUpdater/Resources/Background.jpg -------------------------------------------------------------------------------- /ClientUpdater/Resources/File.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberinferno/cabal-online-updater/HEAD/ClientUpdater/Resources/File.png -------------------------------------------------------------------------------- /ClientUpdater/Resources/InfoBack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberinferno/cabal-online-updater/HEAD/ClientUpdater/Resources/InfoBack.png -------------------------------------------------------------------------------- /ClientUpdater/Resources/Total.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberinferno/cabal-online-updater/HEAD/ClientUpdater/Resources/Total.png -------------------------------------------------------------------------------- /ClientUpdater/Resources/bar.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberinferno/cabal-online-updater/HEAD/ClientUpdater/Resources/bar.jpg -------------------------------------------------------------------------------- /ClientUpdater/Resources/bar2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberinferno/cabal-online-updater/HEAD/ClientUpdater/Resources/bar2.jpg -------------------------------------------------------------------------------- /ClientUpdater/Resources/bg1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberinferno/cabal-online-updater/HEAD/ClientUpdater/Resources/bg1.jpg -------------------------------------------------------------------------------- /ClientUpdater/Resources/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberinferno/cabal-online-updater/HEAD/ClientUpdater/Resources/close.png -------------------------------------------------------------------------------- /ClientUpdater/Resources/closehov.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberinferno/cabal-online-updater/HEAD/ClientUpdater/Resources/closehov.png -------------------------------------------------------------------------------- /ClientUpdater/Resources/closehov1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberinferno/cabal-online-updater/HEAD/ClientUpdater/Resources/closehov1.png -------------------------------------------------------------------------------- /ClientUpdater/Resources/full-check-disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberinferno/cabal-online-updater/HEAD/ClientUpdater/Resources/full-check-disabled.png -------------------------------------------------------------------------------- /ClientUpdater/Resources/full-check-enabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberinferno/cabal-online-updater/HEAD/ClientUpdater/Resources/full-check-enabled.png -------------------------------------------------------------------------------- /ClientUpdater/Resources/mini.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberinferno/cabal-online-updater/HEAD/ClientUpdater/Resources/mini.png -------------------------------------------------------------------------------- /ClientUpdater/Resources/minihov.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberinferno/cabal-online-updater/HEAD/ClientUpdater/Resources/minihov.png -------------------------------------------------------------------------------- /ClientUpdater/Resources/set.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberinferno/cabal-online-updater/HEAD/ClientUpdater/Resources/set.png -------------------------------------------------------------------------------- /ClientUpdater/Resources/sethov.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberinferno/cabal-online-updater/HEAD/ClientUpdater/Resources/sethov.png -------------------------------------------------------------------------------- /ClientUpdater/Resources/startDisabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberinferno/cabal-online-updater/HEAD/ClientUpdater/Resources/startDisabled.png -------------------------------------------------------------------------------- /ClientUpdater/Resources/startEnabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberinferno/cabal-online-updater/HEAD/ClientUpdater/Resources/startEnabled.png -------------------------------------------------------------------------------- /ClientUpdater/Resources/stop-disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberinferno/cabal-online-updater/HEAD/ClientUpdater/Resources/stop-disabled.png -------------------------------------------------------------------------------- /ClientUpdater/Resources/stop-enabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberinferno/cabal-online-updater/HEAD/ClientUpdater/Resources/stop-enabled.png -------------------------------------------------------------------------------- /ClientUpdater/Updater.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberinferno/cabal-online-updater/HEAD/ClientUpdater/Updater.Designer.cs -------------------------------------------------------------------------------- /ClientUpdater/Updater.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberinferno/cabal-online-updater/HEAD/ClientUpdater/Updater.cs -------------------------------------------------------------------------------- /ClientUpdater/Updater.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberinferno/cabal-online-updater/HEAD/ClientUpdater/Updater.resx -------------------------------------------------------------------------------- /ClientUpdater/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberinferno/cabal-online-updater/HEAD/ClientUpdater/app.config -------------------------------------------------------------------------------- /ClientUpdater/app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberinferno/cabal-online-updater/HEAD/ClientUpdater/app.manifest -------------------------------------------------------------------------------- /ClientUpdater/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberinferno/cabal-online-updater/HEAD/ClientUpdater/favicon.ico -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberinferno/cabal-online-updater/HEAD/LICENSE -------------------------------------------------------------------------------- /PatchGenerator/7zip/Common/CRC.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberinferno/cabal-online-updater/HEAD/PatchGenerator/7zip/Common/CRC.cs -------------------------------------------------------------------------------- /PatchGenerator/7zip/Common/CommandLineParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberinferno/cabal-online-updater/HEAD/PatchGenerator/7zip/Common/CommandLineParser.cs -------------------------------------------------------------------------------- /PatchGenerator/7zip/Common/InBuffer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberinferno/cabal-online-updater/HEAD/PatchGenerator/7zip/Common/InBuffer.cs -------------------------------------------------------------------------------- /PatchGenerator/7zip/Common/OutBuffer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberinferno/cabal-online-updater/HEAD/PatchGenerator/7zip/Common/OutBuffer.cs -------------------------------------------------------------------------------- /PatchGenerator/7zip/Compress/LZ/IMatchFinder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberinferno/cabal-online-updater/HEAD/PatchGenerator/7zip/Compress/LZ/IMatchFinder.cs -------------------------------------------------------------------------------- /PatchGenerator/7zip/Compress/LZ/LzBinTree.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberinferno/cabal-online-updater/HEAD/PatchGenerator/7zip/Compress/LZ/LzBinTree.cs -------------------------------------------------------------------------------- /PatchGenerator/7zip/Compress/LZ/LzInWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberinferno/cabal-online-updater/HEAD/PatchGenerator/7zip/Compress/LZ/LzInWindow.cs -------------------------------------------------------------------------------- /PatchGenerator/7zip/Compress/LZ/LzOutWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberinferno/cabal-online-updater/HEAD/PatchGenerator/7zip/Compress/LZ/LzOutWindow.cs -------------------------------------------------------------------------------- /PatchGenerator/7zip/Compress/LZMA/LzmaBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberinferno/cabal-online-updater/HEAD/PatchGenerator/7zip/Compress/LZMA/LzmaBase.cs -------------------------------------------------------------------------------- /PatchGenerator/7zip/Compress/LZMA/LzmaDecoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberinferno/cabal-online-updater/HEAD/PatchGenerator/7zip/Compress/LZMA/LzmaDecoder.cs -------------------------------------------------------------------------------- /PatchGenerator/7zip/Compress/LZMA/LzmaEncoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberinferno/cabal-online-updater/HEAD/PatchGenerator/7zip/Compress/LZMA/LzmaEncoder.cs -------------------------------------------------------------------------------- /PatchGenerator/7zip/Compress/RangeCoder/RangeCoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberinferno/cabal-online-updater/HEAD/PatchGenerator/7zip/Compress/RangeCoder/RangeCoder.cs -------------------------------------------------------------------------------- /PatchGenerator/7zip/Compress/RangeCoder/RangeCoderBit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberinferno/cabal-online-updater/HEAD/PatchGenerator/7zip/Compress/RangeCoder/RangeCoderBit.cs -------------------------------------------------------------------------------- /PatchGenerator/7zip/Compress/RangeCoder/RangeCoderBitTree.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberinferno/cabal-online-updater/HEAD/PatchGenerator/7zip/Compress/RangeCoder/RangeCoderBitTree.cs -------------------------------------------------------------------------------- /PatchGenerator/7zip/ICoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberinferno/cabal-online-updater/HEAD/PatchGenerator/7zip/ICoder.cs -------------------------------------------------------------------------------- /PatchGenerator/Main.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberinferno/cabal-online-updater/HEAD/PatchGenerator/Main.Designer.cs -------------------------------------------------------------------------------- /PatchGenerator/Main.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberinferno/cabal-online-updater/HEAD/PatchGenerator/Main.cs -------------------------------------------------------------------------------- /PatchGenerator/Main.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberinferno/cabal-online-updater/HEAD/PatchGenerator/Main.resx -------------------------------------------------------------------------------- /PatchGenerator/PatchGenerator.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberinferno/cabal-online-updater/HEAD/PatchGenerator/PatchGenerator.csproj -------------------------------------------------------------------------------- /PatchGenerator/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberinferno/cabal-online-updater/HEAD/PatchGenerator/Program.cs -------------------------------------------------------------------------------- /PatchGenerator/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberinferno/cabal-online-updater/HEAD/PatchGenerator/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /PatchGenerator/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberinferno/cabal-online-updater/HEAD/PatchGenerator/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /PatchGenerator/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberinferno/cabal-online-updater/HEAD/PatchGenerator/Properties/Resources.resx -------------------------------------------------------------------------------- /PatchGenerator/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberinferno/cabal-online-updater/HEAD/PatchGenerator/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /PatchGenerator/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberinferno/cabal-online-updater/HEAD/PatchGenerator/Properties/Settings.settings -------------------------------------------------------------------------------- /PatchGenerator/Properties/app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberinferno/cabal-online-updater/HEAD/PatchGenerator/Properties/app.manifest -------------------------------------------------------------------------------- /PatchGenerator/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberinferno/cabal-online-updater/HEAD/PatchGenerator/app.config -------------------------------------------------------------------------------- /PatchGenerator/app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberinferno/cabal-online-updater/HEAD/PatchGenerator/app.manifest -------------------------------------------------------------------------------- /PatchGenerator/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberinferno/cabal-online-updater/HEAD/PatchGenerator/favicon.ico -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberinferno/cabal-online-updater/HEAD/README.md --------------------------------------------------------------------------------