Compare commits
5 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
7eab3b8841 | ||
|
|
539009c5de | ||
|
|
01b46107ad | ||
|
|
a5d2ce2255 | ||
|
|
c0764d0c08 |
@@ -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
|
||||
|
||||
@@ -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
@@ -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.
Reference in New Issue
Block a user