Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: charles7668/VNGT
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 0.8.0
Choose a base ref
...
head repository: charles7668/VNGT
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: main
Choose a head ref

Commits on Nov 11, 2024

  1. Copy the full SHA
    2ee95fa View commit details

Commits on Nov 14, 2024

  1. Copy the full SHA
    88ba24b View commit details

Commits on Nov 15, 2024

  1. Copy the full SHA
    a5ff6bc View commit details

Commits on Nov 16, 2024

  1. Copy the full SHA
    b898cb0 View commit details
  2. Copy the full SHA
    2da557b View commit details
  3. Copy the full SHA
    63f664b View commit details
  4. Copy the full SHA
    6d256ff View commit details
  5. Copy the full SHA
    8b80d1d View commit details

Commits on Nov 17, 2024

  1. Copy the full SHA
    735a7db View commit details
  2. Copy the full SHA
    05b0911 View commit details
  3. Copy the full SHA
    dcb8f70 View commit details

Commits on Nov 18, 2024

  1. Copy the full SHA
    79852ef View commit details

Commits on Nov 28, 2024

  1. Fix Library Scan Bugs

    - Resolved the issue where the loading progress indicator kept running even after the scan was completed.
    - Added exception handling for scenarios where the application lacks permission to access a directory.
    charles7668 committed Nov 28, 2024
    Copy the full SHA
    e4f1b98 View commit details
  2. Copy the full SHA
    a6d6d49 View commit details
  3. Add play time monitor

    charles7668 committed Nov 28, 2024
    Copy the full SHA
    9a5f363 View commit details

Commits on Nov 29, 2024

  1. Copy the full SHA
    60afd67 View commit details

Commits on Nov 30, 2024

  1. Refactor

    charles7668 committed Nov 30, 2024
    Copy the full SHA
    54dc088 View commit details
  2. Copy the full SHA
    2b4bb85 View commit details

Commits on Dec 1, 2024

  1. Copy the full SHA
    a530179 View commit details
  2. Copy the full SHA
    ca12a6d View commit details

Commits on Dec 11, 2024

  1. Copy the full SHA
    0aea310 View commit details
  2. Copy the full SHA
    1d33b73 View commit details

Commits on Dec 12, 2024

  1. Copy the full SHA
    5be8ed0 View commit details

Commits on Dec 13, 2024

  1. Revert commits

    Revert "Card Image Display Using Stream Instead of Converting Cover Image File to Base64"
    
    This reverts commit 1d33b73.
    
    Revert "Remove unused ImageSrc property in Card.razor.cs"
    
    This reverts commit 5be8ed0.
    charles7668 committed Dec 13, 2024
    Copy the full SHA
    939a88e View commit details
  2. Copy the full SHA
    e78766c View commit details
  3. Copy the full SHA
    3d7b5ec View commit details
  4. Copy the full SHA
    d3d4c77 View commit details
  5. Copy the full SHA
    e04c4d2 View commit details
  6. Copy the full SHA
    1da63f0 View commit details
  7. Copy the full SHA
    3b9b381 View commit details

Commits on Dec 14, 2024

  1. Copy the full SHA
    aa60e12 View commit details
  2. Copy the full SHA
    6a7995f View commit details
  3. Support launch bat file

    charles7668 committed Dec 14, 2024
    Copy the full SHA
    e8670ad View commit details
  4. Copy the full SHA
    692ea77 View commit details

Commits on Dec 19, 2024

  1. Copy the full SHA
    f48a365 View commit details

Commits on Dec 20, 2024

  1. Add list display mode

    charles7668 committed Dec 20, 2024
    Copy the full SHA
    8897f12 View commit details

Commits on Jan 20, 2025

  1. Copy the full SHA
    2b1eade View commit details
