├── .editorconfig ├── .gitattributes ├── .github └── workflows │ └── dotnet-release.yml ├── .gitignore ├── LICENSE ├── PSXMaster.slnx ├── Policy ├── README.md └── src ├── App.xaml ├── App.xaml.cs ├── Assets ├── AppIcon.ico ├── AppIcon.png ├── Cover │ ├── CoverDark.jpg │ └── CoverLight.jpg ├── Fluent │ ├── Backdrop.png │ ├── Color.png │ ├── DevMode.png │ ├── External.png │ ├── Favorite.png │ ├── FilePicker.png │ ├── GameDetail.png │ ├── Info.png │ ├── PlayStationFiveLogo.png │ ├── PlayStationFourLogo.png │ ├── Settings.png │ ├── Theme.png │ ├── TransferGame.png │ └── Update.png ├── NavViewMenu │ └── AppData.json └── Store │ ├── LargeTile.scale-100.png │ ├── LargeTile.scale-125.png │ ├── LargeTile.scale-150.png │ ├── LargeTile.scale-200.png │ ├── LargeTile.scale-400.png │ ├── LockScreenLogo.scale-200.png │ ├── SmallTile.scale-100.png │ ├── SmallTile.scale-125.png │ ├── SmallTile.scale-150.png │ ├── SmallTile.scale-200.png │ ├── SmallTile.scale-400.png │ ├── SplashScreen.scale-100.png │ ├── SplashScreen.scale-125.png │ ├── SplashScreen.scale-150.png │ ├── SplashScreen.scale-200.png │ ├── SplashScreen.scale-400.png │ ├── Square150x150Logo.scale-100.png │ ├── Square150x150Logo.scale-125.png │ ├── Square150x150Logo.scale-150.png │ ├── Square150x150Logo.scale-200.png │ ├── Square150x150Logo.scale-400.png │ ├── Square44x44Logo.altform-lightunplated_targetsize-16.png │ ├── Square44x44Logo.altform-lightunplated_targetsize-24.png │ ├── Square44x44Logo.altform-lightunplated_targetsize-256.png │ ├── Square44x44Logo.altform-lightunplated_targetsize-32.png │ ├── Square44x44Logo.altform-lightunplated_targetsize-48.png │ ├── Square44x44Logo.altform-unplated_targetsize-16.png │ ├── Square44x44Logo.altform-unplated_targetsize-256.png │ ├── Square44x44Logo.altform-unplated_targetsize-32.png │ ├── Square44x44Logo.altform-unplated_targetsize-48.png │ ├── Square44x44Logo.scale-100.png │ ├── Square44x44Logo.scale-125.png │ ├── Square44x44Logo.scale-150.png │ ├── Square44x44Logo.scale-200.png │ ├── Square44x44Logo.scale-400.png │ ├── Square44x44Logo.targetsize-16.png │ ├── Square44x44Logo.targetsize-24.png │ ├── Square44x44Logo.targetsize-24_altform-unplated.png │ ├── Square44x44Logo.targetsize-256.png │ ├── Square44x44Logo.targetsize-32.png │ ├── Square44x44Logo.targetsize-48.png │ ├── StoreLogo.backup.png │ ├── StoreLogo.scale-100.png │ ├── StoreLogo.scale-125.png │ ├── StoreLogo.scale-150.png │ ├── StoreLogo.scale-200.png │ ├── StoreLogo.scale-400.png │ ├── Wide310x150Logo.scale-100.png │ ├── Wide310x150Logo.scale-125.png │ ├── Wide310x150Logo.scale-150.png │ ├── Wide310x150Logo.scale-200.png │ └── Wide310x150Logo.scale-400.png ├── Collection ├── FilteringOperation.cs └── IOperation.cs ├── Common ├── AppConfig.cs ├── AppHelper.cs ├── Constants.cs └── LoggerSetup.cs ├── Core ├── Client.cs ├── HashUrl.cs ├── HttpClient.cs ├── HttpListenerHelp.cs ├── Listener.cs ├── LocalFile.cs ├── PSXTools.cs ├── UrlInfo.cs └── UrlOperate.cs ├── Database ├── DbBootstrapper.cs ├── PSXMasterDbContext.cs └── Tables │ └── QueueGames.cs ├── GlobalUsings.cs ├── MainWindow.xaml ├── MainWindow.xaml.cs ├── Microsoft.WindowsAppSdk.manifest ├── Models ├── BufferModel.cs ├── Game.cs └── LogModel.cs ├── PSXMaster.csproj ├── Package.appxmanifest ├── Properties └── launchSettings.json ├── Services ├── IPSXMasterService.cs └── PSXMasterService.cs ├── T4Templates ├── BreadcrumbPageMappings.cs ├── BreadcrumbPageMappings.tt ├── NavigationPageMappings.cs └── NavigationPageMappings.tt ├── Themes ├── Styles.xaml └── ThemeResources.xaml ├── ViewModels ├── GameDetailsViewModel.cs ├── GameTransferViewModel.cs ├── QueueGamesViewModel.cs └── Settings │ ├── AboutUsSettingViewModel.cs │ ├── AppUpdateSettingViewModel.cs │ └── GeneralSettingViewModel.cs ├── Views ├── AddOrEditContentDialog.xaml ├── AddOrEditContentDialog.xaml.cs ├── DeleteGameContentDialog.xaml ├── DeleteGameContentDialog.xaml.cs ├── GameDetailsPage.xaml ├── GameDetailsPage.xaml.cs ├── GameTransferPage.xaml ├── GameTransferPage.xaml.cs ├── HomeLandingPage.xaml ├── HomeLandingPage.xaml.cs ├── ItemUserControl.xaml ├── ItemUserControl.xaml.cs ├── QueueGamesPage.xaml ├── QueueGamesPage.xaml.cs ├── Settings │ ├── AboutUsSettingPage.xaml │ ├── AboutUsSettingPage.xaml.cs │ ├── AppUpdateSettingPage.xaml │ ├── AppUpdateSettingPage.xaml.cs │ ├── GeneralSettingPage.xaml │ ├── GeneralSettingPage.xaml.cs │ ├── ThemeSettingPage.xaml │ └── ThemeSettingPage.xaml.cs ├── SettingsPage.xaml └── SettingsPage.xaml.cs └── app.manifest /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/PSXMaster/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/PSXMaster/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/dotnet-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/PSXMaster/HEAD/.github/workflows/dotnet-release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/PSXMaster/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/PSXMaster/HEAD/LICENSE -------------------------------------------------------------------------------- /PSXMaster.slnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/PSXMaster/HEAD/PSXMaster.slnx -------------------------------------------------------------------------------- /Policy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/PSXMaster/HEAD/Policy -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/PSXMaster/HEAD/README.md -------------------------------------------------------------------------------- /src/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/PSXMaster/HEAD/src/App.xaml -------------------------------------------------------------------------------- /src/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/PSXMaster/HEAD/src/App.xaml.cs -------------------------------------------------------------------------------- /src/Assets/AppIcon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/PSXMaster/HEAD/src/Assets/AppIcon.ico -------------------------------------------------------------------------------- /src/Assets/AppIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/PSXMaster/HEAD/src/Assets/AppIcon.png -------------------------------------------------------------------------------- /src/Assets/Cover/CoverDark.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/PSXMaster/HEAD/src/Assets/Cover/CoverDark.jpg -------------------------------------------------------------------------------- /src/Assets/Cover/CoverLight.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/PSXMaster/HEAD/src/Assets/Cover/CoverLight.jpg -------------------------------------------------------------------------------- /src/Assets/Fluent/Backdrop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/PSXMaster/HEAD/src/Assets/Fluent/Backdrop.png -------------------------------------------------------------------------------- /src/Assets/Fluent/Color.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/PSXMaster/HEAD/src/Assets/Fluent/Color.png -------------------------------------------------------------------------------- /src/Assets/Fluent/DevMode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/PSXMaster/HEAD/src/Assets/Fluent/DevMode.png -------------------------------------------------------------------------------- /src/Assets/Fluent/External.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/PSXMaster/HEAD/src/Assets/Fluent/External.png -------------------------------------------------------------------------------- /src/Assets/Fluent/Favorite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/PSXMaster/HEAD/src/Assets/Fluent/Favorite.png -------------------------------------------------------------------------------- /src/Assets/Fluent/FilePicker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/PSXMaster/HEAD/src/Assets/Fluent/FilePicker.png -------------------------------------------------------------------------------- /src/Assets/Fluent/GameDetail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/PSXMaster/HEAD/src/Assets/Fluent/GameDetail.png -------------------------------------------------------------------------------- /src/Assets/Fluent/Info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/PSXMaster/HEAD/src/Assets/Fluent/Info.png -------------------------------------------------------------------------------- /src/Assets/Fluent/PlayStationFiveLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/PSXMaster/HEAD/src/Assets/Fluent/PlayStationFiveLogo.png -------------------------------------------------------------------------------- /src/Assets/Fluent/PlayStationFourLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/PSXMaster/HEAD/src/Assets/Fluent/PlayStationFourLogo.png -------------------------------------------------------------------------------- /src/Assets/Fluent/Settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/PSXMaster/HEAD/src/Assets/Fluent/Settings.png -------------------------------------------------------------------------------- /src/Assets/Fluent/Theme.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/PSXMaster/HEAD/src/Assets/Fluent/Theme.png -------------------------------------------------------------------------------- /src/Assets/Fluent/TransferGame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/PSXMaster/HEAD/src/Assets/Fluent/TransferGame.png -------------------------------------------------------------------------------- /src/Assets/Fluent/Update.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/PSXMaster/HEAD/src/Assets/Fluent/Update.png -------------------------------------------------------------------------------- /src/Assets/NavViewMenu/AppData.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/PSXMaster/HEAD/src/Assets/NavViewMenu/AppData.json -------------------------------------------------------------------------------- /src/Assets/Store/LargeTile.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/PSXMaster/HEAD/src/Assets/Store/LargeTile.scale-100.png -------------------------------------------------------------------------------- /src/Assets/Store/LargeTile.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/PSXMaster/HEAD/src/Assets/Store/LargeTile.scale-125.png -------------------------------------------------------------------------------- /src/Assets/Store/LargeTile.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/PSXMaster/HEAD/src/Assets/Store/LargeTile.scale-150.png -------------------------------------------------------------------------------- /src/Assets/Store/LargeTile.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/PSXMaster/HEAD/src/Assets/Store/LargeTile.scale-200.png -------------------------------------------------------------------------------- /src/Assets/Store/LargeTile.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/PSXMaster/HEAD/src/Assets/Store/LargeTile.scale-400.png -------------------------------------------------------------------------------- /src/Assets/Store/LockScreenLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/PSXMaster/HEAD/src/Assets/Store/LockScreenLogo.scale-200.png -------------------------------------------------------------------------------- /src/Assets/Store/SmallTile.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/PSXMaster/HEAD/src/Assets/Store/SmallTile.scale-100.png -------------------------------------------------------------------------------- /src/Assets/Store/SmallTile.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/PSXMaster/HEAD/src/Assets/Store/SmallTile.scale-125.png -------------------------------------------------------------------------------- /src/Assets/Store/SmallTile.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/PSXMaster/HEAD/src/Assets/Store/SmallTile.scale-150.png -------------------------------------------------------------------------------- /src/Assets/Store/SmallTile.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/PSXMaster/HEAD/src/Assets/Store/SmallTile.scale-200.png -------------------------------------------------------------------------------- /src/Assets/Store/SmallTile.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/PSXMaster/HEAD/src/Assets/Store/SmallTile.scale-400.png -------------------------------------------------------------------------------- /src/Assets/Store/SplashScreen.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/PSXMaster/HEAD/src/Assets/Store/SplashScreen.scale-100.png -------------------------------------------------------------------------------- /src/Assets/Store/SplashScreen.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/PSXMaster/HEAD/src/Assets/Store/SplashScreen.scale-125.png -------------------------------------------------------------------------------- /src/Assets/Store/SplashScreen.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/PSXMaster/HEAD/src/Assets/Store/SplashScreen.scale-150.png -------------------------------------------------------------------------------- /src/Assets/Store/SplashScreen.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/PSXMaster/HEAD/src/Assets/Store/SplashScreen.scale-200.png -------------------------------------------------------------------------------- /src/Assets/Store/SplashScreen.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/PSXMaster/HEAD/src/Assets/Store/SplashScreen.scale-400.png -------------------------------------------------------------------------------- /src/Assets/Store/Square150x150Logo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/PSXMaster/HEAD/src/Assets/Store/Square150x150Logo.scale-100.png -------------------------------------------------------------------------------- /src/Assets/Store/Square150x150Logo.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/PSXMaster/HEAD/src/Assets/Store/Square150x150Logo.scale-125.png -------------------------------------------------------------------------------- /src/Assets/Store/Square150x150Logo.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/PSXMaster/HEAD/src/Assets/Store/Square150x150Logo.scale-150.png -------------------------------------------------------------------------------- /src/Assets/Store/Square150x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/PSXMaster/HEAD/src/Assets/Store/Square150x150Logo.scale-200.png -------------------------------------------------------------------------------- /src/Assets/Store/Square150x150Logo.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/PSXMaster/HEAD/src/Assets/Store/Square150x150Logo.scale-400.png -------------------------------------------------------------------------------- /src/Assets/Store/Square44x44Logo.altform-lightunplated_targetsize-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/PSXMaster/HEAD/src/Assets/Store/Square44x44Logo.altform-lightunplated_targetsize-16.png -------------------------------------------------------------------------------- /src/Assets/Store/Square44x44Logo.altform-lightunplated_targetsize-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/PSXMaster/HEAD/src/Assets/Store/Square44x44Logo.altform-lightunplated_targetsize-24.png -------------------------------------------------------------------------------- /src/Assets/Store/Square44x44Logo.altform-lightunplated_targetsize-256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/PSXMaster/HEAD/src/Assets/Store/Square44x44Logo.altform-lightunplated_targetsize-256.png -------------------------------------------------------------------------------- /src/Assets/Store/Square44x44Logo.altform-lightunplated_targetsize-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/PSXMaster/HEAD/src/Assets/Store/Square44x44Logo.altform-lightunplated_targetsize-32.png -------------------------------------------------------------------------------- /src/Assets/Store/Square44x44Logo.altform-lightunplated_targetsize-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/PSXMaster/HEAD/src/Assets/Store/Square44x44Logo.altform-lightunplated_targetsize-48.png -------------------------------------------------------------------------------- /src/Assets/Store/Square44x44Logo.altform-unplated_targetsize-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/PSXMaster/HEAD/src/Assets/Store/Square44x44Logo.altform-unplated_targetsize-16.png -------------------------------------------------------------------------------- /src/Assets/Store/Square44x44Logo.altform-unplated_targetsize-256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/PSXMaster/HEAD/src/Assets/Store/Square44x44Logo.altform-unplated_targetsize-256.png -------------------------------------------------------------------------------- /src/Assets/Store/Square44x44Logo.altform-unplated_targetsize-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/PSXMaster/HEAD/src/Assets/Store/Square44x44Logo.altform-unplated_targetsize-32.png -------------------------------------------------------------------------------- /src/Assets/Store/Square44x44Logo.altform-unplated_targetsize-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/PSXMaster/HEAD/src/Assets/Store/Square44x44Logo.altform-unplated_targetsize-48.png -------------------------------------------------------------------------------- /src/Assets/Store/Square44x44Logo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/PSXMaster/HEAD/src/Assets/Store/Square44x44Logo.scale-100.png -------------------------------------------------------------------------------- /src/Assets/Store/Square44x44Logo.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/PSXMaster/HEAD/src/Assets/Store/Square44x44Logo.scale-125.png -------------------------------------------------------------------------------- /src/Assets/Store/Square44x44Logo.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/PSXMaster/HEAD/src/Assets/Store/Square44x44Logo.scale-150.png -------------------------------------------------------------------------------- /src/Assets/Store/Square44x44Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/PSXMaster/HEAD/src/Assets/Store/Square44x44Logo.scale-200.png -------------------------------------------------------------------------------- /src/Assets/Store/Square44x44Logo.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/PSXMaster/HEAD/src/Assets/Store/Square44x44Logo.scale-400.png -------------------------------------------------------------------------------- /src/Assets/Store/Square44x44Logo.targetsize-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/PSXMaster/HEAD/src/Assets/Store/Square44x44Logo.targetsize-16.png -------------------------------------------------------------------------------- /src/Assets/Store/Square44x44Logo.targetsize-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/PSXMaster/HEAD/src/Assets/Store/Square44x44Logo.targetsize-24.png -------------------------------------------------------------------------------- /src/Assets/Store/Square44x44Logo.targetsize-24_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/PSXMaster/HEAD/src/Assets/Store/Square44x44Logo.targetsize-24_altform-unplated.png -------------------------------------------------------------------------------- /src/Assets/Store/Square44x44Logo.targetsize-256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/PSXMaster/HEAD/src/Assets/Store/Square44x44Logo.targetsize-256.png -------------------------------------------------------------------------------- /src/Assets/Store/Square44x44Logo.targetsize-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/PSXMaster/HEAD/src/Assets/Store/Square44x44Logo.targetsize-32.png -------------------------------------------------------------------------------- /src/Assets/Store/Square44x44Logo.targetsize-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/PSXMaster/HEAD/src/Assets/Store/Square44x44Logo.targetsize-48.png -------------------------------------------------------------------------------- /src/Assets/Store/StoreLogo.backup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/PSXMaster/HEAD/src/Assets/Store/StoreLogo.backup.png -------------------------------------------------------------------------------- /src/Assets/Store/StoreLogo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/PSXMaster/HEAD/src/Assets/Store/StoreLogo.scale-100.png -------------------------------------------------------------------------------- /src/Assets/Store/StoreLogo.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/PSXMaster/HEAD/src/Assets/Store/StoreLogo.scale-125.png -------------------------------------------------------------------------------- /src/Assets/Store/StoreLogo.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/PSXMaster/HEAD/src/Assets/Store/StoreLogo.scale-150.png -------------------------------------------------------------------------------- /src/Assets/Store/StoreLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/PSXMaster/HEAD/src/Assets/Store/StoreLogo.scale-200.png -------------------------------------------------------------------------------- /src/Assets/Store/StoreLogo.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/PSXMaster/HEAD/src/Assets/Store/StoreLogo.scale-400.png -------------------------------------------------------------------------------- /src/Assets/Store/Wide310x150Logo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/PSXMaster/HEAD/src/Assets/Store/Wide310x150Logo.scale-100.png -------------------------------------------------------------------------------- /src/Assets/Store/Wide310x150Logo.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/PSXMaster/HEAD/src/Assets/Store/Wide310x150Logo.scale-125.png -------------------------------------------------------------------------------- /src/Assets/Store/Wide310x150Logo.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/PSXMaster/HEAD/src/Assets/Store/Wide310x150Logo.scale-150.png -------------------------------------------------------------------------------- /src/Assets/Store/Wide310x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/PSXMaster/HEAD/src/Assets/Store/Wide310x150Logo.scale-200.png -------------------------------------------------------------------------------- /src/Assets/Store/Wide310x150Logo.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/PSXMaster/HEAD/src/Assets/Store/Wide310x150Logo.scale-400.png -------------------------------------------------------------------------------- /src/Collection/FilteringOperation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/PSXMaster/HEAD/src/Collection/FilteringOperation.cs -------------------------------------------------------------------------------- /src/Collection/IOperation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/PSXMaster/HEAD/src/Collection/IOperation.cs -------------------------------------------------------------------------------- /src/Common/AppConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/PSXMaster/HEAD/src/Common/AppConfig.cs -------------------------------------------------------------------------------- /src/Common/AppHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/PSXMaster/HEAD/src/Common/AppHelper.cs -------------------------------------------------------------------------------- /src/Common/Constants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/PSXMaster/HEAD/src/Common/Constants.cs -------------------------------------------------------------------------------- /src/Common/LoggerSetup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/PSXMaster/HEAD/src/Common/LoggerSetup.cs -------------------------------------------------------------------------------- /src/Core/Client.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/PSXMaster/HEAD/src/Core/Client.cs -------------------------------------------------------------------------------- /src/Core/HashUrl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/PSXMaster/HEAD/src/Core/HashUrl.cs -------------------------------------------------------------------------------- /src/Core/HttpClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/PSXMaster/HEAD/src/Core/HttpClient.cs -------------------------------------------------------------------------------- /src/Core/HttpListenerHelp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/PSXMaster/HEAD/src/Core/HttpListenerHelp.cs -------------------------------------------------------------------------------- /src/Core/Listener.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/PSXMaster/HEAD/src/Core/Listener.cs -------------------------------------------------------------------------------- /src/Core/LocalFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/PSXMaster/HEAD/src/Core/LocalFile.cs -------------------------------------------------------------------------------- /src/Core/PSXTools.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/PSXMaster/HEAD/src/Core/PSXTools.cs -------------------------------------------------------------------------------- /src/Core/UrlInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/PSXMaster/HEAD/src/Core/UrlInfo.cs -------------------------------------------------------------------------------- /src/Core/UrlOperate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/PSXMaster/HEAD/src/Core/UrlOperate.cs -------------------------------------------------------------------------------- /src/Database/DbBootstrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/PSXMaster/HEAD/src/Database/DbBootstrapper.cs -------------------------------------------------------------------------------- /src/Database/PSXMasterDbContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/PSXMaster/HEAD/src/Database/PSXMasterDbContext.cs -------------------------------------------------------------------------------- /src/Database/Tables/QueueGames.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/PSXMaster/HEAD/src/Database/Tables/QueueGames.cs -------------------------------------------------------------------------------- /src/GlobalUsings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/PSXMaster/HEAD/src/GlobalUsings.cs -------------------------------------------------------------------------------- /src/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/PSXMaster/HEAD/src/MainWindow.xaml -------------------------------------------------------------------------------- /src/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/PSXMaster/HEAD/src/MainWindow.xaml.cs -------------------------------------------------------------------------------- /src/Microsoft.WindowsAppSdk.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/PSXMaster/HEAD/src/Microsoft.WindowsAppSdk.manifest -------------------------------------------------------------------------------- /src/Models/BufferModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/PSXMaster/HEAD/src/Models/BufferModel.cs -------------------------------------------------------------------------------- /src/Models/Game.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/PSXMaster/HEAD/src/Models/Game.cs -------------------------------------------------------------------------------- /src/Models/LogModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/PSXMaster/HEAD/src/Models/LogModel.cs -------------------------------------------------------------------------------- /src/PSXMaster.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/PSXMaster/HEAD/src/PSXMaster.csproj -------------------------------------------------------------------------------- /src/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/PSXMaster/HEAD/src/Package.appxmanifest -------------------------------------------------------------------------------- /src/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/PSXMaster/HEAD/src/Properties/launchSettings.json -------------------------------------------------------------------------------- /src/Services/IPSXMasterService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/PSXMaster/HEAD/src/Services/IPSXMasterService.cs -------------------------------------------------------------------------------- /src/Services/PSXMasterService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/PSXMaster/HEAD/src/Services/PSXMasterService.cs -------------------------------------------------------------------------------- /src/T4Templates/BreadcrumbPageMappings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/PSXMaster/HEAD/src/T4Templates/BreadcrumbPageMappings.cs -------------------------------------------------------------------------------- /src/T4Templates/BreadcrumbPageMappings.tt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/PSXMaster/HEAD/src/T4Templates/BreadcrumbPageMappings.tt -------------------------------------------------------------------------------- /src/T4Templates/NavigationPageMappings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/PSXMaster/HEAD/src/T4Templates/NavigationPageMappings.cs -------------------------------------------------------------------------------- /src/T4Templates/NavigationPageMappings.tt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/PSXMaster/HEAD/src/T4Templates/NavigationPageMappings.tt -------------------------------------------------------------------------------- /src/Themes/Styles.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/PSXMaster/HEAD/src/Themes/Styles.xaml -------------------------------------------------------------------------------- /src/Themes/ThemeResources.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/PSXMaster/HEAD/src/Themes/ThemeResources.xaml -------------------------------------------------------------------------------- /src/ViewModels/GameDetailsViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/PSXMaster/HEAD/src/ViewModels/GameDetailsViewModel.cs -------------------------------------------------------------------------------- /src/ViewModels/GameTransferViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/PSXMaster/HEAD/src/ViewModels/GameTransferViewModel.cs -------------------------------------------------------------------------------- /src/ViewModels/QueueGamesViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/PSXMaster/HEAD/src/ViewModels/QueueGamesViewModel.cs -------------------------------------------------------------------------------- /src/ViewModels/Settings/AboutUsSettingViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/PSXMaster/HEAD/src/ViewModels/Settings/AboutUsSettingViewModel.cs -------------------------------------------------------------------------------- /src/ViewModels/Settings/AppUpdateSettingViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/PSXMaster/HEAD/src/ViewModels/Settings/AppUpdateSettingViewModel.cs -------------------------------------------------------------------------------- /src/ViewModels/Settings/GeneralSettingViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/PSXMaster/HEAD/src/ViewModels/Settings/GeneralSettingViewModel.cs -------------------------------------------------------------------------------- /src/Views/AddOrEditContentDialog.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/PSXMaster/HEAD/src/Views/AddOrEditContentDialog.xaml -------------------------------------------------------------------------------- /src/Views/AddOrEditContentDialog.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/PSXMaster/HEAD/src/Views/AddOrEditContentDialog.xaml.cs -------------------------------------------------------------------------------- /src/Views/DeleteGameContentDialog.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/PSXMaster/HEAD/src/Views/DeleteGameContentDialog.xaml -------------------------------------------------------------------------------- /src/Views/DeleteGameContentDialog.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/PSXMaster/HEAD/src/Views/DeleteGameContentDialog.xaml.cs -------------------------------------------------------------------------------- /src/Views/GameDetailsPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/PSXMaster/HEAD/src/Views/GameDetailsPage.xaml -------------------------------------------------------------------------------- /src/Views/GameDetailsPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/PSXMaster/HEAD/src/Views/GameDetailsPage.xaml.cs -------------------------------------------------------------------------------- /src/Views/GameTransferPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/PSXMaster/HEAD/src/Views/GameTransferPage.xaml -------------------------------------------------------------------------------- /src/Views/GameTransferPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/PSXMaster/HEAD/src/Views/GameTransferPage.xaml.cs -------------------------------------------------------------------------------- /src/Views/HomeLandingPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/PSXMaster/HEAD/src/Views/HomeLandingPage.xaml -------------------------------------------------------------------------------- /src/Views/HomeLandingPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/PSXMaster/HEAD/src/Views/HomeLandingPage.xaml.cs -------------------------------------------------------------------------------- /src/Views/ItemUserControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/PSXMaster/HEAD/src/Views/ItemUserControl.xaml -------------------------------------------------------------------------------- /src/Views/ItemUserControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/PSXMaster/HEAD/src/Views/ItemUserControl.xaml.cs -------------------------------------------------------------------------------- /src/Views/QueueGamesPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/PSXMaster/HEAD/src/Views/QueueGamesPage.xaml -------------------------------------------------------------------------------- /src/Views/QueueGamesPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/PSXMaster/HEAD/src/Views/QueueGamesPage.xaml.cs -------------------------------------------------------------------------------- /src/Views/Settings/AboutUsSettingPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/PSXMaster/HEAD/src/Views/Settings/AboutUsSettingPage.xaml -------------------------------------------------------------------------------- /src/Views/Settings/AboutUsSettingPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/PSXMaster/HEAD/src/Views/Settings/AboutUsSettingPage.xaml.cs -------------------------------------------------------------------------------- /src/Views/Settings/AppUpdateSettingPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/PSXMaster/HEAD/src/Views/Settings/AppUpdateSettingPage.xaml -------------------------------------------------------------------------------- /src/Views/Settings/AppUpdateSettingPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/PSXMaster/HEAD/src/Views/Settings/AppUpdateSettingPage.xaml.cs -------------------------------------------------------------------------------- /src/Views/Settings/GeneralSettingPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/PSXMaster/HEAD/src/Views/Settings/GeneralSettingPage.xaml -------------------------------------------------------------------------------- /src/Views/Settings/GeneralSettingPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/PSXMaster/HEAD/src/Views/Settings/GeneralSettingPage.xaml.cs -------------------------------------------------------------------------------- /src/Views/Settings/ThemeSettingPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/PSXMaster/HEAD/src/Views/Settings/ThemeSettingPage.xaml -------------------------------------------------------------------------------- /src/Views/Settings/ThemeSettingPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/PSXMaster/HEAD/src/Views/Settings/ThemeSettingPage.xaml.cs -------------------------------------------------------------------------------- /src/Views/SettingsPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/PSXMaster/HEAD/src/Views/SettingsPage.xaml -------------------------------------------------------------------------------- /src/Views/SettingsPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/PSXMaster/HEAD/src/Views/SettingsPage.xaml.cs -------------------------------------------------------------------------------- /src/app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/PSXMaster/HEAD/src/app.manifest --------------------------------------------------------------------------------