├── .gitignore ├── DownloadProgressReporter ├── DownloadProgressBar.Designer.cs ├── DownloadProgressBar.cs ├── DownloadProgressBar.resx ├── DownloadProgressReporter.csproj ├── Icon.ico └── Properties │ └── AssemblyInfo.cs ├── Preview └── 0.jpg ├── README.md ├── SteamDepotDownloader-GUI.sln └── SteamDepotDownloader-GUI ├── AdvancedInput.Designer.cs ├── AdvancedInput.cs ├── AdvancedInput.resx ├── App.config ├── AppmanifestGenerator.Designer.cs ├── AppmanifestGenerator.cs ├── AppmanifestGenerator.resx ├── AppmanifestGenerator.zh.resx ├── AutoLogin.Designer.cs ├── AutoLogin.cs ├── AutoLogin.resx ├── AutoLogin.zh.resx ├── CDNClientPool.cs ├── Config.cs ├── ConfigStore.cs ├── ContentDownloader.cs ├── FileSelector.Designer.cs ├── FileSelector.cs ├── FileSelector.resx ├── FileSelector.zh.resx ├── Icon.ico ├── Log.Designer.cs ├── Log.cs ├── Log.resx ├── Logger.cs ├── Login.Designer.cs ├── Login.cs ├── Login.resx ├── Login.zh.resx ├── Program.cs ├── Properties ├── AssemblyInfo.cs ├── Resources.Designer.cs ├── Resources.resx ├── Resources.zh.resx ├── Settings.Designer.cs └── Settings.settings ├── ProtoManifest.cs ├── Resources.zh.resx ├── Resources ├── Icon.png ├── Steam.png └── SteamGray.png ├── Settings.Designer.cs ├── Settings.cs ├── Settings.resx ├── Settings.zh.resx ├── Steam3Session.cs ├── SteamDepotDownloader-GUI.csproj ├── SteamDepotDownloaderForm.Designer.cs ├── SteamDepotDownloaderForm.cs ├── SteamDepotDownloaderForm.resx ├── SteamDepotDownloaderForm.zh.resx ├── Util.cs ├── Waiting.Designer.cs ├── Waiting.cs ├── Waiting.resx └── packages.config /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jack-Myth/SteamDepotDownloader-GUI/HEAD/.gitignore -------------------------------------------------------------------------------- /DownloadProgressReporter/DownloadProgressBar.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jack-Myth/SteamDepotDownloader-GUI/HEAD/DownloadProgressReporter/DownloadProgressBar.Designer.cs -------------------------------------------------------------------------------- /DownloadProgressReporter/DownloadProgressBar.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jack-Myth/SteamDepotDownloader-GUI/HEAD/DownloadProgressReporter/DownloadProgressBar.cs -------------------------------------------------------------------------------- /DownloadProgressReporter/DownloadProgressBar.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jack-Myth/SteamDepotDownloader-GUI/HEAD/DownloadProgressReporter/DownloadProgressBar.resx -------------------------------------------------------------------------------- /DownloadProgressReporter/DownloadProgressReporter.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jack-Myth/SteamDepotDownloader-GUI/HEAD/DownloadProgressReporter/DownloadProgressReporter.csproj -------------------------------------------------------------------------------- /DownloadProgressReporter/Icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jack-Myth/SteamDepotDownloader-GUI/HEAD/DownloadProgressReporter/Icon.ico -------------------------------------------------------------------------------- /DownloadProgressReporter/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jack-Myth/SteamDepotDownloader-GUI/HEAD/DownloadProgressReporter/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Preview/0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jack-Myth/SteamDepotDownloader-GUI/HEAD/Preview/0.jpg -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jack-Myth/SteamDepotDownloader-GUI/HEAD/README.md -------------------------------------------------------------------------------- /SteamDepotDownloader-GUI.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jack-Myth/SteamDepotDownloader-GUI/HEAD/SteamDepotDownloader-GUI.sln -------------------------------------------------------------------------------- /SteamDepotDownloader-GUI/AdvancedInput.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jack-Myth/SteamDepotDownloader-GUI/HEAD/SteamDepotDownloader-GUI/AdvancedInput.Designer.cs -------------------------------------------------------------------------------- /SteamDepotDownloader-GUI/AdvancedInput.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jack-Myth/SteamDepotDownloader-GUI/HEAD/SteamDepotDownloader-GUI/AdvancedInput.cs -------------------------------------------------------------------------------- /SteamDepotDownloader-GUI/AdvancedInput.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jack-Myth/SteamDepotDownloader-GUI/HEAD/SteamDepotDownloader-GUI/AdvancedInput.resx -------------------------------------------------------------------------------- /SteamDepotDownloader-GUI/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jack-Myth/SteamDepotDownloader-GUI/HEAD/SteamDepotDownloader-GUI/App.config -------------------------------------------------------------------------------- /SteamDepotDownloader-GUI/AppmanifestGenerator.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jack-Myth/SteamDepotDownloader-GUI/HEAD/SteamDepotDownloader-GUI/AppmanifestGenerator.Designer.cs -------------------------------------------------------------------------------- /SteamDepotDownloader-GUI/AppmanifestGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jack-Myth/SteamDepotDownloader-GUI/HEAD/SteamDepotDownloader-GUI/AppmanifestGenerator.cs -------------------------------------------------------------------------------- /SteamDepotDownloader-GUI/AppmanifestGenerator.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jack-Myth/SteamDepotDownloader-GUI/HEAD/SteamDepotDownloader-GUI/AppmanifestGenerator.resx -------------------------------------------------------------------------------- /SteamDepotDownloader-GUI/AppmanifestGenerator.zh.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jack-Myth/SteamDepotDownloader-GUI/HEAD/SteamDepotDownloader-GUI/AppmanifestGenerator.zh.resx -------------------------------------------------------------------------------- /SteamDepotDownloader-GUI/AutoLogin.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jack-Myth/SteamDepotDownloader-GUI/HEAD/SteamDepotDownloader-GUI/AutoLogin.Designer.cs -------------------------------------------------------------------------------- /SteamDepotDownloader-GUI/AutoLogin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jack-Myth/SteamDepotDownloader-GUI/HEAD/SteamDepotDownloader-GUI/AutoLogin.cs -------------------------------------------------------------------------------- /SteamDepotDownloader-GUI/AutoLogin.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jack-Myth/SteamDepotDownloader-GUI/HEAD/SteamDepotDownloader-GUI/AutoLogin.resx -------------------------------------------------------------------------------- /SteamDepotDownloader-GUI/AutoLogin.zh.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jack-Myth/SteamDepotDownloader-GUI/HEAD/SteamDepotDownloader-GUI/AutoLogin.zh.resx -------------------------------------------------------------------------------- /SteamDepotDownloader-GUI/CDNClientPool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jack-Myth/SteamDepotDownloader-GUI/HEAD/SteamDepotDownloader-GUI/CDNClientPool.cs -------------------------------------------------------------------------------- /SteamDepotDownloader-GUI/Config.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jack-Myth/SteamDepotDownloader-GUI/HEAD/SteamDepotDownloader-GUI/Config.cs -------------------------------------------------------------------------------- /SteamDepotDownloader-GUI/ConfigStore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jack-Myth/SteamDepotDownloader-GUI/HEAD/SteamDepotDownloader-GUI/ConfigStore.cs -------------------------------------------------------------------------------- /SteamDepotDownloader-GUI/ContentDownloader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jack-Myth/SteamDepotDownloader-GUI/HEAD/SteamDepotDownloader-GUI/ContentDownloader.cs -------------------------------------------------------------------------------- /SteamDepotDownloader-GUI/FileSelector.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jack-Myth/SteamDepotDownloader-GUI/HEAD/SteamDepotDownloader-GUI/FileSelector.Designer.cs -------------------------------------------------------------------------------- /SteamDepotDownloader-GUI/FileSelector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jack-Myth/SteamDepotDownloader-GUI/HEAD/SteamDepotDownloader-GUI/FileSelector.cs -------------------------------------------------------------------------------- /SteamDepotDownloader-GUI/FileSelector.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jack-Myth/SteamDepotDownloader-GUI/HEAD/SteamDepotDownloader-GUI/FileSelector.resx -------------------------------------------------------------------------------- /SteamDepotDownloader-GUI/FileSelector.zh.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jack-Myth/SteamDepotDownloader-GUI/HEAD/SteamDepotDownloader-GUI/FileSelector.zh.resx -------------------------------------------------------------------------------- /SteamDepotDownloader-GUI/Icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jack-Myth/SteamDepotDownloader-GUI/HEAD/SteamDepotDownloader-GUI/Icon.ico -------------------------------------------------------------------------------- /SteamDepotDownloader-GUI/Log.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jack-Myth/SteamDepotDownloader-GUI/HEAD/SteamDepotDownloader-GUI/Log.Designer.cs -------------------------------------------------------------------------------- /SteamDepotDownloader-GUI/Log.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jack-Myth/SteamDepotDownloader-GUI/HEAD/SteamDepotDownloader-GUI/Log.cs -------------------------------------------------------------------------------- /SteamDepotDownloader-GUI/Log.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jack-Myth/SteamDepotDownloader-GUI/HEAD/SteamDepotDownloader-GUI/Log.resx -------------------------------------------------------------------------------- /SteamDepotDownloader-GUI/Logger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jack-Myth/SteamDepotDownloader-GUI/HEAD/SteamDepotDownloader-GUI/Logger.cs -------------------------------------------------------------------------------- /SteamDepotDownloader-GUI/Login.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jack-Myth/SteamDepotDownloader-GUI/HEAD/SteamDepotDownloader-GUI/Login.Designer.cs -------------------------------------------------------------------------------- /SteamDepotDownloader-GUI/Login.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jack-Myth/SteamDepotDownloader-GUI/HEAD/SteamDepotDownloader-GUI/Login.cs -------------------------------------------------------------------------------- /SteamDepotDownloader-GUI/Login.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jack-Myth/SteamDepotDownloader-GUI/HEAD/SteamDepotDownloader-GUI/Login.resx -------------------------------------------------------------------------------- /SteamDepotDownloader-GUI/Login.zh.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jack-Myth/SteamDepotDownloader-GUI/HEAD/SteamDepotDownloader-GUI/Login.zh.resx -------------------------------------------------------------------------------- /SteamDepotDownloader-GUI/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jack-Myth/SteamDepotDownloader-GUI/HEAD/SteamDepotDownloader-GUI/Program.cs -------------------------------------------------------------------------------- /SteamDepotDownloader-GUI/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jack-Myth/SteamDepotDownloader-GUI/HEAD/SteamDepotDownloader-GUI/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /SteamDepotDownloader-GUI/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jack-Myth/SteamDepotDownloader-GUI/HEAD/SteamDepotDownloader-GUI/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /SteamDepotDownloader-GUI/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jack-Myth/SteamDepotDownloader-GUI/HEAD/SteamDepotDownloader-GUI/Properties/Resources.resx -------------------------------------------------------------------------------- /SteamDepotDownloader-GUI/Properties/Resources.zh.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jack-Myth/SteamDepotDownloader-GUI/HEAD/SteamDepotDownloader-GUI/Properties/Resources.zh.resx -------------------------------------------------------------------------------- /SteamDepotDownloader-GUI/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jack-Myth/SteamDepotDownloader-GUI/HEAD/SteamDepotDownloader-GUI/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /SteamDepotDownloader-GUI/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jack-Myth/SteamDepotDownloader-GUI/HEAD/SteamDepotDownloader-GUI/Properties/Settings.settings -------------------------------------------------------------------------------- /SteamDepotDownloader-GUI/ProtoManifest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jack-Myth/SteamDepotDownloader-GUI/HEAD/SteamDepotDownloader-GUI/ProtoManifest.cs -------------------------------------------------------------------------------- /SteamDepotDownloader-GUI/Resources.zh.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jack-Myth/SteamDepotDownloader-GUI/HEAD/SteamDepotDownloader-GUI/Resources.zh.resx -------------------------------------------------------------------------------- /SteamDepotDownloader-GUI/Resources/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jack-Myth/SteamDepotDownloader-GUI/HEAD/SteamDepotDownloader-GUI/Resources/Icon.png -------------------------------------------------------------------------------- /SteamDepotDownloader-GUI/Resources/Steam.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jack-Myth/SteamDepotDownloader-GUI/HEAD/SteamDepotDownloader-GUI/Resources/Steam.png -------------------------------------------------------------------------------- /SteamDepotDownloader-GUI/Resources/SteamGray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jack-Myth/SteamDepotDownloader-GUI/HEAD/SteamDepotDownloader-GUI/Resources/SteamGray.png -------------------------------------------------------------------------------- /SteamDepotDownloader-GUI/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jack-Myth/SteamDepotDownloader-GUI/HEAD/SteamDepotDownloader-GUI/Settings.Designer.cs -------------------------------------------------------------------------------- /SteamDepotDownloader-GUI/Settings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jack-Myth/SteamDepotDownloader-GUI/HEAD/SteamDepotDownloader-GUI/Settings.cs -------------------------------------------------------------------------------- /SteamDepotDownloader-GUI/Settings.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jack-Myth/SteamDepotDownloader-GUI/HEAD/SteamDepotDownloader-GUI/Settings.resx -------------------------------------------------------------------------------- /SteamDepotDownloader-GUI/Settings.zh.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jack-Myth/SteamDepotDownloader-GUI/HEAD/SteamDepotDownloader-GUI/Settings.zh.resx -------------------------------------------------------------------------------- /SteamDepotDownloader-GUI/Steam3Session.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jack-Myth/SteamDepotDownloader-GUI/HEAD/SteamDepotDownloader-GUI/Steam3Session.cs -------------------------------------------------------------------------------- /SteamDepotDownloader-GUI/SteamDepotDownloader-GUI.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jack-Myth/SteamDepotDownloader-GUI/HEAD/SteamDepotDownloader-GUI/SteamDepotDownloader-GUI.csproj -------------------------------------------------------------------------------- /SteamDepotDownloader-GUI/SteamDepotDownloaderForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jack-Myth/SteamDepotDownloader-GUI/HEAD/SteamDepotDownloader-GUI/SteamDepotDownloaderForm.Designer.cs -------------------------------------------------------------------------------- /SteamDepotDownloader-GUI/SteamDepotDownloaderForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jack-Myth/SteamDepotDownloader-GUI/HEAD/SteamDepotDownloader-GUI/SteamDepotDownloaderForm.cs -------------------------------------------------------------------------------- /SteamDepotDownloader-GUI/SteamDepotDownloaderForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jack-Myth/SteamDepotDownloader-GUI/HEAD/SteamDepotDownloader-GUI/SteamDepotDownloaderForm.resx -------------------------------------------------------------------------------- /SteamDepotDownloader-GUI/SteamDepotDownloaderForm.zh.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jack-Myth/SteamDepotDownloader-GUI/HEAD/SteamDepotDownloader-GUI/SteamDepotDownloaderForm.zh.resx -------------------------------------------------------------------------------- /SteamDepotDownloader-GUI/Util.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jack-Myth/SteamDepotDownloader-GUI/HEAD/SteamDepotDownloader-GUI/Util.cs -------------------------------------------------------------------------------- /SteamDepotDownloader-GUI/Waiting.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jack-Myth/SteamDepotDownloader-GUI/HEAD/SteamDepotDownloader-GUI/Waiting.Designer.cs -------------------------------------------------------------------------------- /SteamDepotDownloader-GUI/Waiting.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jack-Myth/SteamDepotDownloader-GUI/HEAD/SteamDepotDownloader-GUI/Waiting.cs -------------------------------------------------------------------------------- /SteamDepotDownloader-GUI/Waiting.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jack-Myth/SteamDepotDownloader-GUI/HEAD/SteamDepotDownloader-GUI/Waiting.resx -------------------------------------------------------------------------------- /SteamDepotDownloader-GUI/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jack-Myth/SteamDepotDownloader-GUI/HEAD/SteamDepotDownloader-GUI/packages.config --------------------------------------------------------------------------------