From b76a7dd6ab7fe57318756292f8db27992d0e79a3 Mon Sep 17 00:00:00 2001 From: MikeMaximus Date: Sun, 4 Mar 2018 09:27:00 -0600 Subject: [PATCH] Fixed orphaned tags issue when game id is changed --- GBM/Managers/mgrMonitorList.vb | 3 ++- GBM/readme.txt | 6 ++++++ 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/GBM/Managers/mgrMonitorList.vb b/GBM/Managers/mgrMonitorList.vb index e1ad955..5c2850d 100644 --- a/GBM/Managers/mgrMonitorList.vb +++ b/GBM/Managers/mgrMonitorList.vb @@ -150,7 +150,8 @@ Public Class mgrMonitorList sSQL = "UPDATE monitorlist SET MonitorID=@ID, Name=@Name, Process=@Process, Path=@Path, AbsolutePath=@AbsolutePath, FolderSave=@FolderSave, " sSQL &= "FileType=@FileType, TimeStamp=@TimeStamp, ExcludeList=@ExcludeList, ProcessPath=@ProcessPath, Icon=@Icon, " sSQL &= "Hours=@Hours, Version=@Version, Company=@Company, Enabled=@Enabled, MonitorOnly=@MonitorOnly, BackupLimit=@BackupLimit, " - sSQL &= "CleanFolder=@CleanFolder, Parameter=@Parameter, Comments=@Comments, IsRegEx=@IsRegEx WHERE MonitorID=@QueryID" + sSQL &= "CleanFolder=@CleanFolder, Parameter=@Parameter, Comments=@Comments, IsRegEx=@IsRegEx WHERE MonitorID=@QueryID;" + sSQL &= "UPDATE gametags SET MonitorID=@ID WHERE MonitorID=@QueryID;" 'Parameters hshParams = SetCoreParameters(oGame) diff --git a/GBM/readme.txt b/GBM/readme.txt index 18de283..be4f01c 100644 --- a/GBM/readme.txt +++ b/GBM/readme.txt @@ -42,5 +42,11 @@ Linux Only: - GBM now uses notify-send (libnotify) if it's available to display notifications on Linux. - Mono style notifications will be displayed if notify-send is not available. - The GBM icon will be displayed on notifications if it's been installed to the correct location (via makefile or deb). + +Known Issues: + +- If one or more Game IDs are changed on one computer and these changes are synced to another PC sharing the same backup folder, the local backup manifest data for the changed game(s) on that PC will be reset. + - This is intended behavior. + - If "Backup Handling" options are enabled in Settings, GBM will see any backups for the changed game(s) as new and will handle them accordingly. The entire version history of GBM releases is available at http://mikemaximus.github.io/gbm-web/versionhistory.html \ No newline at end of file