├── .gitattributes ├── .gitignore ├── LICENSE.txt ├── README.md ├── readme.txt └── src ├── Depressurizer.sln └── Depressurizer ├── AppInfo.cs ├── AutoCat ├── AutoCat.cs ├── AutoCatConfigPanel.cs ├── AutoCatConfigPanel_Curator.Designer.cs ├── AutoCatConfigPanel_Curator.cs ├── AutoCatConfigPanel_Curator.resx ├── AutoCatConfigPanel_DevPub.Designer.cs ├── AutoCatConfigPanel_DevPub.cs ├── AutoCatConfigPanel_DevPub.resx ├── AutoCatConfigPanel_Flags.Designer.cs ├── AutoCatConfigPanel_Flags.cs ├── AutoCatConfigPanel_Flags.resx ├── AutoCatConfigPanel_Genre.Designer.cs ├── AutoCatConfigPanel_Genre.cs ├── AutoCatConfigPanel_Genre.resx ├── AutoCatConfigPanel_Group.Designer.cs ├── AutoCatConfigPanel_Group.cs ├── AutoCatConfigPanel_Group.resx ├── AutoCatConfigPanel_Hltb.Designer.cs ├── AutoCatConfigPanel_Hltb.cs ├── AutoCatConfigPanel_Hltb.resx ├── AutoCatConfigPanel_Language.Designer.cs ├── AutoCatConfigPanel_Language.cs ├── AutoCatConfigPanel_Language.resx ├── AutoCatConfigPanel_Manual.Designer.cs ├── AutoCatConfigPanel_Manual.cs ├── AutoCatConfigPanel_Manual.resx ├── AutoCatConfigPanel_Name.Designer.cs ├── AutoCatConfigPanel_Name.cs ├── AutoCatConfigPanel_Name.resx ├── AutoCatConfigPanel_Platform.Designer.cs ├── AutoCatConfigPanel_Platform.cs ├── AutoCatConfigPanel_Platform.resx ├── AutoCatConfigPanel_Tags.Designer.cs ├── AutoCatConfigPanel_Tags.cs ├── AutoCatConfigPanel_Tags.resx ├── AutoCatConfigPanel_UserScore.Designer.cs ├── AutoCatConfigPanel_UserScore.cs ├── AutoCatConfigPanel_UserScore.resx ├── AutoCatConfigPanel_VRSupport.Designer.cs ├── AutoCatConfigPanel_VRSupport.cs ├── AutoCatConfigPanel_VRSupport.resx ├── AutoCatConfigPanel_Year.Designer.cs ├── AutoCatConfigPanel_Year.cs ├── AutoCatConfigPanel_Year.resx ├── AutoCatCurator.cs ├── AutoCatDevPub.cs ├── AutoCatFlags.cs ├── AutoCatGenre.cs ├── AutoCatGroup.cs ├── AutoCatHltb.cs ├── AutoCatLanguage.cs ├── AutoCatManual.cs ├── AutoCatName.cs ├── AutoCatPlatform.cs ├── AutoCatTags.cs ├── AutoCatUserScore.cs ├── AutoCatVrSupport.cs ├── AutoCatYear.cs └── CDlgCurator.cs ├── AutomaticModeForm.Designer.cs ├── AutomaticModeForm.cs ├── AutomaticModeForm.resx ├── CDlgGetSteamID.cs ├── CDlgHltb.cs ├── CDlgUpdateProfile.cs ├── DBEdit ├── CDlgFetch.cs ├── CDlgScrape.cs ├── DBEditDlg.Designer.cs ├── DBEditDlg.cs ├── DBEditDlg.es.resx ├── DBEditDlg.resx ├── DBEditDlg.ru.resx ├── DBEditDlg.uk.resx ├── DlgGameDBEntry.Designer.cs ├── DlgGameDBEntry.cs ├── DlgGameDBEntry.es.resx ├── DlgGameDBEntry.resx ├── DlgGameDBEntry.ru.resx └── DlgGameDBEntry.uk.resx ├── Depressurizer.csproj ├── Depressurizer.csproj.DotSettings ├── DlgAbout.Designer.cs ├── DlgAbout.cs ├── DlgAbout.resx ├── DlgAutoCat.Designer.cs ├── DlgAutoCat.cs ├── DlgAutoCat.resx ├── DlgAutoCatCreate.Designer.cs ├── DlgAutoCatCreate.cs ├── DlgAutoCatCreate.resx ├── DlgAutoCatSelect.Designer.cs ├── DlgAutoCatSelect.cs ├── DlgAutoCatSelect.resx ├── DlgAutomaticModeHelper.Designer.cs ├── DlgAutomaticModeHelper.cs ├── DlgAutomaticModeHelper.nl.resx ├── DlgAutomaticModeHelper.resx ├── DlgAutomaticModeHelper.ru.resx ├── DlgAutomaticModeHelper.uk.resx ├── DlgClose.Designer.cs ├── DlgClose.cs ├── DlgClose.es.resx ├── DlgClose.nl.resx ├── DlgClose.resx ├── DlgClose.ru.resx ├── DlgClose.uk.resx ├── DlgGame.Designer.cs ├── DlgGame.cs ├── DlgGame.es.resx ├── DlgGame.nl.resx ├── DlgGame.resx ├── DlgGame.ru.resx ├── DlgGame.uk.resx ├── DlgManualDownload.Designer.cs ├── DlgManualDownload.cs ├── DlgManualDownload.es.resx ├── DlgManualDownload.nl.resx ├── DlgManualDownload.resx ├── DlgManualDownload.ru.resx ├── DlgManualDownload.uk.resx ├── DlgOptions.Designer.cs ├── DlgOptions.cs ├── DlgOptions.es.resx ├── DlgOptions.nl.resx ├── DlgOptions.resx ├── DlgOptions.ru.resx ├── DlgOptions.uk.resx ├── DlgProfile.Designer.cs ├── DlgProfile.cs ├── DlgProfile.es.resx ├── DlgProfile.nl.resx ├── DlgProfile.resx ├── DlgProfile.ru.resx ├── DlgProfile.uk.resx ├── DlgRestore.Designer.cs ├── DlgRestore.cs ├── DlgRestore.es.resx ├── DlgRestore.nl.resx ├── DlgRestore.resx ├── DlgRestore.ru.resx ├── DlgRestore.uk.resx ├── DlgSteamPath.Designer.cs ├── DlgSteamPath.cs ├── DlgSteamPath.es.resx ├── DlgSteamPath.nl.resx ├── DlgSteamPath.resx ├── DlgSteamPath.ru.resx ├── DlgSteamPath.uk.resx ├── Filter.cs ├── FodyWeavers.xml ├── GameBanners.cs ├── GameDB.cs ├── GameData.cs ├── GlobalStrings.Designer.cs ├── GlobalStrings.es.Designer.cs ├── GlobalStrings.es.resx ├── GlobalStrings.nl.Designer.cs ├── GlobalStrings.nl.resx ├── GlobalStrings.resx ├── GlobalStrings.ru.resx ├── GlobalStrings.uk.resx ├── Lib ├── AppLogger.cs ├── AppSettings.cs ├── CancelableDlg.Designer.cs ├── CancelableDlg.cs ├── CancelableDlg.es.resx ├── CancelableDlg.resx ├── CancelableDlg.ru.resx ├── CancelableDlg.uk.resx ├── DlgFatalError.cs ├── DlgFatalError.designer.cs ├── DlgFatalError.es.resx ├── DlgFatalError.resx ├── DlgFatalError.ru.resx ├── DlgFatalError.uk.resx ├── DlgGetString.Designer.cs ├── DlgGetString.cs ├── DlgGetString.es.resx ├── DlgGetString.resx ├── DlgGetString.ru.resx ├── DlgGetString.uk.resx ├── ExtListView.cs ├── ExtToolTip.cs ├── MultiColumnListViewComparer.cs ├── Options.cs └── XmlUtil.cs ├── ListViewComparer.cs ├── MainForm.Designer.cs ├── MainForm.cs ├── MainForm.es.resx ├── MainForm.nl.resx ├── MainForm.resx ├── MainForm.ru.resx ├── MainForm.uk.resx ├── OLD prgm2.ico ├── PackageInfo.cs ├── Profile.cs ├── Program.cs ├── Properties ├── AssemblyInfo.cs ├── Resources.Designer.cs ├── Resources.resx ├── Resources.ru.resx ├── Resources.uk.resx └── app.manifest ├── Settings.cs ├── Utility.cs ├── VdfFile └── VdfFileNode.cs ├── app.config ├── depressurizer_icon.ico ├── packages.config └── res ├── early_access_banner_english.png ├── early_access_banner_russian.png ├── early_access_banner_spanish.png ├── filterAll.png ├── filterAny.png ├── filterNone.png ├── tscbChecked.png ├── tscbIndeterminate.png └── tscbUnchecked.png /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theo47/Depressurizer/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theo47/Depressurizer/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theo47/Depressurizer/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theo47/Depressurizer/HEAD/README.md -------------------------------------------------------------------------------- /readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theo47/Depressurizer/HEAD/readme.txt -------------------------------------------------------------------------------- /src/Depressurizer.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theo47/Depressurizer/HEAD/src/Depressurizer.sln -------------------------------------------------------------------------------- /src/Depressurizer/AppInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theo47/Depressurizer/HEAD/src/Depressurizer/AppInfo.cs -------------------------------------------------------------------------------- /src/Depressurizer/AutoCat/AutoCat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theo47/Depressurizer/HEAD/src/Depressurizer/AutoCat/AutoCat.cs -------------------------------------------------------------------------------- /src/Depressurizer/AutoCat/AutoCatConfigPanel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theo47/Depressurizer/HEAD/src/Depressurizer/AutoCat/AutoCatConfigPanel.cs -------------------------------------------------------------------------------- /src/Depressurizer/AutoCat/AutoCatConfigPanel_Curator.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theo47/Depressurizer/HEAD/src/Depressurizer/AutoCat/AutoCatConfigPanel_Curator.Designer.cs -------------------------------------------------------------------------------- /src/Depressurizer/AutoCat/AutoCatConfigPanel_Curator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theo47/Depressurizer/HEAD/src/Depressurizer/AutoCat/AutoCatConfigPanel_Curator.cs -------------------------------------------------------------------------------- /src/Depressurizer/AutoCat/AutoCatConfigPanel_Curator.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theo47/Depressurizer/HEAD/src/Depressurizer/AutoCat/AutoCatConfigPanel_Curator.resx -------------------------------------------------------------------------------- /src/Depressurizer/AutoCat/AutoCatConfigPanel_DevPub.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theo47/Depressurizer/HEAD/src/Depressurizer/AutoCat/AutoCatConfigPanel_DevPub.Designer.cs -------------------------------------------------------------------------------- /src/Depressurizer/AutoCat/AutoCatConfigPanel_DevPub.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theo47/Depressurizer/HEAD/src/Depressurizer/AutoCat/AutoCatConfigPanel_DevPub.cs -------------------------------------------------------------------------------- /src/Depressurizer/AutoCat/AutoCatConfigPanel_DevPub.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theo47/Depressurizer/HEAD/src/Depressurizer/AutoCat/AutoCatConfigPanel_DevPub.resx -------------------------------------------------------------------------------- /src/Depressurizer/AutoCat/AutoCatConfigPanel_Flags.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theo47/Depressurizer/HEAD/src/Depressurizer/AutoCat/AutoCatConfigPanel_Flags.Designer.cs -------------------------------------------------------------------------------- /src/Depressurizer/AutoCat/AutoCatConfigPanel_Flags.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theo47/Depressurizer/HEAD/src/Depressurizer/AutoCat/AutoCatConfigPanel_Flags.cs -------------------------------------------------------------------------------- /src/Depressurizer/AutoCat/AutoCatConfigPanel_Flags.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theo47/Depressurizer/HEAD/src/Depressurizer/AutoCat/AutoCatConfigPanel_Flags.resx -------------------------------------------------------------------------------- /src/Depressurizer/AutoCat/AutoCatConfigPanel_Genre.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theo47/Depressurizer/HEAD/src/Depressurizer/AutoCat/AutoCatConfigPanel_Genre.Designer.cs -------------------------------------------------------------------------------- /src/Depressurizer/AutoCat/AutoCatConfigPanel_Genre.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theo47/Depressurizer/HEAD/src/Depressurizer/AutoCat/AutoCatConfigPanel_Genre.cs -------------------------------------------------------------------------------- /src/Depressurizer/AutoCat/AutoCatConfigPanel_Genre.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theo47/Depressurizer/HEAD/src/Depressurizer/AutoCat/AutoCatConfigPanel_Genre.resx -------------------------------------------------------------------------------- /src/Depressurizer/AutoCat/AutoCatConfigPanel_Group.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theo47/Depressurizer/HEAD/src/Depressurizer/AutoCat/AutoCatConfigPanel_Group.Designer.cs -------------------------------------------------------------------------------- /src/Depressurizer/AutoCat/AutoCatConfigPanel_Group.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theo47/Depressurizer/HEAD/src/Depressurizer/AutoCat/AutoCatConfigPanel_Group.cs -------------------------------------------------------------------------------- /src/Depressurizer/AutoCat/AutoCatConfigPanel_Group.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theo47/Depressurizer/HEAD/src/Depressurizer/AutoCat/AutoCatConfigPanel_Group.resx -------------------------------------------------------------------------------- /src/Depressurizer/AutoCat/AutoCatConfigPanel_Hltb.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theo47/Depressurizer/HEAD/src/Depressurizer/AutoCat/AutoCatConfigPanel_Hltb.Designer.cs -------------------------------------------------------------------------------- /src/Depressurizer/AutoCat/AutoCatConfigPanel_Hltb.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theo47/Depressurizer/HEAD/src/Depressurizer/AutoCat/AutoCatConfigPanel_Hltb.cs -------------------------------------------------------------------------------- /src/Depressurizer/AutoCat/AutoCatConfigPanel_Hltb.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theo47/Depressurizer/HEAD/src/Depressurizer/AutoCat/AutoCatConfigPanel_Hltb.resx -------------------------------------------------------------------------------- /src/Depressurizer/AutoCat/AutoCatConfigPanel_Language.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theo47/Depressurizer/HEAD/src/Depressurizer/AutoCat/AutoCatConfigPanel_Language.Designer.cs -------------------------------------------------------------------------------- /src/Depressurizer/AutoCat/AutoCatConfigPanel_Language.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theo47/Depressurizer/HEAD/src/Depressurizer/AutoCat/AutoCatConfigPanel_Language.cs -------------------------------------------------------------------------------- /src/Depressurizer/AutoCat/AutoCatConfigPanel_Language.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theo47/Depressurizer/HEAD/src/Depressurizer/AutoCat/AutoCatConfigPanel_Language.resx -------------------------------------------------------------------------------- /src/Depressurizer/AutoCat/AutoCatConfigPanel_Manual.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theo47/Depressurizer/HEAD/src/Depressurizer/AutoCat/AutoCatConfigPanel_Manual.Designer.cs -------------------------------------------------------------------------------- /src/Depressurizer/AutoCat/AutoCatConfigPanel_Manual.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theo47/Depressurizer/HEAD/src/Depressurizer/AutoCat/AutoCatConfigPanel_Manual.cs -------------------------------------------------------------------------------- /src/Depressurizer/AutoCat/AutoCatConfigPanel_Manual.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theo47/Depressurizer/HEAD/src/Depressurizer/AutoCat/AutoCatConfigPanel_Manual.resx -------------------------------------------------------------------------------- /src/Depressurizer/AutoCat/AutoCatConfigPanel_Name.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theo47/Depressurizer/HEAD/src/Depressurizer/AutoCat/AutoCatConfigPanel_Name.Designer.cs -------------------------------------------------------------------------------- /src/Depressurizer/AutoCat/AutoCatConfigPanel_Name.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theo47/Depressurizer/HEAD/src/Depressurizer/AutoCat/AutoCatConfigPanel_Name.cs -------------------------------------------------------------------------------- /src/Depressurizer/AutoCat/AutoCatConfigPanel_Name.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theo47/Depressurizer/HEAD/src/Depressurizer/AutoCat/AutoCatConfigPanel_Name.resx -------------------------------------------------------------------------------- /src/Depressurizer/AutoCat/AutoCatConfigPanel_Platform.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theo47/Depressurizer/HEAD/src/Depressurizer/AutoCat/AutoCatConfigPanel_Platform.Designer.cs -------------------------------------------------------------------------------- /src/Depressurizer/AutoCat/AutoCatConfigPanel_Platform.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theo47/Depressurizer/HEAD/src/Depressurizer/AutoCat/AutoCatConfigPanel_Platform.cs -------------------------------------------------------------------------------- /src/Depressurizer/AutoCat/AutoCatConfigPanel_Platform.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theo47/Depressurizer/HEAD/src/Depressurizer/AutoCat/AutoCatConfigPanel_Platform.resx -------------------------------------------------------------------------------- /src/Depressurizer/AutoCat/AutoCatConfigPanel_Tags.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theo47/Depressurizer/HEAD/src/Depressurizer/AutoCat/AutoCatConfigPanel_Tags.Designer.cs -------------------------------------------------------------------------------- /src/Depressurizer/AutoCat/AutoCatConfigPanel_Tags.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theo47/Depressurizer/HEAD/src/Depressurizer/AutoCat/AutoCatConfigPanel_Tags.cs -------------------------------------------------------------------------------- /src/Depressurizer/AutoCat/AutoCatConfigPanel_Tags.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theo47/Depressurizer/HEAD/src/Depressurizer/AutoCat/AutoCatConfigPanel_Tags.resx -------------------------------------------------------------------------------- /src/Depressurizer/AutoCat/AutoCatConfigPanel_UserScore.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theo47/Depressurizer/HEAD/src/Depressurizer/AutoCat/AutoCatConfigPanel_UserScore.Designer.cs -------------------------------------------------------------------------------- /src/Depressurizer/AutoCat/AutoCatConfigPanel_UserScore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theo47/Depressurizer/HEAD/src/Depressurizer/AutoCat/AutoCatConfigPanel_UserScore.cs -------------------------------------------------------------------------------- /src/Depressurizer/AutoCat/AutoCatConfigPanel_UserScore.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theo47/Depressurizer/HEAD/src/Depressurizer/AutoCat/AutoCatConfigPanel_UserScore.resx -------------------------------------------------------------------------------- /src/Depressurizer/AutoCat/AutoCatConfigPanel_VRSupport.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theo47/Depressurizer/HEAD/src/Depressurizer/AutoCat/AutoCatConfigPanel_VRSupport.Designer.cs -------------------------------------------------------------------------------- /src/Depressurizer/AutoCat/AutoCatConfigPanel_VRSupport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theo47/Depressurizer/HEAD/src/Depressurizer/AutoCat/AutoCatConfigPanel_VRSupport.cs -------------------------------------------------------------------------------- /src/Depressurizer/AutoCat/AutoCatConfigPanel_VRSupport.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theo47/Depressurizer/HEAD/src/Depressurizer/AutoCat/AutoCatConfigPanel_VRSupport.resx -------------------------------------------------------------------------------- /src/Depressurizer/AutoCat/AutoCatConfigPanel_Year.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theo47/Depressurizer/HEAD/src/Depressurizer/AutoCat/AutoCatConfigPanel_Year.Designer.cs -------------------------------------------------------------------------------- /src/Depressurizer/AutoCat/AutoCatConfigPanel_Year.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theo47/Depressurizer/HEAD/src/Depressurizer/AutoCat/AutoCatConfigPanel_Year.cs -------------------------------------------------------------------------------- /src/Depressurizer/AutoCat/AutoCatConfigPanel_Year.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theo47/Depressurizer/HEAD/src/Depressurizer/AutoCat/AutoCatConfigPanel_Year.resx -------------------------------------------------------------------------------- /src/Depressurizer/AutoCat/AutoCatCurator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theo47/Depressurizer/HEAD/src/Depressurizer/AutoCat/AutoCatCurator.cs -------------------------------------------------------------------------------- /src/Depressurizer/AutoCat/AutoCatDevPub.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theo47/Depressurizer/HEAD/src/Depressurizer/AutoCat/AutoCatDevPub.cs -------------------------------------------------------------------------------- /src/Depressurizer/AutoCat/AutoCatFlags.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theo47/Depressurizer/HEAD/src/Depressurizer/AutoCat/AutoCatFlags.cs -------------------------------------------------------------------------------- /src/Depressurizer/AutoCat/AutoCatGenre.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theo47/Depressurizer/HEAD/src/Depressurizer/AutoCat/AutoCatGenre.cs -------------------------------------------------------------------------------- /src/Depressurizer/AutoCat/AutoCatGroup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theo47/Depressurizer/HEAD/src/Depressurizer/AutoCat/AutoCatGroup.cs -------------------------------------------------------------------------------- /src/Depressurizer/AutoCat/AutoCatHltb.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theo47/Depressurizer/HEAD/src/Depressurizer/AutoCat/AutoCatHltb.cs -------------------------------------------------------------------------------- /src/Depressurizer/AutoCat/AutoCatLanguage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theo47/Depressurizer/HEAD/src/Depressurizer/AutoCat/AutoCatLanguage.cs -------------------------------------------------------------------------------- /src/Depressurizer/AutoCat/AutoCatManual.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theo47/Depressurizer/HEAD/src/Depressurizer/AutoCat/AutoCatManual.cs -------------------------------------------------------------------------------- /src/Depressurizer/AutoCat/AutoCatName.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theo47/Depressurizer/HEAD/src/Depressurizer/AutoCat/AutoCatName.cs -------------------------------------------------------------------------------- /src/Depressurizer/AutoCat/AutoCatPlatform.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theo47/Depressurizer/HEAD/src/Depressurizer/AutoCat/AutoCatPlatform.cs -------------------------------------------------------------------------------- /src/Depressurizer/AutoCat/AutoCatTags.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theo47/Depressurizer/HEAD/src/Depressurizer/AutoCat/AutoCatTags.cs -------------------------------------------------------------------------------- /src/Depressurizer/AutoCat/AutoCatUserScore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theo47/Depressurizer/HEAD/src/Depressurizer/AutoCat/AutoCatUserScore.cs -------------------------------------------------------------------------------- /src/Depressurizer/AutoCat/AutoCatVrSupport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theo47/Depressurizer/HEAD/src/Depressurizer/AutoCat/AutoCatVrSupport.cs -------------------------------------------------------------------------------- /src/Depressurizer/AutoCat/AutoCatYear.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theo47/Depressurizer/HEAD/src/Depressurizer/AutoCat/AutoCatYear.cs -------------------------------------------------------------------------------- /src/Depressurizer/AutoCat/CDlgCurator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theo47/Depressurizer/HEAD/src/Depressurizer/AutoCat/CDlgCurator.cs -------------------------------------------------------------------------------- /src/Depressurizer/AutomaticModeForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theo47/Depressurizer/HEAD/src/Depressurizer/AutomaticModeForm.Designer.cs -------------------------------------------------------------------------------- /src/Depressurizer/AutomaticModeForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theo47/Depressurizer/HEAD/src/Depressurizer/AutomaticModeForm.cs -------------------------------------------------------------------------------- /src/Depressurizer/AutomaticModeForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theo47/Depressurizer/HEAD/src/Depressurizer/AutomaticModeForm.resx -------------------------------------------------------------------------------- /src/Depressurizer/CDlgGetSteamID.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theo47/Depressurizer/HEAD/src/Depressurizer/CDlgGetSteamID.cs -------------------------------------------------------------------------------- /src/Depressurizer/CDlgHltb.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theo47/Depressurizer/HEAD/src/Depressurizer/CDlgHltb.cs -------------------------------------------------------------------------------- /src/Depressurizer/CDlgUpdateProfile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theo47/Depressurizer/HEAD/src/Depressurizer/CDlgUpdateProfile.cs -------------------------------------------------------------------------------- /src/Depressurizer/DBEdit/CDlgFetch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theo47/Depressurizer/HEAD/src/Depressurizer/DBEdit/CDlgFetch.cs -------------------------------------------------------------------------------- /src/Depressurizer/DBEdit/CDlgScrape.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theo47/Depressurizer/HEAD/src/Depressurizer/DBEdit/CDlgScrape.cs -------------------------------------------------------------------------------- /src/Depressurizer/DBEdit/DBEditDlg.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theo47/Depressurizer/HEAD/src/Depressurizer/DBEdit/DBEditDlg.Designer.cs -------------------------------------------------------------------------------- /src/Depressurizer/DBEdit/DBEditDlg.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theo47/Depressurizer/HEAD/src/Depressurizer/DBEdit/DBEditDlg.cs -------------------------------------------------------------------------------- /src/Depressurizer/DBEdit/DBEditDlg.es.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theo47/Depressurizer/HEAD/src/Depressurizer/DBEdit/DBEditDlg.es.resx -------------------------------------------------------------------------------- /src/Depressurizer/DBEdit/DBEditDlg.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theo47/Depressurizer/HEAD/src/Depressurizer/DBEdit/DBEditDlg.resx -------------------------------------------------------------------------------- /src/Depressurizer/DBEdit/DBEditDlg.ru.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theo47/Depressurizer/HEAD/src/Depressurizer/DBEdit/DBEditDlg.ru.resx -------------------------------------------------------------------------------- /src/Depressurizer/DBEdit/DBEditDlg.uk.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theo47/Depressurizer/HEAD/src/Depressurizer/DBEdit/DBEditDlg.uk.resx -------------------------------------------------------------------------------- /src/Depressurizer/DBEdit/DlgGameDBEntry.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theo47/Depressurizer/HEAD/src/Depressurizer/DBEdit/DlgGameDBEntry.Designer.cs -------------------------------------------------------------------------------- /src/Depressurizer/DBEdit/DlgGameDBEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theo47/Depressurizer/HEAD/src/Depressurizer/DBEdit/DlgGameDBEntry.cs -------------------------------------------------------------------------------- /src/Depressurizer/DBEdit/DlgGameDBEntry.es.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theo47/Depressurizer/HEAD/src/Depressurizer/DBEdit/DlgGameDBEntry.es.resx -------------------------------------------------------------------------------- /src/Depressurizer/DBEdit/DlgGameDBEntry.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theo47/Depressurizer/HEAD/src/Depressurizer/DBEdit/DlgGameDBEntry.resx -------------------------------------------------------------------------------- /src/Depressurizer/DBEdit/DlgGameDBEntry.ru.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theo47/Depressurizer/HEAD/src/Depressurizer/DBEdit/DlgGameDBEntry.ru.resx -------------------------------------------------------------------------------- /src/Depressurizer/DBEdit/DlgGameDBEntry.uk.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theo47/Depressurizer/HEAD/src/Depressurizer/DBEdit/DlgGameDBEntry.uk.resx -------------------------------------------------------------------------------- /src/Depressurizer/Depressurizer.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theo47/Depressurizer/HEAD/src/Depressurizer/Depressurizer.csproj -------------------------------------------------------------------------------- /src/Depressurizer/Depressurizer.csproj.DotSettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theo47/Depressurizer/HEAD/src/Depressurizer/Depressurizer.csproj.DotSettings -------------------------------------------------------------------------------- /src/Depressurizer/DlgAbout.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theo47/Depressurizer/HEAD/src/Depressurizer/DlgAbout.Designer.cs -------------------------------------------------------------------------------- /src/Depressurizer/DlgAbout.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theo47/Depressurizer/HEAD/src/Depressurizer/DlgAbout.cs -------------------------------------------------------------------------------- /src/Depressurizer/DlgAbout.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theo47/Depressurizer/HEAD/src/Depressurizer/DlgAbout.resx -------------------------------------------------------------------------------- /src/Depressurizer/DlgAutoCat.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theo47/Depressurizer/HEAD/src/Depressurizer/DlgAutoCat.Designer.cs -------------------------------------------------------------------------------- /src/Depressurizer/DlgAutoCat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theo47/Depressurizer/HEAD/src/Depressurizer/DlgAutoCat.cs -------------------------------------------------------------------------------- /src/Depressurizer/DlgAutoCat.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theo47/Depressurizer/HEAD/src/Depressurizer/DlgAutoCat.resx -------------------------------------------------------------------------------- /src/Depressurizer/DlgAutoCatCreate.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theo47/Depressurizer/HEAD/src/Depressurizer/DlgAutoCatCreate.Designer.cs -------------------------------------------------------------------------------- /src/Depressurizer/DlgAutoCatCreate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theo47/Depressurizer/HEAD/src/Depressurizer/DlgAutoCatCreate.cs -------------------------------------------------------------------------------- /src/Depressurizer/DlgAutoCatCreate.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theo47/Depressurizer/HEAD/src/Depressurizer/DlgAutoCatCreate.resx -------------------------------------------------------------------------------- /src/Depressurizer/DlgAutoCatSelect.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theo47/Depressurizer/HEAD/src/Depressurizer/DlgAutoCatSelect.Designer.cs -------------------------------------------------------------------------------- /src/Depressurizer/DlgAutoCatSelect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theo47/Depressurizer/HEAD/src/Depressurizer/DlgAutoCatSelect.cs -------------------------------------------------------------------------------- /src/Depressurizer/DlgAutoCatSelect.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theo47/Depressurizer/HEAD/src/Depressurizer/DlgAutoCatSelect.resx -------------------------------------------------------------------------------- /src/Depressurizer/DlgAutomaticModeHelper.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theo47/Depressurizer/HEAD/src/Depressurizer/DlgAutomaticModeHelper.Designer.cs -------------------------------------------------------------------------------- /src/Depressurizer/DlgAutomaticModeHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theo47/Depressurizer/HEAD/src/Depressurizer/DlgAutomaticModeHelper.cs -------------------------------------------------------------------------------- /src/Depressurizer/DlgAutomaticModeHelper.nl.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theo47/Depressurizer/HEAD/src/Depressurizer/DlgAutomaticModeHelper.nl.resx -------------------------------------------------------------------------------- /src/Depressurizer/DlgAutomaticModeHelper.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theo47/Depressurizer/HEAD/src/Depressurizer/DlgAutomaticModeHelper.resx -------------------------------------------------------------------------------- /src/Depressurizer/DlgAutomaticModeHelper.ru.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theo47/Depressurizer/HEAD/src/Depressurizer/DlgAutomaticModeHelper.ru.resx -------------------------------------------------------------------------------- /src/Depressurizer/DlgAutomaticModeHelper.uk.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theo47/Depressurizer/HEAD/src/Depressurizer/DlgAutomaticModeHelper.uk.resx -------------------------------------------------------------------------------- /src/Depressurizer/DlgClose.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theo47/Depressurizer/HEAD/src/Depressurizer/DlgClose.Designer.cs -------------------------------------------------------------------------------- /src/Depressurizer/DlgClose.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theo47/Depressurizer/HEAD/src/Depressurizer/DlgClose.cs -------------------------------------------------------------------------------- /src/Depressurizer/DlgClose.es.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theo47/Depressurizer/HEAD/src/Depressurizer/DlgClose.es.resx -------------------------------------------------------------------------------- /src/Depressurizer/DlgClose.nl.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theo47/Depressurizer/HEAD/src/Depressurizer/DlgClose.nl.resx -------------------------------------------------------------------------------- /src/Depressurizer/DlgClose.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theo47/Depressurizer/HEAD/src/Depressurizer/DlgClose.resx -------------------------------------------------------------------------------- /src/Depressurizer/DlgClose.ru.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theo47/Depressurizer/HEAD/src/Depressurizer/DlgClose.ru.resx -------------------------------------------------------------------------------- /src/Depressurizer/DlgClose.uk.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theo47/Depressurizer/HEAD/src/Depressurizer/DlgClose.uk.resx -------------------------------------------------------------------------------- /src/Depressurizer/DlgGame.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theo47/Depressurizer/HEAD/src/Depressurizer/DlgGame.Designer.cs -------------------------------------------------------------------------------- /src/Depressurizer/DlgGame.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theo47/Depressurizer/HEAD/src/Depressurizer/DlgGame.cs -------------------------------------------------------------------------------- /src/Depressurizer/DlgGame.es.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theo47/Depressurizer/HEAD/src/Depressurizer/DlgGame.es.resx -------------------------------------------------------------------------------- /src/Depressurizer/DlgGame.nl.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theo47/Depressurizer/HEAD/src/Depressurizer/DlgGame.nl.resx -------------------------------------------------------------------------------- /src/Depressurizer/DlgGame.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theo47/Depressurizer/HEAD/src/Depressurizer/DlgGame.resx -------------------------------------------------------------------------------- /src/Depressurizer/DlgGame.ru.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theo47/Depressurizer/HEAD/src/Depressurizer/DlgGame.ru.resx -------------------------------------------------------------------------------- /src/Depressurizer/DlgGame.uk.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theo47/Depressurizer/HEAD/src/Depressurizer/DlgGame.uk.resx -------------------------------------------------------------------------------- /src/Depressurizer/DlgManualDownload.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theo47/Depressurizer/HEAD/src/Depressurizer/DlgManualDownload.Designer.cs -------------------------------------------------------------------------------- /src/Depressurizer/DlgManualDownload.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theo47/Depressurizer/HEAD/src/Depressurizer/DlgManualDownload.cs -------------------------------------------------------------------------------- /src/Depressurizer/DlgManualDownload.es.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theo47/Depressurizer/HEAD/src/Depressurizer/DlgManualDownload.es.resx -------------------------------------------------------------------------------- /src/Depressurizer/DlgManualDownload.nl.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theo47/Depressurizer/HEAD/src/Depressurizer/DlgManualDownload.nl.resx -------------------------------------------------------------------------------- /src/Depressurizer/DlgManualDownload.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theo47/Depressurizer/HEAD/src/Depressurizer/DlgManualDownload.resx -------------------------------------------------------------------------------- /src/Depressurizer/DlgManualDownload.ru.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theo47/Depressurizer/HEAD/src/Depressurizer/DlgManualDownload.ru.resx -------------------------------------------------------------------------------- /src/Depressurizer/DlgManualDownload.uk.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theo47/Depressurizer/HEAD/src/Depressurizer/DlgManualDownload.uk.resx -------------------------------------------------------------------------------- /src/Depressurizer/DlgOptions.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theo47/Depressurizer/HEAD/src/Depressurizer/DlgOptions.Designer.cs -------------------------------------------------------------------------------- /src/Depressurizer/DlgOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theo47/Depressurizer/HEAD/src/Depressurizer/DlgOptions.cs -------------------------------------------------------------------------------- /src/Depressurizer/DlgOptions.es.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theo47/Depressurizer/HEAD/src/Depressurizer/DlgOptions.es.resx -------------------------------------------------------------------------------- /src/Depressurizer/DlgOptions.nl.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theo47/Depressurizer/HEAD/src/Depressurizer/DlgOptions.nl.resx -------------------------------------------------------------------------------- /src/Depressurizer/DlgOptions.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theo47/Depressurizer/HEAD/src/Depressurizer/DlgOptions.resx -------------------------------------------------------------------------------- /src/Depressurizer/DlgOptions.ru.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theo47/Depressurizer/HEAD/src/Depressurizer/DlgOptions.ru.resx -------------------------------------------------------------------------------- /src/Depressurizer/DlgOptions.uk.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theo47/Depressurizer/HEAD/src/Depressurizer/DlgOptions.uk.resx -------------------------------------------------------------------------------- /src/Depressurizer/DlgProfile.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theo47/Depressurizer/HEAD/src/Depressurizer/DlgProfile.Designer.cs -------------------------------------------------------------------------------- /src/Depressurizer/DlgProfile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theo47/Depressurizer/HEAD/src/Depressurizer/DlgProfile.cs -------------------------------------------------------------------------------- /src/Depressurizer/DlgProfile.es.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theo47/Depressurizer/HEAD/src/Depressurizer/DlgProfile.es.resx -------------------------------------------------------------------------------- /src/Depressurizer/DlgProfile.nl.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theo47/Depressurizer/HEAD/src/Depressurizer/DlgProfile.nl.resx -------------------------------------------------------------------------------- /src/Depressurizer/DlgProfile.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theo47/Depressurizer/HEAD/src/Depressurizer/DlgProfile.resx -------------------------------------------------------------------------------- /src/Depressurizer/DlgProfile.ru.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theo47/Depressurizer/HEAD/src/Depressurizer/DlgProfile.ru.resx -------------------------------------------------------------------------------- /src/Depressurizer/DlgProfile.uk.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theo47/Depressurizer/HEAD/src/Depressurizer/DlgProfile.uk.resx -------------------------------------------------------------------------------- /src/Depressurizer/DlgRestore.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theo47/Depressurizer/HEAD/src/Depressurizer/DlgRestore.Designer.cs -------------------------------------------------------------------------------- /src/Depressurizer/DlgRestore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theo47/Depressurizer/HEAD/src/Depressurizer/DlgRestore.cs -------------------------------------------------------------------------------- /src/Depressurizer/DlgRestore.es.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theo47/Depressurizer/HEAD/src/Depressurizer/DlgRestore.es.resx -------------------------------------------------------------------------------- /src/Depressurizer/DlgRestore.nl.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theo47/Depressurizer/HEAD/src/Depressurizer/DlgRestore.nl.resx -------------------------------------------------------------------------------- /src/Depressurizer/DlgRestore.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theo47/Depressurizer/HEAD/src/Depressurizer/DlgRestore.resx -------------------------------------------------------------------------------- /src/Depressurizer/DlgRestore.ru.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theo47/Depressurizer/HEAD/src/Depressurizer/DlgRestore.ru.resx -------------------------------------------------------------------------------- /src/Depressurizer/DlgRestore.uk.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theo47/Depressurizer/HEAD/src/Depressurizer/DlgRestore.uk.resx -------------------------------------------------------------------------------- /src/Depressurizer/DlgSteamPath.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theo47/Depressurizer/HEAD/src/Depressurizer/DlgSteamPath.Designer.cs -------------------------------------------------------------------------------- /src/Depressurizer/DlgSteamPath.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theo47/Depressurizer/HEAD/src/Depressurizer/DlgSteamPath.cs -------------------------------------------------------------------------------- /src/Depressurizer/DlgSteamPath.es.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theo47/Depressurizer/HEAD/src/Depressurizer/DlgSteamPath.es.resx -------------------------------------------------------------------------------- /src/Depressurizer/DlgSteamPath.nl.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theo47/Depressurizer/HEAD/src/Depressurizer/DlgSteamPath.nl.resx -------------------------------------------------------------------------------- /src/Depressurizer/DlgSteamPath.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theo47/Depressurizer/HEAD/src/Depressurizer/DlgSteamPath.resx -------------------------------------------------------------------------------- /src/Depressurizer/DlgSteamPath.ru.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theo47/Depressurizer/HEAD/src/Depressurizer/DlgSteamPath.ru.resx -------------------------------------------------------------------------------- /src/Depressurizer/DlgSteamPath.uk.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theo47/Depressurizer/HEAD/src/Depressurizer/DlgSteamPath.uk.resx -------------------------------------------------------------------------------- /src/Depressurizer/Filter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theo47/Depressurizer/HEAD/src/Depressurizer/Filter.cs -------------------------------------------------------------------------------- /src/Depressurizer/FodyWeavers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theo47/Depressurizer/HEAD/src/Depressurizer/FodyWeavers.xml -------------------------------------------------------------------------------- /src/Depressurizer/GameBanners.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theo47/Depressurizer/HEAD/src/Depressurizer/GameBanners.cs -------------------------------------------------------------------------------- /src/Depressurizer/GameDB.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theo47/Depressurizer/HEAD/src/Depressurizer/GameDB.cs -------------------------------------------------------------------------------- /src/Depressurizer/GameData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theo47/Depressurizer/HEAD/src/Depressurizer/GameData.cs -------------------------------------------------------------------------------- /src/Depressurizer/GlobalStrings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theo47/Depressurizer/HEAD/src/Depressurizer/GlobalStrings.Designer.cs -------------------------------------------------------------------------------- /src/Depressurizer/GlobalStrings.es.Designer.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Depressurizer/GlobalStrings.es.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theo47/Depressurizer/HEAD/src/Depressurizer/GlobalStrings.es.resx -------------------------------------------------------------------------------- /src/Depressurizer/GlobalStrings.nl.Designer.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Depressurizer/GlobalStrings.nl.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theo47/Depressurizer/HEAD/src/Depressurizer/GlobalStrings.nl.resx -------------------------------------------------------------------------------- /src/Depressurizer/GlobalStrings.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theo47/Depressurizer/HEAD/src/Depressurizer/GlobalStrings.resx -------------------------------------------------------------------------------- /src/Depressurizer/GlobalStrings.ru.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theo47/Depressurizer/HEAD/src/Depressurizer/GlobalStrings.ru.resx -------------------------------------------------------------------------------- /src/Depressurizer/GlobalStrings.uk.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theo47/Depressurizer/HEAD/src/Depressurizer/GlobalStrings.uk.resx -------------------------------------------------------------------------------- /src/Depressurizer/Lib/AppLogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theo47/Depressurizer/HEAD/src/Depressurizer/Lib/AppLogger.cs -------------------------------------------------------------------------------- /src/Depressurizer/Lib/AppSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theo47/Depressurizer/HEAD/src/Depressurizer/Lib/AppSettings.cs -------------------------------------------------------------------------------- /src/Depressurizer/Lib/CancelableDlg.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theo47/Depressurizer/HEAD/src/Depressurizer/Lib/CancelableDlg.Designer.cs -------------------------------------------------------------------------------- /src/Depressurizer/Lib/CancelableDlg.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theo47/Depressurizer/HEAD/src/Depressurizer/Lib/CancelableDlg.cs -------------------------------------------------------------------------------- /src/Depressurizer/Lib/CancelableDlg.es.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theo47/Depressurizer/HEAD/src/Depressurizer/Lib/CancelableDlg.es.resx -------------------------------------------------------------------------------- /src/Depressurizer/Lib/CancelableDlg.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theo47/Depressurizer/HEAD/src/Depressurizer/Lib/CancelableDlg.resx -------------------------------------------------------------------------------- /src/Depressurizer/Lib/CancelableDlg.ru.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theo47/Depressurizer/HEAD/src/Depressurizer/Lib/CancelableDlg.ru.resx -------------------------------------------------------------------------------- /src/Depressurizer/Lib/CancelableDlg.uk.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theo47/Depressurizer/HEAD/src/Depressurizer/Lib/CancelableDlg.uk.resx -------------------------------------------------------------------------------- /src/Depressurizer/Lib/DlgFatalError.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theo47/Depressurizer/HEAD/src/Depressurizer/Lib/DlgFatalError.cs -------------------------------------------------------------------------------- /src/Depressurizer/Lib/DlgFatalError.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theo47/Depressurizer/HEAD/src/Depressurizer/Lib/DlgFatalError.designer.cs -------------------------------------------------------------------------------- /src/Depressurizer/Lib/DlgFatalError.es.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theo47/Depressurizer/HEAD/src/Depressurizer/Lib/DlgFatalError.es.resx -------------------------------------------------------------------------------- /src/Depressurizer/Lib/DlgFatalError.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theo47/Depressurizer/HEAD/src/Depressurizer/Lib/DlgFatalError.resx -------------------------------------------------------------------------------- /src/Depressurizer/Lib/DlgFatalError.ru.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theo47/Depressurizer/HEAD/src/Depressurizer/Lib/DlgFatalError.ru.resx -------------------------------------------------------------------------------- /src/Depressurizer/Lib/DlgFatalError.uk.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theo47/Depressurizer/HEAD/src/Depressurizer/Lib/DlgFatalError.uk.resx -------------------------------------------------------------------------------- /src/Depressurizer/Lib/DlgGetString.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theo47/Depressurizer/HEAD/src/Depressurizer/Lib/DlgGetString.Designer.cs -------------------------------------------------------------------------------- /src/Depressurizer/Lib/DlgGetString.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theo47/Depressurizer/HEAD/src/Depressurizer/Lib/DlgGetString.cs -------------------------------------------------------------------------------- /src/Depressurizer/Lib/DlgGetString.es.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theo47/Depressurizer/HEAD/src/Depressurizer/Lib/DlgGetString.es.resx -------------------------------------------------------------------------------- /src/Depressurizer/Lib/DlgGetString.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theo47/Depressurizer/HEAD/src/Depressurizer/Lib/DlgGetString.resx -------------------------------------------------------------------------------- /src/Depressurizer/Lib/DlgGetString.ru.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theo47/Depressurizer/HEAD/src/Depressurizer/Lib/DlgGetString.ru.resx -------------------------------------------------------------------------------- /src/Depressurizer/Lib/DlgGetString.uk.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theo47/Depressurizer/HEAD/src/Depressurizer/Lib/DlgGetString.uk.resx -------------------------------------------------------------------------------- /src/Depressurizer/Lib/ExtListView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theo47/Depressurizer/HEAD/src/Depressurizer/Lib/ExtListView.cs -------------------------------------------------------------------------------- /src/Depressurizer/Lib/ExtToolTip.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theo47/Depressurizer/HEAD/src/Depressurizer/Lib/ExtToolTip.cs -------------------------------------------------------------------------------- /src/Depressurizer/Lib/MultiColumnListViewComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theo47/Depressurizer/HEAD/src/Depressurizer/Lib/MultiColumnListViewComparer.cs -------------------------------------------------------------------------------- /src/Depressurizer/Lib/Options.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theo47/Depressurizer/HEAD/src/Depressurizer/Lib/Options.cs -------------------------------------------------------------------------------- /src/Depressurizer/Lib/XmlUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theo47/Depressurizer/HEAD/src/Depressurizer/Lib/XmlUtil.cs -------------------------------------------------------------------------------- /src/Depressurizer/ListViewComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theo47/Depressurizer/HEAD/src/Depressurizer/ListViewComparer.cs -------------------------------------------------------------------------------- /src/Depressurizer/MainForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theo47/Depressurizer/HEAD/src/Depressurizer/MainForm.Designer.cs -------------------------------------------------------------------------------- /src/Depressurizer/MainForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theo47/Depressurizer/HEAD/src/Depressurizer/MainForm.cs -------------------------------------------------------------------------------- /src/Depressurizer/MainForm.es.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theo47/Depressurizer/HEAD/src/Depressurizer/MainForm.es.resx -------------------------------------------------------------------------------- /src/Depressurizer/MainForm.nl.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theo47/Depressurizer/HEAD/src/Depressurizer/MainForm.nl.resx -------------------------------------------------------------------------------- /src/Depressurizer/MainForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theo47/Depressurizer/HEAD/src/Depressurizer/MainForm.resx -------------------------------------------------------------------------------- /src/Depressurizer/MainForm.ru.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theo47/Depressurizer/HEAD/src/Depressurizer/MainForm.ru.resx -------------------------------------------------------------------------------- /src/Depressurizer/MainForm.uk.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theo47/Depressurizer/HEAD/src/Depressurizer/MainForm.uk.resx -------------------------------------------------------------------------------- /src/Depressurizer/OLD prgm2.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theo47/Depressurizer/HEAD/src/Depressurizer/OLD prgm2.ico -------------------------------------------------------------------------------- /src/Depressurizer/PackageInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theo47/Depressurizer/HEAD/src/Depressurizer/PackageInfo.cs -------------------------------------------------------------------------------- /src/Depressurizer/Profile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theo47/Depressurizer/HEAD/src/Depressurizer/Profile.cs -------------------------------------------------------------------------------- /src/Depressurizer/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theo47/Depressurizer/HEAD/src/Depressurizer/Program.cs -------------------------------------------------------------------------------- /src/Depressurizer/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theo47/Depressurizer/HEAD/src/Depressurizer/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Depressurizer/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theo47/Depressurizer/HEAD/src/Depressurizer/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /src/Depressurizer/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theo47/Depressurizer/HEAD/src/Depressurizer/Properties/Resources.resx -------------------------------------------------------------------------------- /src/Depressurizer/Properties/Resources.ru.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theo47/Depressurizer/HEAD/src/Depressurizer/Properties/Resources.ru.resx -------------------------------------------------------------------------------- /src/Depressurizer/Properties/Resources.uk.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theo47/Depressurizer/HEAD/src/Depressurizer/Properties/Resources.uk.resx -------------------------------------------------------------------------------- /src/Depressurizer/Properties/app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theo47/Depressurizer/HEAD/src/Depressurizer/Properties/app.manifest -------------------------------------------------------------------------------- /src/Depressurizer/Settings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theo47/Depressurizer/HEAD/src/Depressurizer/Settings.cs -------------------------------------------------------------------------------- /src/Depressurizer/Utility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theo47/Depressurizer/HEAD/src/Depressurizer/Utility.cs -------------------------------------------------------------------------------- /src/Depressurizer/VdfFile/VdfFileNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theo47/Depressurizer/HEAD/src/Depressurizer/VdfFile/VdfFileNode.cs -------------------------------------------------------------------------------- /src/Depressurizer/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theo47/Depressurizer/HEAD/src/Depressurizer/app.config -------------------------------------------------------------------------------- /src/Depressurizer/depressurizer_icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theo47/Depressurizer/HEAD/src/Depressurizer/depressurizer_icon.ico -------------------------------------------------------------------------------- /src/Depressurizer/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theo47/Depressurizer/HEAD/src/Depressurizer/packages.config -------------------------------------------------------------------------------- /src/Depressurizer/res/early_access_banner_english.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theo47/Depressurizer/HEAD/src/Depressurizer/res/early_access_banner_english.png -------------------------------------------------------------------------------- /src/Depressurizer/res/early_access_banner_russian.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theo47/Depressurizer/HEAD/src/Depressurizer/res/early_access_banner_russian.png -------------------------------------------------------------------------------- /src/Depressurizer/res/early_access_banner_spanish.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theo47/Depressurizer/HEAD/src/Depressurizer/res/early_access_banner_spanish.png -------------------------------------------------------------------------------- /src/Depressurizer/res/filterAll.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theo47/Depressurizer/HEAD/src/Depressurizer/res/filterAll.png -------------------------------------------------------------------------------- /src/Depressurizer/res/filterAny.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theo47/Depressurizer/HEAD/src/Depressurizer/res/filterAny.png -------------------------------------------------------------------------------- /src/Depressurizer/res/filterNone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theo47/Depressurizer/HEAD/src/Depressurizer/res/filterNone.png -------------------------------------------------------------------------------- /src/Depressurizer/res/tscbChecked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theo47/Depressurizer/HEAD/src/Depressurizer/res/tscbChecked.png -------------------------------------------------------------------------------- /src/Depressurizer/res/tscbIndeterminate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theo47/Depressurizer/HEAD/src/Depressurizer/res/tscbIndeterminate.png -------------------------------------------------------------------------------- /src/Depressurizer/res/tscbUnchecked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theo47/Depressurizer/HEAD/src/Depressurizer/res/tscbUnchecked.png --------------------------------------------------------------------------------