├── .github └── workflows │ ├── README.md │ ├── cleanup-old-releases.yml │ └── release.yml ├── .gitignore ├── App.xaml ├── App.xaml.cs ├── Converters └── ValueConverters.cs ├── DISCORD_CHANGELOG.md ├── DepotDownloader ├── AccountSettingsStore.cs ├── Ansi.cs ├── CDNClientPool.cs ├── ConsoleAuthenticator.cs ├── ContentDownloader.cs ├── DepotConfigStore.cs ├── DepotKeyStore.cs ├── DownloadConfig.cs ├── HttpClientFactory.cs ├── HttpDiagnosticEventListener.cs ├── PlatformUtilities.cs ├── ProtoManifest.cs ├── Steam3Session.cs ├── TokenCFG.cs └── Util.cs ├── Helpers ├── MessageBoxHelper.cs ├── ProtocolRegistrationHelper.cs ├── SingleInstanceHelper.cs └── VdfParser.cs ├── Interfaces ├── ICacheService.cs ├── ILoggerService.cs ├── IManifestApiService.cs ├── INotificationService.cs ├── ISettingsService.cs └── ISteamService.cs ├── Models ├── AppSettings.cs ├── DownloadItem.cs ├── Game.cs ├── GameStatus.cs ├── GreenLumaGame.cs ├── GreenLumaProfile.cs ├── LibraryItem.cs ├── LibraryResponse.cs ├── Manifest.cs └── SteamGame.cs ├── MorrenusApp.csproj ├── README.md ├── Resources ├── GBE │ ├── dependencies │ │ ├── steam_api64.dll │ │ └── steamclient64.dll │ └── sounds │ │ └── overlay_achievement_notification.wav ├── Styles │ └── SteamTheme.xaml └── Themes │ ├── CherryTheme.xaml │ ├── CyberpunkTheme.xaml │ ├── DarkTheme.xaml │ ├── DefaultTheme.xaml │ ├── ForestTheme.xaml │ ├── GrapeTheme.xaml │ ├── LightTheme.xaml │ └── SunsetTheme.xaml ├── Services ├── ArchiveExtractionService.cs ├── BackupService.cs ├── CacheService.cs ├── ConfigKeysUploadService.cs ├── DepotDownloadService.cs ├── DepotDownloaderWrapperService.cs ├── DepotFilterService.cs ├── DownloadService.cs ├── FileInstallService.cs ├── GBE │ ├── GoldbergLogic.cs │ └── SteamApi.cs ├── ImageCacheService.cs ├── LibraryDatabaseService.cs ├── LibraryRefreshService.cs ├── LoggerService.cs ├── LuaFileManager.cs ├── LuaParser.cs ├── ManifestApiService.cs ├── NotificationService.cs ├── ProfileService.cs ├── ProtocolHandlerService.cs ├── RecentGamesService.cs ├── SettingsService.cs ├── SteamApiService.cs ├── SteamCmdApiService.cs ├── SteamGamesService.cs ├── SteamKitAppInfoService.cs ├── SteamLibraryService.cs ├── SteamService.cs ├── ThemeService.cs ├── TrayIconService.cs └── UpdateService.cs ├── Tools ├── ConfigVdfKeyExtractor │ ├── ConfigVdfKeyExtractorControl.xaml │ ├── ConfigVdfKeyExtractorControl.xaml.cs │ └── VdfKeyExtractor.cs ├── DepotDumper │ ├── AccountSettingsStore.cs │ ├── DepotDumperControl.xaml │ ├── DepotDumperControl.xaml.cs │ ├── DumperConfig.cs │ ├── HttpClientFactory.cs │ ├── Steam3Session.cs │ ├── TwoFactorDialog.xaml │ ├── TwoFactorDialog.xaml.cs │ ├── UserConsoleAuthenticator.cs │ └── Util.cs └── SteamAuthPro │ ├── Models │ ├── Config.cs │ └── SteamAccountManager.cs │ ├── SteamAuthProControl.xaml │ ├── SteamAuthProControl.xaml.cs │ └── Views │ ├── AboutWindow.xaml │ ├── AboutWindow.xaml.cs │ ├── GameSearchWindow.xaml │ ├── GameSearchWindow.xaml.cs │ ├── SettingsWindow.xaml │ └── SettingsWindow.xaml.cs ├── ViewModels ├── DownloadsViewModel.cs ├── GBEDenuvoViewModel.cs ├── HomeViewModel.cs ├── LibraryViewModel.cs ├── LuaInstallerViewModel.cs ├── MainViewModel.cs ├── SettingsViewModel.cs ├── StoreViewModel.cs ├── SupportViewModel.cs └── ToolsViewModel.cs ├── Views ├── Dialogs │ ├── CustomMessageBox.xaml │ ├── CustomMessageBox.xaml.cs │ ├── DepotSelectionDialog.xaml │ ├── DepotSelectionDialog.xaml.cs │ ├── InputDialog.xaml │ ├── InputDialog.xaml.cs │ ├── LanguageSelectionDialog.xaml │ ├── LanguageSelectionDialog.xaml.cs │ ├── ProfileGamesDialog.xaml │ ├── ProfileGamesDialog.xaml.cs │ ├── ProfileManagerDialog.xaml │ ├── ProfileManagerDialog.xaml.cs │ ├── ProfileSelectionDialog.xaml │ ├── ProfileSelectionDialog.xaml.cs │ ├── UpdateDisablerDialog.xaml │ ├── UpdateDisablerDialog.xaml.cs │ ├── UpdateEnablerDialog.xaml │ └── UpdateEnablerDialog.xaml.cs ├── DownloadsPage.xaml ├── DownloadsPage.xaml.cs ├── GBEDenuvoControl.xaml ├── GBEDenuvoControl.xaml.cs ├── HomePage.xaml ├── HomePage.xaml.cs ├── LibraryPage.xaml ├── LibraryPage.xaml.cs ├── LuaInstallerPage.xaml ├── LuaInstallerPage.xaml.cs ├── MainWindow.xaml ├── MainWindow.xaml.cs ├── SettingsPage.xaml ├── SettingsPage.xaml.cs ├── StorePage.xaml ├── StorePage.xaml.cs ├── SupportPage.xaml ├── SupportPage.xaml.cs ├── ToolsPage.xaml └── ToolsPage.xaml.cs ├── app.manifest ├── discord.md ├── icon.ico └── lib └── gbe ├── dependencies ├── steam_api64.dll └── steamclient64.dll └── steam_api64.dll /.github/workflows/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MorrenusGames/Solus-Manifest-App/HEAD/.github/workflows/README.md -------------------------------------------------------------------------------- /.github/workflows/cleanup-old-releases.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MorrenusGames/Solus-Manifest-App/HEAD/.github/workflows/cleanup-old-releases.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MorrenusGames/Solus-Manifest-App/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MorrenusGames/Solus-Manifest-App/HEAD/.gitignore -------------------------------------------------------------------------------- /App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MorrenusGames/Solus-Manifest-App/HEAD/App.xaml -------------------------------------------------------------------------------- /App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MorrenusGames/Solus-Manifest-App/HEAD/App.xaml.cs -------------------------------------------------------------------------------- /Converters/ValueConverters.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MorrenusGames/Solus-Manifest-App/HEAD/Converters/ValueConverters.cs -------------------------------------------------------------------------------- /DISCORD_CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MorrenusGames/Solus-Manifest-App/HEAD/DISCORD_CHANGELOG.md -------------------------------------------------------------------------------- /DepotDownloader/AccountSettingsStore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MorrenusGames/Solus-Manifest-App/HEAD/DepotDownloader/AccountSettingsStore.cs -------------------------------------------------------------------------------- /DepotDownloader/Ansi.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MorrenusGames/Solus-Manifest-App/HEAD/DepotDownloader/Ansi.cs -------------------------------------------------------------------------------- /DepotDownloader/CDNClientPool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MorrenusGames/Solus-Manifest-App/HEAD/DepotDownloader/CDNClientPool.cs -------------------------------------------------------------------------------- /DepotDownloader/ConsoleAuthenticator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MorrenusGames/Solus-Manifest-App/HEAD/DepotDownloader/ConsoleAuthenticator.cs -------------------------------------------------------------------------------- /DepotDownloader/ContentDownloader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MorrenusGames/Solus-Manifest-App/HEAD/DepotDownloader/ContentDownloader.cs -------------------------------------------------------------------------------- /DepotDownloader/DepotConfigStore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MorrenusGames/Solus-Manifest-App/HEAD/DepotDownloader/DepotConfigStore.cs -------------------------------------------------------------------------------- /DepotDownloader/DepotKeyStore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MorrenusGames/Solus-Manifest-App/HEAD/DepotDownloader/DepotKeyStore.cs -------------------------------------------------------------------------------- /DepotDownloader/DownloadConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MorrenusGames/Solus-Manifest-App/HEAD/DepotDownloader/DownloadConfig.cs -------------------------------------------------------------------------------- /DepotDownloader/HttpClientFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MorrenusGames/Solus-Manifest-App/HEAD/DepotDownloader/HttpClientFactory.cs -------------------------------------------------------------------------------- /DepotDownloader/HttpDiagnosticEventListener.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MorrenusGames/Solus-Manifest-App/HEAD/DepotDownloader/HttpDiagnosticEventListener.cs -------------------------------------------------------------------------------- /DepotDownloader/PlatformUtilities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MorrenusGames/Solus-Manifest-App/HEAD/DepotDownloader/PlatformUtilities.cs -------------------------------------------------------------------------------- /DepotDownloader/ProtoManifest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MorrenusGames/Solus-Manifest-App/HEAD/DepotDownloader/ProtoManifest.cs -------------------------------------------------------------------------------- /DepotDownloader/Steam3Session.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MorrenusGames/Solus-Manifest-App/HEAD/DepotDownloader/Steam3Session.cs -------------------------------------------------------------------------------- /DepotDownloader/TokenCFG.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MorrenusGames/Solus-Manifest-App/HEAD/DepotDownloader/TokenCFG.cs -------------------------------------------------------------------------------- /DepotDownloader/Util.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MorrenusGames/Solus-Manifest-App/HEAD/DepotDownloader/Util.cs -------------------------------------------------------------------------------- /Helpers/MessageBoxHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MorrenusGames/Solus-Manifest-App/HEAD/Helpers/MessageBoxHelper.cs -------------------------------------------------------------------------------- /Helpers/ProtocolRegistrationHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MorrenusGames/Solus-Manifest-App/HEAD/Helpers/ProtocolRegistrationHelper.cs -------------------------------------------------------------------------------- /Helpers/SingleInstanceHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MorrenusGames/Solus-Manifest-App/HEAD/Helpers/SingleInstanceHelper.cs -------------------------------------------------------------------------------- /Helpers/VdfParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MorrenusGames/Solus-Manifest-App/HEAD/Helpers/VdfParser.cs -------------------------------------------------------------------------------- /Interfaces/ICacheService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MorrenusGames/Solus-Manifest-App/HEAD/Interfaces/ICacheService.cs -------------------------------------------------------------------------------- /Interfaces/ILoggerService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MorrenusGames/Solus-Manifest-App/HEAD/Interfaces/ILoggerService.cs -------------------------------------------------------------------------------- /Interfaces/IManifestApiService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MorrenusGames/Solus-Manifest-App/HEAD/Interfaces/IManifestApiService.cs -------------------------------------------------------------------------------- /Interfaces/INotificationService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MorrenusGames/Solus-Manifest-App/HEAD/Interfaces/INotificationService.cs -------------------------------------------------------------------------------- /Interfaces/ISettingsService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MorrenusGames/Solus-Manifest-App/HEAD/Interfaces/ISettingsService.cs -------------------------------------------------------------------------------- /Interfaces/ISteamService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MorrenusGames/Solus-Manifest-App/HEAD/Interfaces/ISteamService.cs -------------------------------------------------------------------------------- /Models/AppSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MorrenusGames/Solus-Manifest-App/HEAD/Models/AppSettings.cs -------------------------------------------------------------------------------- /Models/DownloadItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MorrenusGames/Solus-Manifest-App/HEAD/Models/DownloadItem.cs -------------------------------------------------------------------------------- /Models/Game.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MorrenusGames/Solus-Manifest-App/HEAD/Models/Game.cs -------------------------------------------------------------------------------- /Models/GameStatus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MorrenusGames/Solus-Manifest-App/HEAD/Models/GameStatus.cs -------------------------------------------------------------------------------- /Models/GreenLumaGame.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MorrenusGames/Solus-Manifest-App/HEAD/Models/GreenLumaGame.cs -------------------------------------------------------------------------------- /Models/GreenLumaProfile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MorrenusGames/Solus-Manifest-App/HEAD/Models/GreenLumaProfile.cs -------------------------------------------------------------------------------- /Models/LibraryItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MorrenusGames/Solus-Manifest-App/HEAD/Models/LibraryItem.cs -------------------------------------------------------------------------------- /Models/LibraryResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MorrenusGames/Solus-Manifest-App/HEAD/Models/LibraryResponse.cs -------------------------------------------------------------------------------- /Models/Manifest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MorrenusGames/Solus-Manifest-App/HEAD/Models/Manifest.cs -------------------------------------------------------------------------------- /Models/SteamGame.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MorrenusGames/Solus-Manifest-App/HEAD/Models/SteamGame.cs -------------------------------------------------------------------------------- /MorrenusApp.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MorrenusGames/Solus-Manifest-App/HEAD/MorrenusApp.csproj -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MorrenusGames/Solus-Manifest-App/HEAD/README.md -------------------------------------------------------------------------------- /Resources/GBE/dependencies/steam_api64.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MorrenusGames/Solus-Manifest-App/HEAD/Resources/GBE/dependencies/steam_api64.dll -------------------------------------------------------------------------------- /Resources/GBE/dependencies/steamclient64.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MorrenusGames/Solus-Manifest-App/HEAD/Resources/GBE/dependencies/steamclient64.dll -------------------------------------------------------------------------------- /Resources/GBE/sounds/overlay_achievement_notification.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MorrenusGames/Solus-Manifest-App/HEAD/Resources/GBE/sounds/overlay_achievement_notification.wav -------------------------------------------------------------------------------- /Resources/Styles/SteamTheme.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MorrenusGames/Solus-Manifest-App/HEAD/Resources/Styles/SteamTheme.xaml -------------------------------------------------------------------------------- /Resources/Themes/CherryTheme.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MorrenusGames/Solus-Manifest-App/HEAD/Resources/Themes/CherryTheme.xaml -------------------------------------------------------------------------------- /Resources/Themes/CyberpunkTheme.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MorrenusGames/Solus-Manifest-App/HEAD/Resources/Themes/CyberpunkTheme.xaml -------------------------------------------------------------------------------- /Resources/Themes/DarkTheme.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MorrenusGames/Solus-Manifest-App/HEAD/Resources/Themes/DarkTheme.xaml -------------------------------------------------------------------------------- /Resources/Themes/DefaultTheme.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MorrenusGames/Solus-Manifest-App/HEAD/Resources/Themes/DefaultTheme.xaml -------------------------------------------------------------------------------- /Resources/Themes/ForestTheme.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MorrenusGames/Solus-Manifest-App/HEAD/Resources/Themes/ForestTheme.xaml -------------------------------------------------------------------------------- /Resources/Themes/GrapeTheme.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MorrenusGames/Solus-Manifest-App/HEAD/Resources/Themes/GrapeTheme.xaml -------------------------------------------------------------------------------- /Resources/Themes/LightTheme.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MorrenusGames/Solus-Manifest-App/HEAD/Resources/Themes/LightTheme.xaml -------------------------------------------------------------------------------- /Resources/Themes/SunsetTheme.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MorrenusGames/Solus-Manifest-App/HEAD/Resources/Themes/SunsetTheme.xaml -------------------------------------------------------------------------------- /Services/ArchiveExtractionService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MorrenusGames/Solus-Manifest-App/HEAD/Services/ArchiveExtractionService.cs -------------------------------------------------------------------------------- /Services/BackupService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MorrenusGames/Solus-Manifest-App/HEAD/Services/BackupService.cs -------------------------------------------------------------------------------- /Services/CacheService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MorrenusGames/Solus-Manifest-App/HEAD/Services/CacheService.cs -------------------------------------------------------------------------------- /Services/ConfigKeysUploadService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MorrenusGames/Solus-Manifest-App/HEAD/Services/ConfigKeysUploadService.cs -------------------------------------------------------------------------------- /Services/DepotDownloadService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MorrenusGames/Solus-Manifest-App/HEAD/Services/DepotDownloadService.cs -------------------------------------------------------------------------------- /Services/DepotDownloaderWrapperService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MorrenusGames/Solus-Manifest-App/HEAD/Services/DepotDownloaderWrapperService.cs -------------------------------------------------------------------------------- /Services/DepotFilterService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MorrenusGames/Solus-Manifest-App/HEAD/Services/DepotFilterService.cs -------------------------------------------------------------------------------- /Services/DownloadService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MorrenusGames/Solus-Manifest-App/HEAD/Services/DownloadService.cs -------------------------------------------------------------------------------- /Services/FileInstallService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MorrenusGames/Solus-Manifest-App/HEAD/Services/FileInstallService.cs -------------------------------------------------------------------------------- /Services/GBE/GoldbergLogic.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MorrenusGames/Solus-Manifest-App/HEAD/Services/GBE/GoldbergLogic.cs -------------------------------------------------------------------------------- /Services/GBE/SteamApi.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MorrenusGames/Solus-Manifest-App/HEAD/Services/GBE/SteamApi.cs -------------------------------------------------------------------------------- /Services/ImageCacheService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MorrenusGames/Solus-Manifest-App/HEAD/Services/ImageCacheService.cs -------------------------------------------------------------------------------- /Services/LibraryDatabaseService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MorrenusGames/Solus-Manifest-App/HEAD/Services/LibraryDatabaseService.cs -------------------------------------------------------------------------------- /Services/LibraryRefreshService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MorrenusGames/Solus-Manifest-App/HEAD/Services/LibraryRefreshService.cs -------------------------------------------------------------------------------- /Services/LoggerService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MorrenusGames/Solus-Manifest-App/HEAD/Services/LoggerService.cs -------------------------------------------------------------------------------- /Services/LuaFileManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MorrenusGames/Solus-Manifest-App/HEAD/Services/LuaFileManager.cs -------------------------------------------------------------------------------- /Services/LuaParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MorrenusGames/Solus-Manifest-App/HEAD/Services/LuaParser.cs -------------------------------------------------------------------------------- /Services/ManifestApiService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MorrenusGames/Solus-Manifest-App/HEAD/Services/ManifestApiService.cs -------------------------------------------------------------------------------- /Services/NotificationService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MorrenusGames/Solus-Manifest-App/HEAD/Services/NotificationService.cs -------------------------------------------------------------------------------- /Services/ProfileService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MorrenusGames/Solus-Manifest-App/HEAD/Services/ProfileService.cs -------------------------------------------------------------------------------- /Services/ProtocolHandlerService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MorrenusGames/Solus-Manifest-App/HEAD/Services/ProtocolHandlerService.cs -------------------------------------------------------------------------------- /Services/RecentGamesService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MorrenusGames/Solus-Manifest-App/HEAD/Services/RecentGamesService.cs -------------------------------------------------------------------------------- /Services/SettingsService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MorrenusGames/Solus-Manifest-App/HEAD/Services/SettingsService.cs -------------------------------------------------------------------------------- /Services/SteamApiService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MorrenusGames/Solus-Manifest-App/HEAD/Services/SteamApiService.cs -------------------------------------------------------------------------------- /Services/SteamCmdApiService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MorrenusGames/Solus-Manifest-App/HEAD/Services/SteamCmdApiService.cs -------------------------------------------------------------------------------- /Services/SteamGamesService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MorrenusGames/Solus-Manifest-App/HEAD/Services/SteamGamesService.cs -------------------------------------------------------------------------------- /Services/SteamKitAppInfoService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MorrenusGames/Solus-Manifest-App/HEAD/Services/SteamKitAppInfoService.cs -------------------------------------------------------------------------------- /Services/SteamLibraryService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MorrenusGames/Solus-Manifest-App/HEAD/Services/SteamLibraryService.cs -------------------------------------------------------------------------------- /Services/SteamService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MorrenusGames/Solus-Manifest-App/HEAD/Services/SteamService.cs -------------------------------------------------------------------------------- /Services/ThemeService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MorrenusGames/Solus-Manifest-App/HEAD/Services/ThemeService.cs -------------------------------------------------------------------------------- /Services/TrayIconService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MorrenusGames/Solus-Manifest-App/HEAD/Services/TrayIconService.cs -------------------------------------------------------------------------------- /Services/UpdateService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MorrenusGames/Solus-Manifest-App/HEAD/Services/UpdateService.cs -------------------------------------------------------------------------------- /Tools/ConfigVdfKeyExtractor/ConfigVdfKeyExtractorControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MorrenusGames/Solus-Manifest-App/HEAD/Tools/ConfigVdfKeyExtractor/ConfigVdfKeyExtractorControl.xaml -------------------------------------------------------------------------------- /Tools/ConfigVdfKeyExtractor/ConfigVdfKeyExtractorControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MorrenusGames/Solus-Manifest-App/HEAD/Tools/ConfigVdfKeyExtractor/ConfigVdfKeyExtractorControl.xaml.cs -------------------------------------------------------------------------------- /Tools/ConfigVdfKeyExtractor/VdfKeyExtractor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MorrenusGames/Solus-Manifest-App/HEAD/Tools/ConfigVdfKeyExtractor/VdfKeyExtractor.cs -------------------------------------------------------------------------------- /Tools/DepotDumper/AccountSettingsStore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MorrenusGames/Solus-Manifest-App/HEAD/Tools/DepotDumper/AccountSettingsStore.cs -------------------------------------------------------------------------------- /Tools/DepotDumper/DepotDumperControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MorrenusGames/Solus-Manifest-App/HEAD/Tools/DepotDumper/DepotDumperControl.xaml -------------------------------------------------------------------------------- /Tools/DepotDumper/DepotDumperControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MorrenusGames/Solus-Manifest-App/HEAD/Tools/DepotDumper/DepotDumperControl.xaml.cs -------------------------------------------------------------------------------- /Tools/DepotDumper/DumperConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MorrenusGames/Solus-Manifest-App/HEAD/Tools/DepotDumper/DumperConfig.cs -------------------------------------------------------------------------------- /Tools/DepotDumper/HttpClientFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MorrenusGames/Solus-Manifest-App/HEAD/Tools/DepotDumper/HttpClientFactory.cs -------------------------------------------------------------------------------- /Tools/DepotDumper/Steam3Session.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MorrenusGames/Solus-Manifest-App/HEAD/Tools/DepotDumper/Steam3Session.cs -------------------------------------------------------------------------------- /Tools/DepotDumper/TwoFactorDialog.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MorrenusGames/Solus-Manifest-App/HEAD/Tools/DepotDumper/TwoFactorDialog.xaml -------------------------------------------------------------------------------- /Tools/DepotDumper/TwoFactorDialog.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MorrenusGames/Solus-Manifest-App/HEAD/Tools/DepotDumper/TwoFactorDialog.xaml.cs -------------------------------------------------------------------------------- /Tools/DepotDumper/UserConsoleAuthenticator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MorrenusGames/Solus-Manifest-App/HEAD/Tools/DepotDumper/UserConsoleAuthenticator.cs -------------------------------------------------------------------------------- /Tools/DepotDumper/Util.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MorrenusGames/Solus-Manifest-App/HEAD/Tools/DepotDumper/Util.cs -------------------------------------------------------------------------------- /Tools/SteamAuthPro/Models/Config.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MorrenusGames/Solus-Manifest-App/HEAD/Tools/SteamAuthPro/Models/Config.cs -------------------------------------------------------------------------------- /Tools/SteamAuthPro/Models/SteamAccountManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MorrenusGames/Solus-Manifest-App/HEAD/Tools/SteamAuthPro/Models/SteamAccountManager.cs -------------------------------------------------------------------------------- /Tools/SteamAuthPro/SteamAuthProControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MorrenusGames/Solus-Manifest-App/HEAD/Tools/SteamAuthPro/SteamAuthProControl.xaml -------------------------------------------------------------------------------- /Tools/SteamAuthPro/SteamAuthProControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MorrenusGames/Solus-Manifest-App/HEAD/Tools/SteamAuthPro/SteamAuthProControl.xaml.cs -------------------------------------------------------------------------------- /Tools/SteamAuthPro/Views/AboutWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MorrenusGames/Solus-Manifest-App/HEAD/Tools/SteamAuthPro/Views/AboutWindow.xaml -------------------------------------------------------------------------------- /Tools/SteamAuthPro/Views/AboutWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MorrenusGames/Solus-Manifest-App/HEAD/Tools/SteamAuthPro/Views/AboutWindow.xaml.cs -------------------------------------------------------------------------------- /Tools/SteamAuthPro/Views/GameSearchWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MorrenusGames/Solus-Manifest-App/HEAD/Tools/SteamAuthPro/Views/GameSearchWindow.xaml -------------------------------------------------------------------------------- /Tools/SteamAuthPro/Views/GameSearchWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MorrenusGames/Solus-Manifest-App/HEAD/Tools/SteamAuthPro/Views/GameSearchWindow.xaml.cs -------------------------------------------------------------------------------- /Tools/SteamAuthPro/Views/SettingsWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MorrenusGames/Solus-Manifest-App/HEAD/Tools/SteamAuthPro/Views/SettingsWindow.xaml -------------------------------------------------------------------------------- /Tools/SteamAuthPro/Views/SettingsWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MorrenusGames/Solus-Manifest-App/HEAD/Tools/SteamAuthPro/Views/SettingsWindow.xaml.cs -------------------------------------------------------------------------------- /ViewModels/DownloadsViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MorrenusGames/Solus-Manifest-App/HEAD/ViewModels/DownloadsViewModel.cs -------------------------------------------------------------------------------- /ViewModels/GBEDenuvoViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MorrenusGames/Solus-Manifest-App/HEAD/ViewModels/GBEDenuvoViewModel.cs -------------------------------------------------------------------------------- /ViewModels/HomeViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MorrenusGames/Solus-Manifest-App/HEAD/ViewModels/HomeViewModel.cs -------------------------------------------------------------------------------- /ViewModels/LibraryViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MorrenusGames/Solus-Manifest-App/HEAD/ViewModels/LibraryViewModel.cs -------------------------------------------------------------------------------- /ViewModels/LuaInstallerViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MorrenusGames/Solus-Manifest-App/HEAD/ViewModels/LuaInstallerViewModel.cs -------------------------------------------------------------------------------- /ViewModels/MainViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MorrenusGames/Solus-Manifest-App/HEAD/ViewModels/MainViewModel.cs -------------------------------------------------------------------------------- /ViewModels/SettingsViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MorrenusGames/Solus-Manifest-App/HEAD/ViewModels/SettingsViewModel.cs -------------------------------------------------------------------------------- /ViewModels/StoreViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MorrenusGames/Solus-Manifest-App/HEAD/ViewModels/StoreViewModel.cs -------------------------------------------------------------------------------- /ViewModels/SupportViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MorrenusGames/Solus-Manifest-App/HEAD/ViewModels/SupportViewModel.cs -------------------------------------------------------------------------------- /ViewModels/ToolsViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MorrenusGames/Solus-Manifest-App/HEAD/ViewModels/ToolsViewModel.cs -------------------------------------------------------------------------------- /Views/Dialogs/CustomMessageBox.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MorrenusGames/Solus-Manifest-App/HEAD/Views/Dialogs/CustomMessageBox.xaml -------------------------------------------------------------------------------- /Views/Dialogs/CustomMessageBox.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MorrenusGames/Solus-Manifest-App/HEAD/Views/Dialogs/CustomMessageBox.xaml.cs -------------------------------------------------------------------------------- /Views/Dialogs/DepotSelectionDialog.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MorrenusGames/Solus-Manifest-App/HEAD/Views/Dialogs/DepotSelectionDialog.xaml -------------------------------------------------------------------------------- /Views/Dialogs/DepotSelectionDialog.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MorrenusGames/Solus-Manifest-App/HEAD/Views/Dialogs/DepotSelectionDialog.xaml.cs -------------------------------------------------------------------------------- /Views/Dialogs/InputDialog.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MorrenusGames/Solus-Manifest-App/HEAD/Views/Dialogs/InputDialog.xaml -------------------------------------------------------------------------------- /Views/Dialogs/InputDialog.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MorrenusGames/Solus-Manifest-App/HEAD/Views/Dialogs/InputDialog.xaml.cs -------------------------------------------------------------------------------- /Views/Dialogs/LanguageSelectionDialog.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MorrenusGames/Solus-Manifest-App/HEAD/Views/Dialogs/LanguageSelectionDialog.xaml -------------------------------------------------------------------------------- /Views/Dialogs/LanguageSelectionDialog.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MorrenusGames/Solus-Manifest-App/HEAD/Views/Dialogs/LanguageSelectionDialog.xaml.cs -------------------------------------------------------------------------------- /Views/Dialogs/ProfileGamesDialog.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MorrenusGames/Solus-Manifest-App/HEAD/Views/Dialogs/ProfileGamesDialog.xaml -------------------------------------------------------------------------------- /Views/Dialogs/ProfileGamesDialog.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MorrenusGames/Solus-Manifest-App/HEAD/Views/Dialogs/ProfileGamesDialog.xaml.cs -------------------------------------------------------------------------------- /Views/Dialogs/ProfileManagerDialog.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MorrenusGames/Solus-Manifest-App/HEAD/Views/Dialogs/ProfileManagerDialog.xaml -------------------------------------------------------------------------------- /Views/Dialogs/ProfileManagerDialog.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MorrenusGames/Solus-Manifest-App/HEAD/Views/Dialogs/ProfileManagerDialog.xaml.cs -------------------------------------------------------------------------------- /Views/Dialogs/ProfileSelectionDialog.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MorrenusGames/Solus-Manifest-App/HEAD/Views/Dialogs/ProfileSelectionDialog.xaml -------------------------------------------------------------------------------- /Views/Dialogs/ProfileSelectionDialog.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MorrenusGames/Solus-Manifest-App/HEAD/Views/Dialogs/ProfileSelectionDialog.xaml.cs -------------------------------------------------------------------------------- /Views/Dialogs/UpdateDisablerDialog.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MorrenusGames/Solus-Manifest-App/HEAD/Views/Dialogs/UpdateDisablerDialog.xaml -------------------------------------------------------------------------------- /Views/Dialogs/UpdateDisablerDialog.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MorrenusGames/Solus-Manifest-App/HEAD/Views/Dialogs/UpdateDisablerDialog.xaml.cs -------------------------------------------------------------------------------- /Views/Dialogs/UpdateEnablerDialog.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MorrenusGames/Solus-Manifest-App/HEAD/Views/Dialogs/UpdateEnablerDialog.xaml -------------------------------------------------------------------------------- /Views/Dialogs/UpdateEnablerDialog.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MorrenusGames/Solus-Manifest-App/HEAD/Views/Dialogs/UpdateEnablerDialog.xaml.cs -------------------------------------------------------------------------------- /Views/DownloadsPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MorrenusGames/Solus-Manifest-App/HEAD/Views/DownloadsPage.xaml -------------------------------------------------------------------------------- /Views/DownloadsPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MorrenusGames/Solus-Manifest-App/HEAD/Views/DownloadsPage.xaml.cs -------------------------------------------------------------------------------- /Views/GBEDenuvoControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MorrenusGames/Solus-Manifest-App/HEAD/Views/GBEDenuvoControl.xaml -------------------------------------------------------------------------------- /Views/GBEDenuvoControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MorrenusGames/Solus-Manifest-App/HEAD/Views/GBEDenuvoControl.xaml.cs -------------------------------------------------------------------------------- /Views/HomePage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MorrenusGames/Solus-Manifest-App/HEAD/Views/HomePage.xaml -------------------------------------------------------------------------------- /Views/HomePage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MorrenusGames/Solus-Manifest-App/HEAD/Views/HomePage.xaml.cs -------------------------------------------------------------------------------- /Views/LibraryPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MorrenusGames/Solus-Manifest-App/HEAD/Views/LibraryPage.xaml -------------------------------------------------------------------------------- /Views/LibraryPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MorrenusGames/Solus-Manifest-App/HEAD/Views/LibraryPage.xaml.cs -------------------------------------------------------------------------------- /Views/LuaInstallerPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MorrenusGames/Solus-Manifest-App/HEAD/Views/LuaInstallerPage.xaml -------------------------------------------------------------------------------- /Views/LuaInstallerPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MorrenusGames/Solus-Manifest-App/HEAD/Views/LuaInstallerPage.xaml.cs -------------------------------------------------------------------------------- /Views/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MorrenusGames/Solus-Manifest-App/HEAD/Views/MainWindow.xaml -------------------------------------------------------------------------------- /Views/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MorrenusGames/Solus-Manifest-App/HEAD/Views/MainWindow.xaml.cs -------------------------------------------------------------------------------- /Views/SettingsPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MorrenusGames/Solus-Manifest-App/HEAD/Views/SettingsPage.xaml -------------------------------------------------------------------------------- /Views/SettingsPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MorrenusGames/Solus-Manifest-App/HEAD/Views/SettingsPage.xaml.cs -------------------------------------------------------------------------------- /Views/StorePage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MorrenusGames/Solus-Manifest-App/HEAD/Views/StorePage.xaml -------------------------------------------------------------------------------- /Views/StorePage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MorrenusGames/Solus-Manifest-App/HEAD/Views/StorePage.xaml.cs -------------------------------------------------------------------------------- /Views/SupportPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MorrenusGames/Solus-Manifest-App/HEAD/Views/SupportPage.xaml -------------------------------------------------------------------------------- /Views/SupportPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MorrenusGames/Solus-Manifest-App/HEAD/Views/SupportPage.xaml.cs -------------------------------------------------------------------------------- /Views/ToolsPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MorrenusGames/Solus-Manifest-App/HEAD/Views/ToolsPage.xaml -------------------------------------------------------------------------------- /Views/ToolsPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MorrenusGames/Solus-Manifest-App/HEAD/Views/ToolsPage.xaml.cs -------------------------------------------------------------------------------- /app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MorrenusGames/Solus-Manifest-App/HEAD/app.manifest -------------------------------------------------------------------------------- /discord.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MorrenusGames/Solus-Manifest-App/HEAD/discord.md -------------------------------------------------------------------------------- /icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MorrenusGames/Solus-Manifest-App/HEAD/icon.ico -------------------------------------------------------------------------------- /lib/gbe/dependencies/steam_api64.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MorrenusGames/Solus-Manifest-App/HEAD/lib/gbe/dependencies/steam_api64.dll -------------------------------------------------------------------------------- /lib/gbe/dependencies/steamclient64.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MorrenusGames/Solus-Manifest-App/HEAD/lib/gbe/dependencies/steamclient64.dll -------------------------------------------------------------------------------- /lib/gbe/steam_api64.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MorrenusGames/Solus-Manifest-App/HEAD/lib/gbe/steam_api64.dll --------------------------------------------------------------------------------