Compare commits
5 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
7eab3b8841 | ||
|
|
539009c5de | ||
|
|
01b46107ad | ||
|
|
a5d2ce2255 | ||
|
|
c0764d0c08 |
@@ -913,7 +913,7 @@ Public Class frmGameManager
|
|||||||
Next
|
Next
|
||||||
End Sub
|
End Sub
|
||||||
|
|
||||||
Private Sub ModeChange()
|
Private Sub ModeChange(Optional ByVal bNoFocusChange As Boolean = False)
|
||||||
IsLoading = True
|
IsLoading = True
|
||||||
|
|
||||||
Select Case eCurrentMode
|
Select Case eCurrentMode
|
||||||
@@ -1060,7 +1060,7 @@ Public Class frmGameManager
|
|||||||
btnExport.Enabled = True
|
btnExport.Enabled = True
|
||||||
End Select
|
End Select
|
||||||
|
|
||||||
lstGames.Focus()
|
If Not bNoFocusChange Then lstGames.Focus()
|
||||||
|
|
||||||
IsLoading = False
|
IsLoading = False
|
||||||
End Sub
|
End Sub
|
||||||
@@ -1812,7 +1812,14 @@ Public Class frmGameManager
|
|||||||
End Sub
|
End Sub
|
||||||
|
|
||||||
Private Sub txtQuickFilter_TextChanged(sender As Object, e As EventArgs) Handles txtQuickFilter.TextChanged
|
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
|
If Not tmFilterTimer.Enabled Then
|
||||||
|
lstGames.Enabled = False
|
||||||
tmFilterTimer.Enabled = True
|
tmFilterTimer.Enabled = True
|
||||||
tmFilterTimer.Start()
|
tmFilterTimer.Start()
|
||||||
End If
|
End If
|
||||||
@@ -1827,6 +1834,7 @@ Public Class frmGameManager
|
|||||||
FormatAndFillList()
|
FormatAndFillList()
|
||||||
tmFilterTimer.Stop()
|
tmFilterTimer.Stop()
|
||||||
tmFilterTimer.Enabled = False
|
tmFilterTimer.Enabled = False
|
||||||
|
lstGames.Enabled = True
|
||||||
End Sub
|
End Sub
|
||||||
|
|
||||||
Private Sub frmGameManager_Shown(sender As Object, e As EventArgs) Handles MyBase.Shown
|
Private Sub frmGameManager_Shown(sender As Object, e As EventArgs) Handles MyBase.Shown
|
||||||
|
|||||||
@@ -33,7 +33,7 @@ Imports System.Runtime.InteropServices
|
|||||||
' by using the '*' as shown below:
|
' by using the '*' as shown below:
|
||||||
' <Assembly: AssemblyVersion("1.0.*")>
|
' <Assembly: AssemblyVersion("1.0.*")>
|
||||||
|
|
||||||
<Assembly: AssemblyVersion("1.1.1.*")>
|
<Assembly: AssemblyVersion("1.1.2.*")>
|
||||||
<Assembly: AssemblyFileVersion("1.1.1.0")>
|
<Assembly: AssemblyFileVersion("1.1.2.0")>
|
||||||
|
|
||||||
<Assembly: NeutralResourcesLanguageAttribute("en")>
|
<Assembly: NeutralResourcesLanguageAttribute("en")>
|
||||||
+8
-5
@@ -1,17 +1,20 @@
|
|||||||
Game Backup Monitor v1.1.1 Readme
|
Game Backup Monitor v1.1.2 Readme
|
||||||
http://mikemaximus.github.io/gbm-web/
|
http://mikemaximus.github.io/gbm-web/
|
||||||
gamebackupmonitor@gmail.com
|
gamebackupmonitor@gmail.com
|
||||||
|
|
||||||
May 4, 2018
|
June 7th, 2018
|
||||||
|
|
||||||
New in 1.1.1
|
New in 1.1.2
|
||||||
|
|
||||||
All Platforms:
|
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:
|
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
|
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.
Reference in New Issue
Block a user