Showing with 5,683 additions and 2,222 deletions.
  1. +8 −0 GameManager.DB/Enums/DisplayMode.cs
  2. +738 −0 GameManager.DB/Migrations/20241127033931_AddPlayTimeField.Designer.cs
  3. +29 −0 GameManager.DB/Migrations/20241127033931_AddPlayTimeField.cs
  4. +741 −0 GameManager.DB/Migrations/20241219065602_AddDisplayModeSetting.Designer.cs
  5. +29 −0 GameManager.DB/Migrations/20241219065602_AddDisplayModeSetting.cs
  6. +6 −0 GameManager.DB/Migrations/AppDbContextModelSnapshot.cs
  7. +4 −1 GameManager.DB/Models/AppSetting.cs
  8. +3 −0 GameManager.DB/Models/GameInfo.cs
  9. +1 −2 GameManager/App.xaml.cs
  10. +1 −1 GameManager/Components/Layout/MainLayout.razor.cs
  11. +4 −3 GameManager/Components/Layout/NavMenu.razor
  12. +8 −8 GameManager/Components/Layout/NavMenu.razor.cs
  13. +129 −30 GameManager/Components/Pages/Home.Razor.cs
  14. +140 −66 GameManager/Components/Pages/Home.razor
  15. +39 −0 GameManager/Components/Pages/Home.razor.css
  16. +2 −3 GameManager/Components/Pages/Library.razor
  17. +128 −98 GameManager/Components/Pages/Library.razor.cs
  18. +13 −2 GameManager/Components/Pages/Setting.razor
  19. +13 −12 GameManager/Components/Pages/Setting.razor.cs
  20. +1 −1 GameManager/Components/Pages/Tools.razor
  21. +3 −2 GameManager/Components/Pages/Tools.razor.cs
  22. +21 −7 GameManager/Components/Pages/components/ActionBar.razor.cs
  23. +33 −11 GameManager/Components/Pages/components/Card.razor
  24. +74 −16 GameManager/Components/Pages/components/Card.razor.cs
  25. +1 −1 GameManager/Components/Pages/components/Card.razor.css
  26. +8 −5 GameManager/Components/Pages/components/DialogAddFromArchive.razor
  27. +6 −2 GameManager/Components/Pages/components/DialogAddFromArchive.razor.cs
  28. +2 −2 GameManager/Components/Pages/components/DialogAddFromArchive.razor.css
  29. +3 −2 GameManager/Components/Pages/components/DialogFetchSelection.razor.cs
  30. +99 −48 GameManager/Components/Pages/components/DialogGameInfoEdit.razor.cs
  31. +1 −1 GameManager/Components/Pages/components/DialogMultiLineInputBox.razor
  32. +2 −1 GameManager/Components/Pages/components/DialogMultiLineInputBox.razor.cs
  33. +2 −2 GameManager/Components/Pages/components/DialogUseLECheck.razor.cs
  34. +24 −8 GameManager/Components/Pages/components/GameDetail.razor
  35. +89 −22 GameManager/Components/Pages/components/GameDetail.razor.cs
  36. +23 −0 GameManager/Components/Pages/components/GameDetail.razor.css
  37. +3 −2 GameManager/Components/Pages/components/GameDetailCharacter.razor.cs
  38. +2 −1 GameManager/Components/Pages/components/GameDetailInformation.razor.cs
  39. +3 −2 GameManager/Components/Pages/components/GameDetailSaveManager.razor.cs
  40. +14 −7 GameManager/Components/Pages/components/GameDetailScreenShots.razor
  41. +70 −21 GameManager/Components/Pages/components/GameDetailScreenShots.razor.cs
  42. +4 −0 GameManager/Components/Pages/components/GameDetailScreenShots.razor.css
  43. +8 −3 GameManager/DTOs/AppSettingDTO.cs
  44. +7 −2 GameManager/DTOs/GameInfoDTO.cs
  45. +37 −0 GameManager/DTOs/LibraryDTO.cs
  46. +22 −2 GameManager/DTOs/PendingGameInfoDeletionDTO.cs
  47. +3 −3 GameManager/Database/AppSettingRepository.cs
  48. +211 −288 GameManager/Database/GameInfoRepository.cs
  49. +0 −11 GameManager/Database/GameInfoTagRepository.cs
  50. +2 −2 GameManager/Database/IAppSettingRepository.cs
  51. +60 −0 GameManager/Database/IBaseRepository.cs
  52. +26 −53 GameManager/Database/IGameInfoRepository.cs
  53. +0 −2 GameManager/Database/IGameInfoTagRepository.cs
  54. +0 −9 GameManager/Database/ILaunchOptionRepository.cs
  55. +1 −8 GameManager/Database/ILibraryRepository.cs
  56. +1 −10 GameManager/Database/IPendingGameInfoDeletionRepository.cs
  57. +1 −8 GameManager/Database/ITagRepository.cs
  58. +0 −2 GameManager/Database/IUnitOfWork.cs
  59. +0 −17 GameManager/Database/LaunchOptionRepository.cs
  60. +115 −10 GameManager/Database/LibraryRepository.cs
  61. +113 −11 GameManager/Database/PendingGameInfoDeletionRepository.cs
  62. +124 −17 GameManager/Database/TagRepository.cs
  63. +22 −12 GameManager/Database/UnitOfWork.cs
  64. +4 −4 GameManager/Extensions/ServiceCollectionExtension.cs
  65. +13 −1 GameManager/Extractor/SevenZipExtractor.cs
  66. +17 −16 GameManager/GameInfoProvider/DLSiteProvider.cs
  67. +3 −3 GameManager/GameInfoProvider/IGameInfoProvider.cs
  68. +33 −24 GameManager/GameInfoProvider/VndbProvider.cs
  69. +23 −22 GameManager/GameInfoProvider/YmgalInfoProvider.cs
  70. +1 −0 GameManager/GameManager.csproj
  71. +4 −2 GameManager/MauiProgram.cs
  72. +19 −0 GameManager/Models/EventArgs/GameStartEventArgs.cs
  73. +1 −1 GameManager/Models/Strategy.cs
  74. +0 −9 GameManager/Models/Synchronizer/ISynchronizer.cs
  75. +0 −439 GameManager/Models/Synchronizer/Synchronizer.cs
  76. +0 −103 GameManager/Models/TaskManager/TaskExecutor.cs
  77. +3 −1 GameManager/{Models → Modules}/GameInstallAnalyzer/IGameInstallAnalyzer.cs
  78. +2 −2 GameManager/{Models → Modules}/GameInstallAnalyzer/ProcessTracerGameInstallAnalyzer.cs
  79. +238 −0 GameManager/Modules/GamePlayMonitor/GamePlayMonitor.cs
  80. +45 −0 GameManager/Modules/GamePlayMonitor/IGamePlayMonitor.cs
  81. +7 −10 GameManager/{Models → Modules}/LaunchProgramStrategies/DirectLaunch.cs
  82. +5 −3 GameManager/{Models → Modules}/LaunchProgramStrategies/LaunchProgramStrategyFactory.cs
  83. +13 −30 GameManager/{Models → Modules}/LaunchProgramStrategies/LaunchWithLocaleEmulator.cs
  84. +53 −6 GameManager/{Models → Modules}/LaunchProgramStrategies/LaunchWithSandboxie.cs
  85. +6 −8 GameManager/{Models → Modules}/SaveDataManager/ISaveDataManager.cs
  86. +5 −4 GameManager/{Models → Modules}/SaveDataManager/SaveDataManager.cs
  87. +1 −1 GameManager/{Models → Modules}/SecurityProvider/AESSecurityProvider.cs
  88. +1 −1 GameManager/{Models → Modules}/SecurityProvider/ISecurityProvider.cs
  89. +3 −1 GameManager/{Models → Modules}/Synchronizer/Drivers/IWebDAVDriver.cs
  90. +2 −1 GameManager/{Models → Modules}/Synchronizer/Drivers/WebDAVWebDAVDriver.cs
  91. +17 −0 GameManager/Modules/Synchronizer/ISynchronizer.cs
  92. +470 −0 GameManager/Modules/Synchronizer/Synchronizer.cs
  93. +4 −3 GameManager/{Models → Modules}/TaskManager/ITaskManager.cs
  94. +144 −0 GameManager/Modules/TaskManager/TaskExecutor.cs
  95. +9 −6 GameManager/{Models → Modules}/TaskManager/TaskManager.cs
  96. +2 −1 GameManager/{Models → Modules}/ToolInfo/BuiltinToolInfo.cs
  97. +1 −1 GameManager/{Models → Modules}/ToolInfo/CustomToolInfo.cs
  98. +1 −1 GameManager/{Models → Modules}/ToolInfo/IToolInfo.cs
  99. +144 −0 GameManager/Properties/Resources.Designer.cs
  100. +48 −0 GameManager/Properties/Resources.resx
  101. +48 −0 GameManager/Properties/Resources.zh-cn.resx
  102. +48 −0 GameManager/Properties/Resources.zh-tw.resx
  103. +3 −0 GameManager/Services/AppPathService.cs
  104. +657 −344 GameManager/Services/ConfigService.cs
  105. +5 −5 GameManager/Services/DataMapService.cs
  106. +1 −0 GameManager/Services/DebugAppPathService.cs
  107. +1 −0 GameManager/Services/IAppPathService.cs
  108. +31 −26 GameManager/Services/IConfigService.cs
  109. +1 −0 GameManager/Services/IImageService.cs
  110. +4 −3 GameManager/Services/IStaffService.cs
  111. +31 −4 GameManager/Services/ImageService.cs
  112. +7 −6 GameManager/Services/StaffService.cs
  113. +0 −12 GameManager/wwwroot/js/webview_api.js
  114. +9 −249 Helper/ExceptionHelper.cs
  115. +10 −0 Helper/Models/ProcessInfo.cs
  116. +159 −9 Helper/ProcessHelper.cs
  117. +49 −0 Helper/Sandboxie/SandboxieHelper.cs
8 changes: 8 additions & 0 deletions GameManager.DB/Enums/DisplayMode.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
namespace GameManager.DB.Enums
{
public enum DisplayMode
{
GRID,
LIST
}
}
Loading