5 Commits

Author SHA1 Message Date
Michael J. Seiferling
7eab3b8841 Updated readme.txt for v1.1.2 2018-06-07 10:50:26 -06:00
Michael J. Seiferling
539009c5de Updated SQLite to 3.23.1 2018-05-20 21:07:00 -06:00
MikeMaximus
01b46107ad Fixed a possible issue with Game Manager quick filter 2018-05-12 23:14:31 -06:00
MikeMaximus
a5d2ce2255 Minor UI change for Game Manager 2018-05-07 20:59:06 -06:00
MikeMaximus
c0764d0c08 Fixed rare crash situation in Game Manager 2018-05-07 16:24:23 -06:00
5 changed files with 20 additions and 9 deletions
+10 -2
View File
@@ -913,7 +913,7 @@ Public Class frmGameManager
Next
End Sub
Private Sub ModeChange()
Private Sub ModeChange(Optional ByVal bNoFocusChange As Boolean = False)
IsLoading = True
Select Case eCurrentMode
@@ -1060,7 +1060,7 @@ Public Class frmGameManager
btnExport.Enabled = True
End Select
lstGames.Focus()
If Not bNoFocusChange Then lstGames.Focus()
IsLoading = False
End Sub
@@ -1812,7 +1812,14 @@ Public Class frmGameManager
End Sub
Private Sub txtQuickFilter_TextChanged(sender As Object, e As EventArgs) Handles txtQuickFilter.TextChanged
If Not eCurrentMode = eModes.Disabled Then
eCurrentMode = eModes.Disabled
ModeChange(True)
lstGames.ClearSelected()
End If
If Not tmFilterTimer.Enabled Then
lstGames.Enabled = False
tmFilterTimer.Enabled = True
tmFilterTimer.Start()
End If
@@ -1827,6 +1834,7 @@ Public Class frmGameManager
FormatAndFillList()
tmFilterTimer.Stop()
tmFilterTimer.Enabled = False
lstGames.Enabled = True
End Sub
Private Sub frmGameManager_Shown(sender As Object, e As EventArgs) Handles MyBase.Shown
+2 -2
View File
@@ -33,7 +33,7 @@ Imports System.Runtime.InteropServices
' by using the '*' as shown below:
' <Assembly: AssemblyVersion("1.0.*")>
<Assembly: AssemblyVersion("1.1.1.*")>
<Assembly: AssemblyFileVersion("1.1.1.0")>
<Assembly: AssemblyVersion("1.1.2.*")>
<Assembly: AssemblyFileVersion("1.1.2.0")>
<Assembly: NeutralResourcesLanguageAttribute("en")>
+8 -5
View File
@@ -1,17 +1,20 @@
Game Backup Monitor v1.1.1 Readme
Game Backup Monitor v1.1.2 Readme
http://mikemaximus.github.io/gbm-web/
gamebackupmonitor@gmail.com
May 4, 2018
June 7th, 2018
New in 1.1.1
New in 1.1.2
All Platforms:
- Spelling error fixed in manual backup message
- Modified "Quick Filter" behavior on the Game Manager
- The game list now becomes disabled when typing in the Quick Filter and enabled only when the filter has finished running.
- When using the Quick Filter, the currently selected game will be automatically deselected.
- These changes prevent the Game Manager from entering an unstable state after using the Quick Filter.
Windows Only:
- Updated 7-Zip to v18.05
- Updated SQLite to v3.23.1
The entire version history of GBM releases is available at http://mikemaximus.github.io/gbm-web/versionhistory.html
Binary file not shown.
Binary file not shown.