Merge pull request #126 from MikeMaximus/v1.1.0
Merge v1.1.0 into master
This commit is contained in:
@@ -1,4 +1,5 @@
|
|||||||
Public Class Game
|
Public Class Game
|
||||||
|
Private sGameID As String
|
||||||
Private sGameName As String
|
Private sGameName As String
|
||||||
Private sProcessName As String
|
Private sProcessName As String
|
||||||
Private sParameter As String
|
Private sParameter As String
|
||||||
@@ -12,6 +13,15 @@
|
|||||||
Private bIsRegEx As Boolean
|
Private bIsRegEx As Boolean
|
||||||
Private oTags As List(Of Tag)
|
Private oTags As List(Of Tag)
|
||||||
|
|
||||||
|
Property ID As String
|
||||||
|
Set(value As String)
|
||||||
|
sGameID = value
|
||||||
|
End Set
|
||||||
|
Get
|
||||||
|
Return sGameID
|
||||||
|
End Get
|
||||||
|
End Property
|
||||||
|
|
||||||
Property Name As String
|
Property Name As String
|
||||||
Set(value As String)
|
Set(value As String)
|
||||||
sGameName = value
|
sGameName = value
|
||||||
|
|||||||
@@ -1,5 +1,6 @@
|
|||||||
Public Class clsBackup
|
Public Class clsBackup
|
||||||
Private sBackupID As String = Guid.NewGuid.ToString
|
Private sBackupID As String = Guid.NewGuid.ToString
|
||||||
|
Private sMonitorID As String = String.Empty
|
||||||
Private sName As String = String.Empty
|
Private sName As String = String.Empty
|
||||||
Private sFileName As String = String.Empty
|
Private sFileName As String = String.Empty
|
||||||
Private sRestorePath As String = String.Empty
|
Private sRestorePath As String = String.Empty
|
||||||
@@ -9,7 +10,7 @@
|
|||||||
Private sUpdatedBy As String = String.Empty
|
Private sUpdatedBy As String = String.Empty
|
||||||
Private sCheckSum As String = String.Empty
|
Private sCheckSum As String = String.Empty
|
||||||
|
|
||||||
Property ID As String
|
Property ManifestID As String
|
||||||
Get
|
Get
|
||||||
Return sBackupID
|
Return sBackupID
|
||||||
End Get
|
End Get
|
||||||
@@ -18,6 +19,15 @@
|
|||||||
End Set
|
End Set
|
||||||
End Property
|
End Property
|
||||||
|
|
||||||
|
Property MonitorID As String
|
||||||
|
Get
|
||||||
|
Return sMonitorID
|
||||||
|
End Get
|
||||||
|
Set(value As String)
|
||||||
|
sMonitorID = value
|
||||||
|
End Set
|
||||||
|
End Property
|
||||||
|
|
||||||
Property Name As String
|
Property Name As String
|
||||||
Get
|
Get
|
||||||
Return sName
|
Return sName
|
||||||
@@ -27,12 +37,6 @@
|
|||||||
End Set
|
End Set
|
||||||
End Property
|
End Property
|
||||||
|
|
||||||
ReadOnly Property SafeName As String
|
|
||||||
Get
|
|
||||||
Return mgrPath.ValidateForFileSystem(sName)
|
|
||||||
End Get
|
|
||||||
End Property
|
|
||||||
|
|
||||||
ReadOnly Property CroppedName As String
|
ReadOnly Property CroppedName As String
|
||||||
Get
|
Get
|
||||||
If Name.Length > 40 Then
|
If Name.Length > 40 Then
|
||||||
|
|||||||
+50
-23
@@ -22,8 +22,8 @@ Public Class clsGame
|
|||||||
Private sComments As String = String.Empty
|
Private sComments As String = String.Empty
|
||||||
Private bIsRegEx As Boolean = False
|
Private bIsRegEx As Boolean = False
|
||||||
Private bDuplicate As Boolean = False
|
Private bDuplicate As Boolean = False
|
||||||
Private bTempGame As Boolean = False
|
|
||||||
Private oImportTags As New List(Of Tag)
|
Private oImportTags As New List(Of Tag)
|
||||||
|
Private bImportUpdate As Boolean = False
|
||||||
|
|
||||||
<Flags()> Public Enum eOptionalSyncFields
|
<Flags()> Public Enum eOptionalSyncFields
|
||||||
None = 0
|
None = 0
|
||||||
@@ -37,7 +37,9 @@ Public Class clsGame
|
|||||||
|
|
||||||
Property ID As String
|
Property ID As String
|
||||||
Set(value As String)
|
Set(value As String)
|
||||||
sGameID = value
|
If Not value Is Nothing Then
|
||||||
|
sGameID = mgrPath.ValidateForFileSystem(value)
|
||||||
|
End If
|
||||||
End Set
|
End Set
|
||||||
Get
|
Get
|
||||||
Return sGameID
|
Return sGameID
|
||||||
@@ -46,7 +48,7 @@ Public Class clsGame
|
|||||||
|
|
||||||
ReadOnly Property CompoundKey As String
|
ReadOnly Property CompoundKey As String
|
||||||
Get
|
Get
|
||||||
Return ProcessName & ":" & KeySafeName
|
Return ProcessName & ":" & ID
|
||||||
End Get
|
End Get
|
||||||
End Property
|
End Property
|
||||||
|
|
||||||
@@ -60,24 +62,18 @@ Public Class clsGame
|
|||||||
End Get
|
End Get
|
||||||
End Property
|
End Property
|
||||||
|
|
||||||
Property Name As String
|
|
||||||
Set(value As String)
|
|
||||||
sGameName = value
|
|
||||||
End Set
|
|
||||||
Get
|
|
||||||
Return sGameName
|
|
||||||
End Get
|
|
||||||
End Property
|
|
||||||
|
|
||||||
ReadOnly Property FileSafeName As String
|
ReadOnly Property FileSafeName As String
|
||||||
Get
|
Get
|
||||||
Return mgrPath.ValidateForFileSystem(sGameName)
|
Return mgrPath.ValidateForFileSystem(sGameName)
|
||||||
End Get
|
End Get
|
||||||
End Property
|
End Property
|
||||||
|
|
||||||
ReadOnly Property KeySafeName As String
|
Property Name As String
|
||||||
|
Set(value As String)
|
||||||
|
sGameName = value
|
||||||
|
End Set
|
||||||
Get
|
Get
|
||||||
Return sGameName.Replace(":", "_")
|
Return sGameName
|
||||||
End Get
|
End Get
|
||||||
End Property
|
End Property
|
||||||
|
|
||||||
@@ -273,15 +269,6 @@ Public Class clsGame
|
|||||||
End Get
|
End Get
|
||||||
End Property
|
End Property
|
||||||
|
|
||||||
Property Temporary As Boolean
|
|
||||||
Get
|
|
||||||
Return bTempGame
|
|
||||||
End Get
|
|
||||||
Set(value As Boolean)
|
|
||||||
bTempGame = value
|
|
||||||
End Set
|
|
||||||
End Property
|
|
||||||
|
|
||||||
Property ImportTags As List(Of Tag)
|
Property ImportTags As List(Of Tag)
|
||||||
Get
|
Get
|
||||||
Return oImportTags
|
Return oImportTags
|
||||||
@@ -291,6 +278,15 @@ Public Class clsGame
|
|||||||
End Set
|
End Set
|
||||||
End Property
|
End Property
|
||||||
|
|
||||||
|
Property ImportUpdate As Boolean
|
||||||
|
Get
|
||||||
|
Return bImportUpdate
|
||||||
|
End Get
|
||||||
|
Set(value As Boolean)
|
||||||
|
bImportUpdate = value
|
||||||
|
End Set
|
||||||
|
End Property
|
||||||
|
|
||||||
ReadOnly Property IncludeArray As String()
|
ReadOnly Property IncludeArray As String()
|
||||||
Get
|
Get
|
||||||
If FileType = String.Empty Then
|
If FileType = String.Empty Then
|
||||||
@@ -406,12 +402,43 @@ Public Class clsGame
|
|||||||
If oGame Is Nothing Then
|
If oGame Is Nothing Then
|
||||||
Return False
|
Return False
|
||||||
Else
|
Else
|
||||||
|
'Core Fields
|
||||||
|
If ID <> oGame.ID Then
|
||||||
|
Return False
|
||||||
|
End If
|
||||||
If Name <> oGame.Name Then
|
If Name <> oGame.Name Then
|
||||||
Return False
|
Return False
|
||||||
End If
|
End If
|
||||||
If ProcessName <> oGame.ProcessName Then
|
If ProcessName <> oGame.ProcessName Then
|
||||||
Return False
|
Return False
|
||||||
End If
|
End If
|
||||||
|
If Parameter <> oGame.Parameter Then
|
||||||
|
Return False
|
||||||
|
End If
|
||||||
|
If Path <> oGame.Path Then
|
||||||
|
Return False
|
||||||
|
End If
|
||||||
|
If FileType <> oGame.FileType Then
|
||||||
|
Return False
|
||||||
|
End If
|
||||||
|
If ExcludeList <> oGame.ExcludeList Then
|
||||||
|
Return False
|
||||||
|
End If
|
||||||
|
If AbsolutePath <> oGame.AbsolutePath Then
|
||||||
|
Return False
|
||||||
|
End If
|
||||||
|
If FolderSave <> oGame.FolderSave Then
|
||||||
|
Return False
|
||||||
|
End If
|
||||||
|
If MonitorOnly <> oGame.MonitorOnly Then
|
||||||
|
Return False
|
||||||
|
End If
|
||||||
|
If Comments <> oGame.Comments Then
|
||||||
|
Return False
|
||||||
|
End If
|
||||||
|
If IsRegEx <> oGame.IsRegEx Then
|
||||||
|
Return False
|
||||||
|
End If
|
||||||
Return True
|
Return True
|
||||||
End If
|
End If
|
||||||
End Function
|
End Function
|
||||||
|
|||||||
@@ -0,0 +1,22 @@
|
|||||||
|
Public Class clsGameProcess
|
||||||
|
Private sProcessID As String
|
||||||
|
Private sMonitorID As String
|
||||||
|
|
||||||
|
Public Property ProcessID As String
|
||||||
|
Get
|
||||||
|
Return sProcessID
|
||||||
|
End Get
|
||||||
|
Set(value As String)
|
||||||
|
sProcessID = value
|
||||||
|
End Set
|
||||||
|
End Property
|
||||||
|
|
||||||
|
Public Property MonitorID As String
|
||||||
|
Get
|
||||||
|
Return sMonitorID
|
||||||
|
End Get
|
||||||
|
Set(value As String)
|
||||||
|
sMonitorID = value
|
||||||
|
End Set
|
||||||
|
End Property
|
||||||
|
End Class
|
||||||
@@ -0,0 +1,53 @@
|
|||||||
|
<Serializable()>
|
||||||
|
Public Class clsProcess
|
||||||
|
Private sProcessID As String = Guid.NewGuid.ToString
|
||||||
|
Private sName As String = String.Empty
|
||||||
|
Private sPath As String = String.Empty
|
||||||
|
Private sArgs As String = String.Empty
|
||||||
|
Private bKill As Boolean = True
|
||||||
|
|
||||||
|
Public Property ID As String
|
||||||
|
Get
|
||||||
|
Return sProcessID
|
||||||
|
End Get
|
||||||
|
Set(value As String)
|
||||||
|
sProcessID = value
|
||||||
|
End Set
|
||||||
|
End Property
|
||||||
|
|
||||||
|
Public Property Name As String
|
||||||
|
Get
|
||||||
|
Return sName
|
||||||
|
End Get
|
||||||
|
Set(value As String)
|
||||||
|
sName = value
|
||||||
|
End Set
|
||||||
|
End Property
|
||||||
|
|
||||||
|
Public Property Path As String
|
||||||
|
Get
|
||||||
|
Return sPath
|
||||||
|
End Get
|
||||||
|
Set(value As String)
|
||||||
|
sPath = value
|
||||||
|
End Set
|
||||||
|
End Property
|
||||||
|
|
||||||
|
Public Property Args As String
|
||||||
|
Get
|
||||||
|
Return sArgs
|
||||||
|
End Get
|
||||||
|
Set(value As String)
|
||||||
|
sArgs = value
|
||||||
|
End Set
|
||||||
|
End Property
|
||||||
|
|
||||||
|
Public Property Kill As Boolean
|
||||||
|
Get
|
||||||
|
Return bKill
|
||||||
|
End Get
|
||||||
|
Set(value As Boolean)
|
||||||
|
bKill = value
|
||||||
|
End Set
|
||||||
|
End Property
|
||||||
|
End Class
|
||||||
@@ -264,22 +264,11 @@ Public Class frmAddWizard
|
|||||||
End Function
|
End Function
|
||||||
|
|
||||||
Private Sub DoSave()
|
Private Sub DoSave()
|
||||||
Dim hshDupeCheck As New Hashtable
|
|
||||||
Dim sNewGame As String = oGameToSave.ProcessName & ":" & oGameToSave.KeySafeName
|
|
||||||
|
|
||||||
For Each o As clsGame In GameData.Values
|
|
||||||
hshDupeCheck.Add(o.CompoundKey, String.Empty)
|
|
||||||
Next
|
|
||||||
|
|
||||||
If hshDupeCheck.Contains(sNewGame) Then
|
|
||||||
mgrCommon.ShowMessage(frmAddWizard_ErrorGameDupe, MsgBoxStyle.Exclamation)
|
|
||||||
Else
|
|
||||||
mgrMonitorList.DoListAdd(oGameToSave)
|
mgrMonitorList.DoListAdd(oGameToSave)
|
||||||
If mgrCommon.ShowMessage(frmAddWizard_ConfirmSaveTags, New String() {oGameToSave.Name, oGameToSave.Name}, MsgBoxStyle.YesNo) = MsgBoxResult.Yes Then
|
If mgrCommon.ShowMessage(frmAddWizard_ConfirmSaveTags, New String() {oGameToSave.Name, oGameToSave.Name}, MsgBoxStyle.YesNo) = MsgBoxResult.Yes Then
|
||||||
OpenTags(oGameToSave)
|
OpenTags(oGameToSave)
|
||||||
End If
|
End If
|
||||||
Me.Close()
|
Me.Close()
|
||||||
End If
|
|
||||||
End Sub
|
End Sub
|
||||||
|
|
||||||
Private Sub ValidateBack()
|
Private Sub ValidateBack()
|
||||||
|
|||||||
@@ -9,6 +9,7 @@ Public Class frmAdvancedImport
|
|||||||
Private bSelectAll As Boolean = True
|
Private bSelectAll As Boolean = True
|
||||||
Private bIsLoading As Boolean = False
|
Private bIsLoading As Boolean = False
|
||||||
Private iCurrentSort As Integer = 0
|
Private iCurrentSort As Integer = 0
|
||||||
|
Private oImageList As ImageList
|
||||||
Private WithEvents tmFilterTimer As Timer
|
Private WithEvents tmFilterTimer As Timer
|
||||||
|
|
||||||
Public Property ImportInfo As ExportData
|
Public Property ImportInfo As ExportData
|
||||||
@@ -82,9 +83,9 @@ Public Class frmAdvancedImport
|
|||||||
sTags = sTags.TrimEnd(New Char() {",", " "})
|
sTags = sTags.TrimEnd(New Char() {",", " "})
|
||||||
|
|
||||||
oListViewItem = New ListViewItem(New String() {oApp.Name, oApp.TrueProcess, sTags})
|
oListViewItem = New ListViewItem(New String() {oApp.Name, oApp.TrueProcess, sTags})
|
||||||
oListViewItem.Tag = oApp.CompoundKey
|
oListViewItem.Tag = oApp.ID
|
||||||
|
|
||||||
If FinalData.ContainsKey(oApp.CompoundKey) Then
|
If FinalData.ContainsKey(oApp.ID) Then
|
||||||
oListViewItem.Checked = True
|
oListViewItem.Checked = True
|
||||||
Else
|
Else
|
||||||
oListViewItem.Checked = False
|
oListViewItem.Checked = False
|
||||||
@@ -103,6 +104,13 @@ Public Class frmAdvancedImport
|
|||||||
End If
|
End If
|
||||||
End If
|
End If
|
||||||
|
|
||||||
|
If oApp.ImportUpdate Then
|
||||||
|
oListViewItem.ImageIndex = 1
|
||||||
|
oListViewItem.Checked = True
|
||||||
|
Else
|
||||||
|
oListViewItem.ImageIndex = 0
|
||||||
|
End If
|
||||||
|
|
||||||
If sFilter = String.Empty Then
|
If sFilter = String.Empty Then
|
||||||
bAddItem = True
|
bAddItem = True
|
||||||
Else
|
Else
|
||||||
@@ -156,6 +164,13 @@ Public Class frmAdvancedImport
|
|||||||
btnImport.Text = frmAdvancedImport_btnImport
|
btnImport.Text = frmAdvancedImport_btnImport
|
||||||
chkSelectAll.Text = frmAdvancedImport_chkSelectAll
|
chkSelectAll.Text = frmAdvancedImport_chkSelectAll
|
||||||
|
|
||||||
|
|
||||||
|
'Set Icons
|
||||||
|
oImageList = New ImageList()
|
||||||
|
oImageList.Images.Add(Icon_New)
|
||||||
|
oImageList.Images.Add(Icon_Update)
|
||||||
|
lstGames.SmallImageList = oImageList
|
||||||
|
|
||||||
chkSelectAll.Checked = True
|
chkSelectAll.Checked = True
|
||||||
|
|
||||||
'Init Filter Timer
|
'Init Filter Timer
|
||||||
|
|||||||
@@ -2,16 +2,16 @@
|
|||||||
|
|
||||||
Public Class frmChooseGame
|
Public Class frmChooseGame
|
||||||
|
|
||||||
Private oProcess As mgrProcesses
|
Private oProcess As mgrProcessDetection
|
||||||
Private oGame As clsGame
|
Private oGame As clsGame
|
||||||
Private oGamesHash As New Hashtable
|
Private oGamesHash As New Hashtable
|
||||||
Private bGameSelected As Boolean = False
|
Private bGameSelected As Boolean = False
|
||||||
|
|
||||||
Property Process As mgrProcesses
|
Property Process As mgrProcessDetection
|
||||||
Get
|
Get
|
||||||
Return oProcess
|
Return oProcess
|
||||||
End Get
|
End Get
|
||||||
Set(value As mgrProcesses)
|
Set(value As mgrProcessDetection)
|
||||||
oProcess = value
|
oProcess = value
|
||||||
End Set
|
End Set
|
||||||
End Property
|
End Property
|
||||||
|
|||||||
@@ -132,6 +132,17 @@ Public Class frmFilter
|
|||||||
Private Sub LoadFilterFields()
|
Private Sub LoadFilterFields()
|
||||||
Dim oField As clsGameFilterField
|
Dim oField As clsGameFilterField
|
||||||
|
|
||||||
|
|
||||||
|
'Game ID
|
||||||
|
oField = New clsGameFilterField
|
||||||
|
oField.FieldName = "MonitorID"
|
||||||
|
oField.FriendlyFieldName = frmFilter_FieldGameID
|
||||||
|
oField.Type = clsGameFilterField.eDataType.fString
|
||||||
|
oField.Status = clsGameFilterField.eFieldStatus.ValidSort
|
||||||
|
oField.Status = clsGameFilterField.eFieldStatus.ValidFilter
|
||||||
|
oValidFields.Add(oField)
|
||||||
|
|
||||||
|
|
||||||
'Name
|
'Name
|
||||||
oField = New clsGameFilterField
|
oField = New clsGameFilterField
|
||||||
oField.FieldName = "Name"
|
oField.FieldName = "Name"
|
||||||
|
|||||||
Generated
+42
-18
@@ -28,6 +28,7 @@ Partial Class frmGameManager
|
|||||||
Me.btnBackup = New System.Windows.Forms.Button()
|
Me.btnBackup = New System.Windows.Forms.Button()
|
||||||
Me.btnClose = New System.Windows.Forms.Button()
|
Me.btnClose = New System.Windows.Forms.Button()
|
||||||
Me.grpConfig = New System.Windows.Forms.GroupBox()
|
Me.grpConfig = New System.Windows.Forms.GroupBox()
|
||||||
|
Me.btnGameID = New System.Windows.Forms.Button()
|
||||||
Me.chkRegEx = New System.Windows.Forms.CheckBox()
|
Me.chkRegEx = New System.Windows.Forms.CheckBox()
|
||||||
Me.lblComments = New System.Windows.Forms.Label()
|
Me.lblComments = New System.Windows.Forms.Label()
|
||||||
Me.txtComments = New System.Windows.Forms.TextBox()
|
Me.txtComments = New System.Windows.Forms.TextBox()
|
||||||
@@ -101,6 +102,7 @@ Partial Class frmGameManager
|
|||||||
Me.cmsDeleteBackup = New System.Windows.Forms.ContextMenuStrip(Me.components)
|
Me.cmsDeleteBackup = New System.Windows.Forms.ContextMenuStrip(Me.components)
|
||||||
Me.cmsDeleteOne = New System.Windows.Forms.ToolStripMenuItem()
|
Me.cmsDeleteOne = New System.Windows.Forms.ToolStripMenuItem()
|
||||||
Me.cmsDeleteAll = New System.Windows.Forms.ToolStripMenuItem()
|
Me.cmsDeleteAll = New System.Windows.Forms.ToolStripMenuItem()
|
||||||
|
Me.btnProcesses = New System.Windows.Forms.Button()
|
||||||
Me.grpConfig.SuspendLayout()
|
Me.grpConfig.SuspendLayout()
|
||||||
CType(Me.nudLimit, System.ComponentModel.ISupportInitialize).BeginInit()
|
CType(Me.nudLimit, System.ComponentModel.ISupportInitialize).BeginInit()
|
||||||
Me.grpExtra.SuspendLayout()
|
Me.grpExtra.SuspendLayout()
|
||||||
@@ -157,6 +159,7 @@ Partial Class frmGameManager
|
|||||||
'grpConfig
|
'grpConfig
|
||||||
'
|
'
|
||||||
Me.grpConfig.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
|
Me.grpConfig.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
|
||||||
|
Me.grpConfig.Controls.Add(Me.btnGameID)
|
||||||
Me.grpConfig.Controls.Add(Me.chkRegEx)
|
Me.grpConfig.Controls.Add(Me.chkRegEx)
|
||||||
Me.grpConfig.Controls.Add(Me.lblComments)
|
Me.grpConfig.Controls.Add(Me.lblComments)
|
||||||
Me.grpConfig.Controls.Add(Me.txtComments)
|
Me.grpConfig.Controls.Add(Me.txtComments)
|
||||||
@@ -188,13 +191,22 @@ Partial Class frmGameManager
|
|||||||
Me.grpConfig.TabStop = False
|
Me.grpConfig.TabStop = False
|
||||||
Me.grpConfig.Text = "Configuration"
|
Me.grpConfig.Text = "Configuration"
|
||||||
'
|
'
|
||||||
|
'btnGameID
|
||||||
|
'
|
||||||
|
Me.btnGameID.Location = New System.Drawing.Point(402, 17)
|
||||||
|
Me.btnGameID.Name = "btnGameID"
|
||||||
|
Me.btnGameID.Size = New System.Drawing.Size(117, 23)
|
||||||
|
Me.btnGameID.TabIndex = 2
|
||||||
|
Me.btnGameID.Text = "&Game ID..."
|
||||||
|
Me.btnGameID.UseVisualStyleBackColor = True
|
||||||
|
'
|
||||||
'chkRegEx
|
'chkRegEx
|
||||||
'
|
'
|
||||||
Me.chkRegEx.AutoSize = True
|
Me.chkRegEx.AutoSize = True
|
||||||
Me.chkRegEx.Location = New System.Drawing.Point(402, 46)
|
Me.chkRegEx.Location = New System.Drawing.Point(402, 46)
|
||||||
Me.chkRegEx.Name = "chkRegEx"
|
Me.chkRegEx.Name = "chkRegEx"
|
||||||
Me.chkRegEx.Size = New System.Drawing.Size(117, 17)
|
Me.chkRegEx.Size = New System.Drawing.Size(117, 17)
|
||||||
Me.chkRegEx.TabIndex = 5
|
Me.chkRegEx.TabIndex = 6
|
||||||
Me.chkRegEx.Text = "Regular Expression"
|
Me.chkRegEx.Text = "Regular Expression"
|
||||||
Me.chkRegEx.UseVisualStyleBackColor = True
|
Me.chkRegEx.UseVisualStyleBackColor = True
|
||||||
'
|
'
|
||||||
@@ -204,7 +216,7 @@ Partial Class frmGameManager
|
|||||||
Me.lblComments.Location = New System.Drawing.Point(7, 181)
|
Me.lblComments.Location = New System.Drawing.Point(7, 181)
|
||||||
Me.lblComments.Name = "lblComments"
|
Me.lblComments.Name = "lblComments"
|
||||||
Me.lblComments.Size = New System.Drawing.Size(59, 13)
|
Me.lblComments.Size = New System.Drawing.Size(59, 13)
|
||||||
Me.lblComments.TabIndex = 18
|
Me.lblComments.TabIndex = 19
|
||||||
Me.lblComments.Text = "Comments:"
|
Me.lblComments.Text = "Comments:"
|
||||||
'
|
'
|
||||||
'txtComments
|
'txtComments
|
||||||
@@ -214,14 +226,14 @@ Partial Class frmGameManager
|
|||||||
Me.txtComments.Name = "txtComments"
|
Me.txtComments.Name = "txtComments"
|
||||||
Me.txtComments.ScrollBars = System.Windows.Forms.ScrollBars.Vertical
|
Me.txtComments.ScrollBars = System.Windows.Forms.ScrollBars.Vertical
|
||||||
Me.txtComments.Size = New System.Drawing.Size(413, 71)
|
Me.txtComments.Size = New System.Drawing.Size(413, 71)
|
||||||
Me.txtComments.TabIndex = 19
|
Me.txtComments.TabIndex = 20
|
||||||
'
|
'
|
||||||
'txtParameter
|
'txtParameter
|
||||||
'
|
'
|
||||||
Me.txtParameter.Location = New System.Drawing.Point(70, 71)
|
Me.txtParameter.Location = New System.Drawing.Point(70, 71)
|
||||||
Me.txtParameter.Name = "txtParameter"
|
Me.txtParameter.Name = "txtParameter"
|
||||||
Me.txtParameter.Size = New System.Drawing.Size(414, 20)
|
Me.txtParameter.Size = New System.Drawing.Size(414, 20)
|
||||||
Me.txtParameter.TabIndex = 7
|
Me.txtParameter.TabIndex = 8
|
||||||
'
|
'
|
||||||
'lblParameter
|
'lblParameter
|
||||||
'
|
'
|
||||||
@@ -229,7 +241,7 @@ Partial Class frmGameManager
|
|||||||
Me.lblParameter.Location = New System.Drawing.Point(7, 74)
|
Me.lblParameter.Location = New System.Drawing.Point(7, 74)
|
||||||
Me.lblParameter.Name = "lblParameter"
|
Me.lblParameter.Name = "lblParameter"
|
||||||
Me.lblParameter.Size = New System.Drawing.Size(58, 13)
|
Me.lblParameter.Size = New System.Drawing.Size(58, 13)
|
||||||
Me.lblParameter.TabIndex = 6
|
Me.lblParameter.TabIndex = 7
|
||||||
Me.lblParameter.Text = "Parameter:"
|
Me.lblParameter.Text = "Parameter:"
|
||||||
'
|
'
|
||||||
'chkCleanFolder
|
'chkCleanFolder
|
||||||
@@ -248,7 +260,7 @@ Partial Class frmGameManager
|
|||||||
Me.lblLimit.Location = New System.Drawing.Point(376, 157)
|
Me.lblLimit.Location = New System.Drawing.Point(376, 157)
|
||||||
Me.lblLimit.Name = "lblLimit"
|
Me.lblLimit.Name = "lblLimit"
|
||||||
Me.lblLimit.Size = New System.Drawing.Size(68, 13)
|
Me.lblLimit.Size = New System.Drawing.Size(68, 13)
|
||||||
Me.lblLimit.TabIndex = 17
|
Me.lblLimit.TabIndex = 18
|
||||||
Me.lblLimit.Text = "Backup Limit"
|
Me.lblLimit.Text = "Backup Limit"
|
||||||
Me.lblLimit.Visible = False
|
Me.lblLimit.Visible = False
|
||||||
'
|
'
|
||||||
@@ -258,7 +270,7 @@ Partial Class frmGameManager
|
|||||||
Me.nudLimit.Minimum = New Decimal(New Integer() {2, 0, 0, 0})
|
Me.nudLimit.Minimum = New Decimal(New Integer() {2, 0, 0, 0})
|
||||||
Me.nudLimit.Name = "nudLimit"
|
Me.nudLimit.Name = "nudLimit"
|
||||||
Me.nudLimit.Size = New System.Drawing.Size(40, 20)
|
Me.nudLimit.Size = New System.Drawing.Size(40, 20)
|
||||||
Me.nudLimit.TabIndex = 16
|
Me.nudLimit.TabIndex = 17
|
||||||
Me.nudLimit.Value = New Decimal(New Integer() {2, 0, 0, 0})
|
Me.nudLimit.Value = New Decimal(New Integer() {2, 0, 0, 0})
|
||||||
Me.nudLimit.Visible = False
|
Me.nudLimit.Visible = False
|
||||||
'
|
'
|
||||||
@@ -267,7 +279,7 @@ Partial Class frmGameManager
|
|||||||
Me.btnExclude.Location = New System.Drawing.Point(10, 152)
|
Me.btnExclude.Location = New System.Drawing.Point(10, 152)
|
||||||
Me.btnExclude.Name = "btnExclude"
|
Me.btnExclude.Name = "btnExclude"
|
||||||
Me.btnExclude.Size = New System.Drawing.Size(175, 23)
|
Me.btnExclude.Size = New System.Drawing.Size(175, 23)
|
||||||
Me.btnExclude.TabIndex = 12
|
Me.btnExclude.TabIndex = 15
|
||||||
Me.btnExclude.Text = "E&xclude Items..."
|
Me.btnExclude.Text = "E&xclude Items..."
|
||||||
Me.btnExclude.UseVisualStyleBackColor = True
|
Me.btnExclude.UseVisualStyleBackColor = True
|
||||||
'
|
'
|
||||||
@@ -276,14 +288,14 @@ Partial Class frmGameManager
|
|||||||
Me.btnInclude.Location = New System.Drawing.Point(10, 123)
|
Me.btnInclude.Location = New System.Drawing.Point(10, 123)
|
||||||
Me.btnInclude.Name = "btnInclude"
|
Me.btnInclude.Name = "btnInclude"
|
||||||
Me.btnInclude.Size = New System.Drawing.Size(175, 23)
|
Me.btnInclude.Size = New System.Drawing.Size(175, 23)
|
||||||
Me.btnInclude.TabIndex = 11
|
Me.btnInclude.TabIndex = 12
|
||||||
Me.btnInclude.Text = "In&clude Items..."
|
Me.btnInclude.Text = "In&clude Items..."
|
||||||
Me.btnInclude.UseVisualStyleBackColor = True
|
Me.btnInclude.UseVisualStyleBackColor = True
|
||||||
'
|
'
|
||||||
'txtID
|
'txtID
|
||||||
'
|
'
|
||||||
Me.txtID.Enabled = False
|
Me.txtID.Enabled = False
|
||||||
Me.txtID.Location = New System.Drawing.Point(489, 19)
|
Me.txtID.Location = New System.Drawing.Point(489, 180)
|
||||||
Me.txtID.Name = "txtID"
|
Me.txtID.Name = "txtID"
|
||||||
Me.txtID.Size = New System.Drawing.Size(30, 20)
|
Me.txtID.Size = New System.Drawing.Size(30, 20)
|
||||||
Me.txtID.TabIndex = 0
|
Me.txtID.TabIndex = 0
|
||||||
@@ -295,7 +307,7 @@ Partial Class frmGameManager
|
|||||||
Me.btnSavePathBrowse.Location = New System.Drawing.Point(490, 97)
|
Me.btnSavePathBrowse.Location = New System.Drawing.Point(490, 97)
|
||||||
Me.btnSavePathBrowse.Name = "btnSavePathBrowse"
|
Me.btnSavePathBrowse.Name = "btnSavePathBrowse"
|
||||||
Me.btnSavePathBrowse.Size = New System.Drawing.Size(30, 20)
|
Me.btnSavePathBrowse.Size = New System.Drawing.Size(30, 20)
|
||||||
Me.btnSavePathBrowse.TabIndex = 10
|
Me.btnSavePathBrowse.TabIndex = 11
|
||||||
Me.btnSavePathBrowse.Text = "..."
|
Me.btnSavePathBrowse.Text = "..."
|
||||||
Me.btnSavePathBrowse.UseVisualStyleBackColor = True
|
Me.btnSavePathBrowse.UseVisualStyleBackColor = True
|
||||||
'
|
'
|
||||||
@@ -304,7 +316,7 @@ Partial Class frmGameManager
|
|||||||
Me.btnProcessBrowse.Location = New System.Drawing.Point(366, 44)
|
Me.btnProcessBrowse.Location = New System.Drawing.Point(366, 44)
|
||||||
Me.btnProcessBrowse.Name = "btnProcessBrowse"
|
Me.btnProcessBrowse.Name = "btnProcessBrowse"
|
||||||
Me.btnProcessBrowse.Size = New System.Drawing.Size(30, 20)
|
Me.btnProcessBrowse.Size = New System.Drawing.Size(30, 20)
|
||||||
Me.btnProcessBrowse.TabIndex = 4
|
Me.btnProcessBrowse.TabIndex = 5
|
||||||
Me.btnProcessBrowse.Text = "..."
|
Me.btnProcessBrowse.Text = "..."
|
||||||
Me.btnProcessBrowse.UseVisualStyleBackColor = True
|
Me.btnProcessBrowse.UseVisualStyleBackColor = True
|
||||||
'
|
'
|
||||||
@@ -314,7 +326,7 @@ Partial Class frmGameManager
|
|||||||
Me.lblSavePath.Location = New System.Drawing.Point(7, 101)
|
Me.lblSavePath.Location = New System.Drawing.Point(7, 101)
|
||||||
Me.lblSavePath.Name = "lblSavePath"
|
Me.lblSavePath.Name = "lblSavePath"
|
||||||
Me.lblSavePath.Size = New System.Drawing.Size(60, 13)
|
Me.lblSavePath.Size = New System.Drawing.Size(60, 13)
|
||||||
Me.lblSavePath.TabIndex = 8
|
Me.lblSavePath.TabIndex = 9
|
||||||
Me.lblSavePath.Text = "Save Path:"
|
Me.lblSavePath.Text = "Save Path:"
|
||||||
'
|
'
|
||||||
'lblProcess
|
'lblProcess
|
||||||
@@ -323,7 +335,7 @@ Partial Class frmGameManager
|
|||||||
Me.lblProcess.Location = New System.Drawing.Point(7, 47)
|
Me.lblProcess.Location = New System.Drawing.Point(7, 47)
|
||||||
Me.lblProcess.Name = "lblProcess"
|
Me.lblProcess.Name = "lblProcess"
|
||||||
Me.lblProcess.Size = New System.Drawing.Size(48, 13)
|
Me.lblProcess.Size = New System.Drawing.Size(48, 13)
|
||||||
Me.lblProcess.TabIndex = 2
|
Me.lblProcess.TabIndex = 3
|
||||||
Me.lblProcess.Text = "Process:"
|
Me.lblProcess.Text = "Process:"
|
||||||
'
|
'
|
||||||
'lblName
|
'lblName
|
||||||
@@ -359,7 +371,7 @@ Partial Class frmGameManager
|
|||||||
Me.chkTimeStamp.Location = New System.Drawing.Point(191, 156)
|
Me.chkTimeStamp.Location = New System.Drawing.Point(191, 156)
|
||||||
Me.chkTimeStamp.Name = "chkTimeStamp"
|
Me.chkTimeStamp.Name = "chkTimeStamp"
|
||||||
Me.chkTimeStamp.Size = New System.Drawing.Size(133, 17)
|
Me.chkTimeStamp.Size = New System.Drawing.Size(133, 17)
|
||||||
Me.chkTimeStamp.TabIndex = 15
|
Me.chkTimeStamp.TabIndex = 16
|
||||||
Me.chkTimeStamp.Text = "Save multiple backups"
|
Me.chkTimeStamp.Text = "Save multiple backups"
|
||||||
Me.chkTimeStamp.UseVisualStyleBackColor = True
|
Me.chkTimeStamp.UseVisualStyleBackColor = True
|
||||||
'
|
'
|
||||||
@@ -378,20 +390,20 @@ Partial Class frmGameManager
|
|||||||
Me.txtSavePath.Location = New System.Drawing.Point(70, 97)
|
Me.txtSavePath.Location = New System.Drawing.Point(70, 97)
|
||||||
Me.txtSavePath.Name = "txtSavePath"
|
Me.txtSavePath.Name = "txtSavePath"
|
||||||
Me.txtSavePath.Size = New System.Drawing.Size(414, 20)
|
Me.txtSavePath.Size = New System.Drawing.Size(414, 20)
|
||||||
Me.txtSavePath.TabIndex = 9
|
Me.txtSavePath.TabIndex = 10
|
||||||
'
|
'
|
||||||
'txtProcess
|
'txtProcess
|
||||||
'
|
'
|
||||||
Me.txtProcess.Location = New System.Drawing.Point(70, 44)
|
Me.txtProcess.Location = New System.Drawing.Point(70, 44)
|
||||||
Me.txtProcess.Name = "txtProcess"
|
Me.txtProcess.Name = "txtProcess"
|
||||||
Me.txtProcess.Size = New System.Drawing.Size(290, 20)
|
Me.txtProcess.Size = New System.Drawing.Size(290, 20)
|
||||||
Me.txtProcess.TabIndex = 3
|
Me.txtProcess.TabIndex = 4
|
||||||
'
|
'
|
||||||
'txtName
|
'txtName
|
||||||
'
|
'
|
||||||
Me.txtName.Location = New System.Drawing.Point(70, 19)
|
Me.txtName.Location = New System.Drawing.Point(70, 19)
|
||||||
Me.txtName.Name = "txtName"
|
Me.txtName.Name = "txtName"
|
||||||
Me.txtName.Size = New System.Drawing.Size(414, 20)
|
Me.txtName.Size = New System.Drawing.Size(326, 20)
|
||||||
Me.txtName.TabIndex = 1
|
Me.txtName.TabIndex = 1
|
||||||
'
|
'
|
||||||
'chkMonitorOnly
|
'chkMonitorOnly
|
||||||
@@ -873,11 +885,21 @@ Partial Class frmGameManager
|
|||||||
Me.cmsDeleteAll.Size = New System.Drawing.Size(114, 22)
|
Me.cmsDeleteAll.Size = New System.Drawing.Size(114, 22)
|
||||||
Me.cmsDeleteAll.Text = "&All Files"
|
Me.cmsDeleteAll.Text = "&All Files"
|
||||||
'
|
'
|
||||||
|
'btnProcesses
|
||||||
|
'
|
||||||
|
Me.btnProcesses.Location = New System.Drawing.Point(454, 437)
|
||||||
|
Me.btnProcesses.Name = "btnProcesses"
|
||||||
|
Me.btnProcesses.Size = New System.Drawing.Size(75, 23)
|
||||||
|
Me.btnProcesses.TabIndex = 20
|
||||||
|
Me.btnProcesses.Text = "Processes..."
|
||||||
|
Me.btnProcesses.UseVisualStyleBackColor = True
|
||||||
|
'
|
||||||
'frmGameManager
|
'frmGameManager
|
||||||
'
|
'
|
||||||
Me.AutoScaleDimensions = New System.Drawing.SizeF(6.0!, 13.0!)
|
Me.AutoScaleDimensions = New System.Drawing.SizeF(6.0!, 13.0!)
|
||||||
Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font
|
Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font
|
||||||
Me.ClientSize = New System.Drawing.Size(784, 661)
|
Me.ClientSize = New System.Drawing.Size(784, 661)
|
||||||
|
Me.Controls.Add(Me.btnProcesses)
|
||||||
Me.Controls.Add(Me.lblQuickFilter)
|
Me.Controls.Add(Me.lblQuickFilter)
|
||||||
Me.Controls.Add(Me.txtQuickFilter)
|
Me.Controls.Add(Me.txtQuickFilter)
|
||||||
Me.Controls.Add(Me.btnExport)
|
Me.Controls.Add(Me.btnExport)
|
||||||
@@ -1000,4 +1022,6 @@ Partial Class frmGameManager
|
|||||||
Friend WithEvents lblComments As Label
|
Friend WithEvents lblComments As Label
|
||||||
Friend WithEvents txtComments As TextBox
|
Friend WithEvents txtComments As TextBox
|
||||||
Friend WithEvents chkRegEx As CheckBox
|
Friend WithEvents chkRegEx As CheckBox
|
||||||
|
Friend WithEvents btnGameID As Button
|
||||||
|
Friend WithEvents btnProcesses As Button
|
||||||
End Class
|
End Class
|
||||||
|
|||||||
+179
-116
@@ -4,11 +4,13 @@ Imports System.IO
|
|||||||
|
|
||||||
Public Class frmGameManager
|
Public Class frmGameManager
|
||||||
|
|
||||||
|
Private oSettings As mgrSettings
|
||||||
Private sBackupFolder As String
|
Private sBackupFolder As String
|
||||||
Private bPendingRestores As Boolean = False
|
Private bPendingRestores As Boolean = False
|
||||||
Private oCurrentBackupItem As clsBackup
|
Private oCurrentBackupItem As clsBackup
|
||||||
Private oCurrentGame As clsGame
|
Private oCurrentGame As clsGame
|
||||||
Private oTagsToSave As New List(Of KeyValuePair(Of String, String))
|
Private oTagsToSave As New List(Of KeyValuePair(Of String, String))
|
||||||
|
Private oProcessesToSave As New List(Of KeyValuePair(Of String, String))
|
||||||
Private bDisableExternalFunctions As Boolean = False
|
Private bDisableExternalFunctions As Boolean = False
|
||||||
Private bTriggerBackup As Boolean = False
|
Private bTriggerBackup As Boolean = False
|
||||||
Private bTriggerRestore As Boolean = False
|
Private bTriggerRestore As Boolean = False
|
||||||
@@ -34,17 +36,16 @@ Public Class frmGameManager
|
|||||||
Add = 3
|
Add = 3
|
||||||
Disabled = 4
|
Disabled = 4
|
||||||
MultiSelect = 5
|
MultiSelect = 5
|
||||||
ViewTemp = 6
|
|
||||||
End Enum
|
End Enum
|
||||||
|
|
||||||
Private eCurrentMode As eModes = eModes.Disabled
|
Private eCurrentMode As eModes = eModes.Disabled
|
||||||
|
|
||||||
Property BackupFolder As String
|
Property Settings As mgrSettings
|
||||||
Get
|
Get
|
||||||
Return sBackupFolder & Path.DirectorySeparatorChar
|
Return oSettings
|
||||||
End Get
|
End Get
|
||||||
Set(value As String)
|
Set(value As mgrSettings)
|
||||||
sBackupFolder = value
|
oSettings = value
|
||||||
End Set
|
End Set
|
||||||
End Property
|
End Property
|
||||||
|
|
||||||
@@ -75,6 +76,15 @@ Public Class frmGameManager
|
|||||||
End Set
|
End Set
|
||||||
End Property
|
End Property
|
||||||
|
|
||||||
|
Private Property BackupFolder As String
|
||||||
|
Get
|
||||||
|
Return Settings.BackupFolder & Path.DirectorySeparatorChar
|
||||||
|
End Get
|
||||||
|
Set(value As String)
|
||||||
|
sBackupFolder = value
|
||||||
|
End Set
|
||||||
|
End Property
|
||||||
|
|
||||||
Private Property GameData As OrderedDictionary
|
Private Property GameData As OrderedDictionary
|
||||||
Get
|
Get
|
||||||
Return oGameData
|
Return oGameData
|
||||||
@@ -172,48 +182,46 @@ Public Class frmGameManager
|
|||||||
Dim sFileName As String
|
Dim sFileName As String
|
||||||
Dim sNewFileName As String
|
Dim sNewFileName As String
|
||||||
|
|
||||||
'If there is a name change, check and update the manifest
|
'If there is an ID change, check and update the manifest
|
||||||
If oNewApp.Name <> oOriginalApp.Name Then
|
If oNewApp.ID <> oOriginalApp.ID Then
|
||||||
'Local
|
'Local
|
||||||
If mgrManifest.DoManifestNameCheck(oOriginalApp.Name, mgrSQLite.Database.Local) Then
|
If mgrManifest.DoManifestCheck(oOriginalApp.ID, mgrSQLite.Database.Local) Then
|
||||||
oBackupItems = mgrManifest.DoManifestGetByName(oOriginalApp.Name, mgrSQLite.Database.Local)
|
oBackupItems = mgrManifest.DoManifestGetByMonitorID(oOriginalApp.ID, mgrSQLite.Database.Local)
|
||||||
'The local manifest will only have one entry per game, therefore this runs only once
|
'The local manifest will only have one entry per game, therefore this runs only once
|
||||||
For Each oBackupItem As clsBackup In oBackupItems
|
For Each oBackupItem As clsBackup In oBackupItems
|
||||||
'Rename Current Backup File & Folder
|
'Rename Current Backup File & Folder
|
||||||
sFileName = BackupFolder & oBackupItem.FileName
|
sFileName = BackupFolder & oBackupItem.FileName
|
||||||
|
|
||||||
'Rename Backup File
|
'Rename Backup File
|
||||||
sNewFileName = Path.GetDirectoryName(sFileName) & Path.DirectorySeparatorChar & Path.GetFileName(sFileName).Replace(oOriginalApp.FileSafeName, oNewApp.FileSafeName)
|
sNewFileName = Path.GetDirectoryName(sFileName) & Path.DirectorySeparatorChar & Path.GetFileName(sFileName).Replace(oOriginalApp.ID, oNewApp.ID)
|
||||||
If File.Exists(sFileName) And Not sFileName = sNewFileName Then
|
If File.Exists(sFileName) And Not sFileName = sNewFileName Then
|
||||||
FileSystem.Rename(sFileName, sNewFileName)
|
FileSystem.Rename(sFileName, sNewFileName)
|
||||||
End If
|
End If
|
||||||
|
|
||||||
'Rename Directory
|
'Rename Directory
|
||||||
sDirectory = Path.GetDirectoryName(sFileName)
|
sDirectory = Path.GetDirectoryName(sFileName)
|
||||||
sNewDirectory = sDirectory.Replace(oOriginalApp.FileSafeName, oNewApp.FileSafeName)
|
sNewDirectory = sDirectory.Replace(oOriginalApp.ID, oNewApp.ID)
|
||||||
If sDirectory <> sNewDirectory Then
|
If sDirectory <> sNewDirectory Then
|
||||||
If Directory.Exists(sDirectory) And Not sDirectory = sNewDirectory Then
|
If Directory.Exists(sDirectory) And Not sDirectory = sNewDirectory Then
|
||||||
FileSystem.Rename(sDirectory, sNewDirectory)
|
FileSystem.Rename(sDirectory, sNewDirectory)
|
||||||
End If
|
End If
|
||||||
End If
|
End If
|
||||||
|
|
||||||
oBackupItem.Name = oNewApp.Name
|
oBackupItem.MonitorID = oNewApp.ID
|
||||||
oBackupItem.FileName = oBackupItem.FileName.Replace(oOriginalApp.FileSafeName, oNewApp.FileSafeName)
|
oBackupItem.FileName = oBackupItem.FileName.Replace(oOriginalApp.ID, oNewApp.ID)
|
||||||
mgrManifest.DoManifestUpdateByID(oBackupItem, mgrSQLite.Database.Local)
|
mgrManifest.DoManifestUpdateByManifestID(oBackupItem, mgrSQLite.Database.Local)
|
||||||
Next
|
Next
|
||||||
oLocalBackupData = mgrManifest.ReadLatestManifest(mgrSQLite.Database.Local)
|
|
||||||
End If
|
End If
|
||||||
|
|
||||||
'Remote
|
'Remote
|
||||||
If mgrManifest.DoManifestNameCheck(oOriginalApp.Name, mgrSQLite.Database.Remote) Then
|
If mgrManifest.DoManifestCheck(oOriginalApp.ID, mgrSQLite.Database.Remote) Then
|
||||||
oBackupItems = mgrManifest.DoManifestGetByName(oOriginalApp.Name, mgrSQLite.Database.Remote)
|
oBackupItems = mgrManifest.DoManifestGetByMonitorID(oOriginalApp.ID, mgrSQLite.Database.Remote)
|
||||||
|
|
||||||
For Each oBackupItem As clsBackup In oBackupItems
|
For Each oBackupItem As clsBackup In oBackupItems
|
||||||
oBackupItem.Name = oNewApp.Name
|
oBackupItem.MonitorID = oNewApp.ID
|
||||||
oBackupItem.FileName = oBackupItem.FileName.Replace(oOriginalApp.FileSafeName, oNewApp.FileSafeName)
|
oBackupItem.FileName = oBackupItem.FileName.Replace(oOriginalApp.ID, oNewApp.ID)
|
||||||
mgrManifest.DoManifestUpdateByID(oBackupItem, mgrSQLite.Database.Remote)
|
mgrManifest.DoManifestUpdateByManifestID(oBackupItem, mgrSQLite.Database.Remote)
|
||||||
Next
|
Next
|
||||||
oRemoteBackupData = mgrManifest.ReadLatestManifest(mgrSQLite.Database.Remote)
|
|
||||||
End If
|
End If
|
||||||
End If
|
End If
|
||||||
End Sub
|
End Sub
|
||||||
@@ -221,7 +229,6 @@ Public Class frmGameManager
|
|||||||
Private Sub LoadData(Optional ByVal bRetainFilter As Boolean = True)
|
Private Sub LoadData(Optional ByVal bRetainFilter As Boolean = True)
|
||||||
Dim oRestoreData As New SortedList
|
Dim oRestoreData As New SortedList
|
||||||
Dim oGame As clsGame
|
Dim oGame As clsGame
|
||||||
Dim oBackup As clsBackup
|
|
||||||
Dim frm As frmFilter
|
Dim frm As frmFilter
|
||||||
|
|
||||||
If optCustom.Checked Then
|
If optCustom.Checked Then
|
||||||
@@ -264,10 +271,10 @@ Public Class frmGameManager
|
|||||||
Dim oTemporaryList As OrderedDictionary = mgrCommon.GenericClone(GameData)
|
Dim oTemporaryList As OrderedDictionary = mgrCommon.GenericClone(GameData)
|
||||||
For Each de As DictionaryEntry In oTemporaryList
|
For Each de As DictionaryEntry In oTemporaryList
|
||||||
oGame = DirectCast(de.Value, clsGame)
|
oGame = DirectCast(de.Value, clsGame)
|
||||||
If Not oRestoreData.ContainsKey(oGame.Name) Then
|
If Not oRestoreData.ContainsKey(oGame.ID) Then
|
||||||
GameData.Remove(de.Key)
|
GameData.Remove(de.Key)
|
||||||
Else
|
Else
|
||||||
oRestoreData.Remove(oGame.Name)
|
oRestoreData.Remove(oGame.ID)
|
||||||
End If
|
End If
|
||||||
Next
|
Next
|
||||||
ElseIf optBackupData.Checked Then
|
ElseIf optBackupData.Checked Then
|
||||||
@@ -277,24 +284,14 @@ Public Class frmGameManager
|
|||||||
|
|
||||||
For Each de As DictionaryEntry In oTemporaryList
|
For Each de As DictionaryEntry In oTemporaryList
|
||||||
oGame = DirectCast(de.Value, clsGame)
|
oGame = DirectCast(de.Value, clsGame)
|
||||||
If Not oRemoteBackupData.ContainsKey(oGame.Name) Then
|
If Not oRemoteBackupData.ContainsKey(oGame.ID) Then
|
||||||
GameData.Remove(de.Key)
|
GameData.Remove(de.Key)
|
||||||
Else
|
Else
|
||||||
oRestoreData.Remove(oGame.Name)
|
oRestoreData.Remove(oGame.ID)
|
||||||
End If
|
End If
|
||||||
Next
|
Next
|
||||||
End If
|
End If
|
||||||
|
|
||||||
'Handle any orphaned backup files and add them to list
|
|
||||||
If oRestoreData.Count <> 0 Then
|
|
||||||
For Each oBackup In oRestoreData.Values
|
|
||||||
oGame = New clsGame
|
|
||||||
oGame.Name = oBackup.Name
|
|
||||||
oGame.Temporary = True
|
|
||||||
GameData.Add(oGame.ID, oGame)
|
|
||||||
Next
|
|
||||||
End If
|
|
||||||
|
|
||||||
lstGames.DataSource = Nothing
|
lstGames.DataSource = Nothing
|
||||||
FormatAndFillList()
|
FormatAndFillList()
|
||||||
End Sub
|
End Sub
|
||||||
@@ -441,6 +438,28 @@ Public Class frmGameManager
|
|||||||
IsLoading = False
|
IsLoading = False
|
||||||
End Sub
|
End Sub
|
||||||
|
|
||||||
|
Private Sub OpenGameIDEdit()
|
||||||
|
Dim sCurrentID As String
|
||||||
|
Dim sNewID As String
|
||||||
|
|
||||||
|
If txtID.Text = String.Empty Then
|
||||||
|
txtID.Text = Guid.NewGuid.ToString
|
||||||
|
End If
|
||||||
|
|
||||||
|
sCurrentID = txtID.Text
|
||||||
|
|
||||||
|
sNewID = InputBox(frmGameManager_GameIDEditInfo, frmGameManager_GameIDEditTitle, sCurrentID)
|
||||||
|
|
||||||
|
If sNewID <> String.Empty Then
|
||||||
|
txtID.Text = sNewID
|
||||||
|
|
||||||
|
If sCurrentID <> sNewID Then
|
||||||
|
UpdateGenericButtonLabel(frmGameManager_btnGameID, btnGameID, True)
|
||||||
|
End If
|
||||||
|
End If
|
||||||
|
|
||||||
|
End Sub
|
||||||
|
|
||||||
Private Sub OpenBackupFile()
|
Private Sub OpenBackupFile()
|
||||||
Dim sFileName As String
|
Dim sFileName As String
|
||||||
Dim oProcessStartInfo As ProcessStartInfo
|
Dim oProcessStartInfo As ProcessStartInfo
|
||||||
@@ -474,6 +493,16 @@ Public Class frmGameManager
|
|||||||
End If
|
End If
|
||||||
End Sub
|
End Sub
|
||||||
|
|
||||||
|
Private Sub UpdateGenericButtonLabel(ByVal sLabel As String, ByVal btn As Button, ByVal bDirty As Boolean)
|
||||||
|
btn.Text = sLabel
|
||||||
|
|
||||||
|
If bDirty Then
|
||||||
|
btn.Font = New Font(FontFamily.GenericSansSerif, 8.25, FontStyle.Bold)
|
||||||
|
Else
|
||||||
|
btn.Font = New Font(FontFamily.GenericSansSerif, 8.25, FontStyle.Regular)
|
||||||
|
End If
|
||||||
|
End Sub
|
||||||
|
|
||||||
Private Function GetBuilderRoot() As String
|
Private Function GetBuilderRoot() As String
|
||||||
Dim sRoot As String = String.Empty
|
Dim sRoot As String = String.Empty
|
||||||
|
|
||||||
@@ -552,6 +581,36 @@ Public Class frmGameManager
|
|||||||
End If
|
End If
|
||||||
End Sub
|
End Sub
|
||||||
|
|
||||||
|
Private Sub OpenProcesses()
|
||||||
|
Dim frm As New frmGameProcesses
|
||||||
|
Dim oApp As clsGame
|
||||||
|
Dim sMonitorIDS As New List(Of String)
|
||||||
|
|
||||||
|
If eCurrentMode = eModes.Add Then
|
||||||
|
'Use a dummy ID
|
||||||
|
sMonitorIDS.Add(Guid.NewGuid.ToString)
|
||||||
|
frm.GameName = txtName.Text
|
||||||
|
frm.NewMode = True
|
||||||
|
frm.ProcessList = oProcessesToSave
|
||||||
|
Else
|
||||||
|
For Each oData In lstGames.SelectedItems
|
||||||
|
oApp = DirectCast(GameData(oData.Key), clsGame)
|
||||||
|
sMonitorIDS.Add(oApp.ID)
|
||||||
|
Next
|
||||||
|
frm.GameName = CurrentGame.Name
|
||||||
|
frm.NewMode = False
|
||||||
|
End If
|
||||||
|
|
||||||
|
frm.IDList = sMonitorIDS
|
||||||
|
frm.ShowDialog()
|
||||||
|
|
||||||
|
If eCurrentMode = eModes.Add Then
|
||||||
|
oProcessesToSave = frm.ProcessList
|
||||||
|
Else
|
||||||
|
ModeChange()
|
||||||
|
End If
|
||||||
|
End Sub
|
||||||
|
|
||||||
Private Sub OpenTags()
|
Private Sub OpenTags()
|
||||||
Dim frm As New frmGameTags
|
Dim frm As New frmGameTags
|
||||||
Dim oApp As clsGame
|
Dim oApp As clsGame
|
||||||
@@ -579,6 +638,9 @@ Public Class frmGameManager
|
|||||||
oTagsToSave = frm.TagList
|
oTagsToSave = frm.TagList
|
||||||
FillTagsbyList(frm.TagList)
|
FillTagsbyList(frm.TagList)
|
||||||
Else
|
Else
|
||||||
|
'Sync
|
||||||
|
mgrMonitorList.SyncMonitorLists(Settings.SyncFields)
|
||||||
|
|
||||||
'Only update visible tags if one item is selected
|
'Only update visible tags if one item is selected
|
||||||
If lstGames.SelectedItems.Count = 1 Then FillTagsbyID(CurrentGame.ID)
|
If lstGames.SelectedItems.Count = 1 Then FillTagsbyID(CurrentGame.ID)
|
||||||
|
|
||||||
@@ -598,7 +660,7 @@ Public Class frmGameManager
|
|||||||
Dim sFileName As String
|
Dim sFileName As String
|
||||||
|
|
||||||
If sManifestID <> String.Empty Then
|
If sManifestID <> String.Empty Then
|
||||||
CurrentBackupItem = mgrManifest.DoManifestGetByID(sManifestID, mgrSQLite.Database.Remote)
|
CurrentBackupItem = mgrManifest.DoManifestGetByManifestID(sManifestID, mgrSQLite.Database.Remote)
|
||||||
|
|
||||||
sFileName = BackupFolder & CurrentBackupItem.FileName
|
sFileName = BackupFolder & CurrentBackupItem.FileName
|
||||||
|
|
||||||
@@ -608,7 +670,6 @@ Public Class frmGameManager
|
|||||||
lblBackupFileData.Text = frmGameManager_ErrorNoBackupExists
|
lblBackupFileData.Text = frmGameManager_ErrorNoBackupExists
|
||||||
End If
|
End If
|
||||||
|
|
||||||
mgrRestore.DoPathOverride(CurrentBackupItem, CurrentGame)
|
|
||||||
lblRestorePathData.Text = CurrentBackupItem.RestorePath
|
lblRestorePathData.Text = CurrentBackupItem.RestorePath
|
||||||
End If
|
End If
|
||||||
|
|
||||||
@@ -627,15 +688,15 @@ Public Class frmGameManager
|
|||||||
cboRemoteBackup.ValueMember = "Key"
|
cboRemoteBackup.ValueMember = "Key"
|
||||||
cboRemoteBackup.DisplayMember = "Value"
|
cboRemoteBackup.DisplayMember = "Value"
|
||||||
|
|
||||||
If oRemoteBackupData.Contains(oApp.Name) Then
|
If oRemoteBackupData.Contains(oApp.ID) Then
|
||||||
bRemoteData = True
|
bRemoteData = True
|
||||||
oCurrentBackups = mgrManifest.DoManifestGetByName(oApp.Name, mgrSQLite.Database.Remote)
|
oCurrentBackups = mgrManifest.DoManifestGetByMonitorID(oApp.ID, mgrSQLite.Database.Remote)
|
||||||
|
|
||||||
For Each oCurrentBackup In oCurrentBackups
|
For Each oCurrentBackup In oCurrentBackups
|
||||||
oComboItems.Add(New KeyValuePair(Of String, String)(oCurrentBackup.ID, mgrCommon.FormatString(frmGameManager_BackupTimeAndName, New String() {oCurrentBackup.DateUpdated, oCurrentBackup.UpdatedBy})))
|
oComboItems.Add(New KeyValuePair(Of String, String)(oCurrentBackup.ManifestID, mgrCommon.FormatString(frmGameManager_BackupTimeAndName, New String() {oCurrentBackup.DateUpdated, oCurrentBackup.UpdatedBy})))
|
||||||
Next
|
Next
|
||||||
|
|
||||||
CurrentBackupItem = DirectCast(oRemoteBackupData(oApp.Name), clsBackup)
|
CurrentBackupItem = DirectCast(oRemoteBackupData(oApp.ID), clsBackup)
|
||||||
|
|
||||||
sFileName = BackupFolder & CurrentBackupItem.FileName
|
sFileName = BackupFolder & CurrentBackupItem.FileName
|
||||||
|
|
||||||
@@ -650,7 +711,6 @@ Public Class frmGameManager
|
|||||||
lblBackupFileData.Text = frmGameManager_ErrorNoBackupExists
|
lblBackupFileData.Text = frmGameManager_ErrorNoBackupExists
|
||||||
End If
|
End If
|
||||||
|
|
||||||
mgrRestore.DoPathOverride(CurrentBackupItem, oApp)
|
|
||||||
lblRestorePathData.Text = CurrentBackupItem.RestorePath
|
lblRestorePathData.Text = CurrentBackupItem.RestorePath
|
||||||
Else
|
Else
|
||||||
oComboItems.Add(New KeyValuePair(Of String, String)(String.Empty, frmGameManager_None))
|
oComboItems.Add(New KeyValuePair(Of String, String)(String.Empty, frmGameManager_None))
|
||||||
@@ -664,9 +724,9 @@ Public Class frmGameManager
|
|||||||
|
|
||||||
cboRemoteBackup.DataSource = oComboItems
|
cboRemoteBackup.DataSource = oComboItems
|
||||||
|
|
||||||
If oLocalBackupData.Contains(oApp.Name) Then
|
If oLocalBackupData.Contains(oApp.ID) Then
|
||||||
bLocalData = True
|
bLocalData = True
|
||||||
oBackupInfo = DirectCast(oLocalBackupData(oApp.Name), clsBackup)
|
oBackupInfo = DirectCast(oLocalBackupData(oApp.ID), clsBackup)
|
||||||
lblLocalBackupData.Text = mgrCommon.FormatString(frmGameManager_BackupTimeAndName, New String() {oBackupInfo.DateUpdated, oBackupInfo.UpdatedBy})
|
lblLocalBackupData.Text = mgrCommon.FormatString(frmGameManager_BackupTimeAndName, New String() {oBackupInfo.DateUpdated, oBackupInfo.UpdatedBy})
|
||||||
Else
|
Else
|
||||||
lblLocalBackupData.Text = frmGameManager_Unknown
|
lblLocalBackupData.Text = frmGameManager_Unknown
|
||||||
@@ -693,11 +753,11 @@ Public Class frmGameManager
|
|||||||
Dim oBackup As clsBackup
|
Dim oBackup As clsBackup
|
||||||
|
|
||||||
If mgrCommon.ShowMessage(frmGameManager_ConfirmBackupDeleteAll, CurrentGame.Name, MsgBoxStyle.YesNo) = MsgBoxResult.Yes Then
|
If mgrCommon.ShowMessage(frmGameManager_ConfirmBackupDeleteAll, CurrentGame.Name, MsgBoxStyle.YesNo) = MsgBoxResult.Yes Then
|
||||||
oBackupData = mgrManifest.DoManifestGetByName(CurrentGame.Name, mgrSQLite.Database.Remote)
|
oBackupData = mgrManifest.DoManifestGetByMonitorID(CurrentGame.ID, mgrSQLite.Database.Remote)
|
||||||
|
|
||||||
For Each oBackup In oBackupData
|
For Each oBackup In oBackupData
|
||||||
'Delete the specific remote manifest entry
|
'Delete the specific remote manifest entry
|
||||||
mgrManifest.DoManifestDeletebyID(oBackup, mgrSQLite.Database.Remote)
|
mgrManifest.DoManifestDeletebyManifestID(oBackup, mgrSQLite.Database.Remote)
|
||||||
'Delete referenced backup file from the backup folder
|
'Delete referenced backup file from the backup folder
|
||||||
mgrCommon.DeleteFile(BackupFolder & oBackup.FileName)
|
mgrCommon.DeleteFile(BackupFolder & oBackup.FileName)
|
||||||
'Check for sub-directory and delete if empty (we need to do this every pass just in case the user had a mix of settings at one point)
|
'Check for sub-directory and delete if empty (we need to do this every pass just in case the user had a mix of settings at one point)
|
||||||
@@ -705,28 +765,21 @@ Public Class frmGameManager
|
|||||||
Next
|
Next
|
||||||
|
|
||||||
'Delete local manifest entry
|
'Delete local manifest entry
|
||||||
mgrManifest.DoManifestDeletebyName(CurrentBackupItem, mgrSQLite.Database.Local)
|
mgrManifest.DoManifestDeletebyMonitorID(CurrentBackupItem, mgrSQLite.Database.Local)
|
||||||
|
|
||||||
LoadBackupData()
|
LoadBackupData()
|
||||||
|
|
||||||
If oCurrentGame.Temporary Then
|
|
||||||
LoadData()
|
|
||||||
eCurrentMode = eModes.Disabled
|
|
||||||
ModeChange()
|
|
||||||
Else
|
|
||||||
FillData()
|
FillData()
|
||||||
End If
|
End If
|
||||||
End If
|
|
||||||
End Sub
|
End Sub
|
||||||
|
|
||||||
Private Sub DeleteBackup()
|
Private Sub DeleteBackup()
|
||||||
If mgrCommon.ShowMessage(frmGameManager_ConfirmBackupDelete, Path.GetFileName(CurrentBackupItem.FileName), MsgBoxStyle.YesNo) = MsgBoxResult.Yes Then
|
If mgrCommon.ShowMessage(frmGameManager_ConfirmBackupDelete, Path.GetFileName(CurrentBackupItem.FileName), MsgBoxStyle.YesNo) = MsgBoxResult.Yes Then
|
||||||
'Delete the specific remote manifest entry
|
'Delete the specific remote manifest entry
|
||||||
mgrManifest.DoManifestDeletebyID(CurrentBackupItem, mgrSQLite.Database.Remote)
|
mgrManifest.DoManifestDeleteByManifestID(CurrentBackupItem, mgrSQLite.Database.Remote)
|
||||||
|
|
||||||
'If a remote manifest entry no longer exists for this game, delete the local entry
|
'If a remote manifest entry no longer exists for this game, delete the local entry
|
||||||
If Not mgrManifest.DoGlobalManifestCheck(CurrentBackupItem.Name, mgrSQLite.Database.Remote) Then
|
If Not mgrManifest.DoManifestCheck(CurrentBackupItem.MonitorID, mgrSQLite.Database.Remote) Then
|
||||||
mgrManifest.DoManifestDeletebyName(CurrentBackupItem, mgrSQLite.Database.Local)
|
mgrManifest.DoManifestDeleteByMonitorID(CurrentBackupItem, mgrSQLite.Database.Local)
|
||||||
End If
|
End If
|
||||||
|
|
||||||
'Delete referenced backup file from the backup folder
|
'Delete referenced backup file from the backup folder
|
||||||
@@ -736,15 +789,8 @@ Public Class frmGameManager
|
|||||||
mgrCommon.DeleteDirectoryByBackup(BackupFolder, CurrentBackupItem)
|
mgrCommon.DeleteDirectoryByBackup(BackupFolder, CurrentBackupItem)
|
||||||
|
|
||||||
LoadBackupData()
|
LoadBackupData()
|
||||||
|
|
||||||
If oCurrentGame.Temporary Then
|
|
||||||
LoadData()
|
|
||||||
eCurrentMode = eModes.Disabled
|
|
||||||
ModeChange()
|
|
||||||
Else
|
|
||||||
FillData()
|
FillData()
|
||||||
End If
|
End If
|
||||||
End If
|
|
||||||
End Sub
|
End Sub
|
||||||
|
|
||||||
Private Sub FillData()
|
Private Sub FillData()
|
||||||
@@ -773,6 +819,7 @@ Public Class frmGameManager
|
|||||||
'Update Buttons
|
'Update Buttons
|
||||||
UpdateBuilderButtonLabel(oApp.FileType, frmGameManager_IncludeShortcut, btnInclude, False)
|
UpdateBuilderButtonLabel(oApp.FileType, frmGameManager_IncludeShortcut, btnInclude, False)
|
||||||
UpdateBuilderButtonLabel(oApp.ExcludeList, frmGameManager_ExcludeShortcut, btnExclude, False)
|
UpdateBuilderButtonLabel(oApp.ExcludeList, frmGameManager_ExcludeShortcut, btnExclude, False)
|
||||||
|
UpdateGenericButtonLabel(frmGameManager_btnGameID, btnGameID, False)
|
||||||
|
|
||||||
'Extra
|
'Extra
|
||||||
txtAppPath.Text = oApp.ProcessPath
|
txtAppPath.Text = oApp.ProcessPath
|
||||||
@@ -796,12 +843,6 @@ Public Class frmGameManager
|
|||||||
'Set Current
|
'Set Current
|
||||||
CurrentGame = oApp
|
CurrentGame = oApp
|
||||||
|
|
||||||
'Change view to temporary if we only have backup data for the game
|
|
||||||
If CurrentGame.Temporary Then
|
|
||||||
eCurrentMode = eModes.ViewTemp
|
|
||||||
ModeChange()
|
|
||||||
End If
|
|
||||||
|
|
||||||
IsLoading = False
|
IsLoading = False
|
||||||
End Sub
|
End Sub
|
||||||
|
|
||||||
@@ -878,6 +919,7 @@ Public Class frmGameManager
|
|||||||
Select Case eCurrentMode
|
Select Case eCurrentMode
|
||||||
Case eModes.Add
|
Case eModes.Add
|
||||||
oTagsToSave.Clear()
|
oTagsToSave.Clear()
|
||||||
|
oProcessesToSave.Clear()
|
||||||
grpFilter.Enabled = False
|
grpFilter.Enabled = False
|
||||||
lstGames.Enabled = False
|
lstGames.Enabled = False
|
||||||
lblQuickFilter.Enabled = False
|
lblQuickFilter.Enabled = False
|
||||||
@@ -906,6 +948,7 @@ Public Class frmGameManager
|
|||||||
chkEnabled.Checked = True
|
chkEnabled.Checked = True
|
||||||
chkMonitorOnly.Checked = False
|
chkMonitorOnly.Checked = False
|
||||||
btnTags.Enabled = True
|
btnTags.Enabled = True
|
||||||
|
btnProcesses.Enabled = True
|
||||||
lblTags.Text = String.Empty
|
lblTags.Text = String.Empty
|
||||||
lblTags.Visible = True
|
lblTags.Visible = True
|
||||||
btnInclude.Text = frmGameManager_btnInclude
|
btnInclude.Text = frmGameManager_btnInclude
|
||||||
@@ -933,6 +976,7 @@ Public Class frmGameManager
|
|||||||
btnOpenBackupFile.Enabled = False
|
btnOpenBackupFile.Enabled = False
|
||||||
btnOpenRestorePath.Enabled = False
|
btnOpenRestorePath.Enabled = False
|
||||||
btnTags.Enabled = True
|
btnTags.Enabled = True
|
||||||
|
btnProcesses.Enabled = True
|
||||||
lblTags.Visible = True
|
lblTags.Visible = True
|
||||||
btnImport.Enabled = False
|
btnImport.Enabled = False
|
||||||
btnExport.Enabled = False
|
btnExport.Enabled = False
|
||||||
@@ -952,31 +996,10 @@ Public Class frmGameManager
|
|||||||
btnDelete.Enabled = True
|
btnDelete.Enabled = True
|
||||||
btnBackup.Enabled = True
|
btnBackup.Enabled = True
|
||||||
btnTags.Enabled = True
|
btnTags.Enabled = True
|
||||||
|
btnProcesses.Enabled = True
|
||||||
lblTags.Visible = True
|
lblTags.Visible = True
|
||||||
btnImport.Enabled = True
|
btnImport.Enabled = True
|
||||||
btnExport.Enabled = True
|
btnExport.Enabled = True
|
||||||
Case eModes.ViewTemp
|
|
||||||
grpFilter.Enabled = True
|
|
||||||
lstGames.Enabled = True
|
|
||||||
lblQuickFilter.Enabled = True
|
|
||||||
txtQuickFilter.Enabled = True
|
|
||||||
grpConfig.Enabled = False
|
|
||||||
chkEnabled.Enabled = False
|
|
||||||
chkMonitorOnly.Enabled = False
|
|
||||||
grpExtra.Enabled = False
|
|
||||||
grpStats.Enabled = True
|
|
||||||
btnSave.Enabled = False
|
|
||||||
btnCancel.Enabled = False
|
|
||||||
btnAdd.Enabled = True
|
|
||||||
btnDelete.Enabled = False
|
|
||||||
btnBackup.Enabled = False
|
|
||||||
btnOpenRestorePath.Enabled = False
|
|
||||||
btnTags.Enabled = False
|
|
||||||
lblTags.Visible = False
|
|
||||||
btnInclude.Text = frmGameManager_btnInclude
|
|
||||||
btnExclude.Text = frmGameManager_btnExclude
|
|
||||||
btnImport.Enabled = True
|
|
||||||
btnExport.Enabled = True
|
|
||||||
Case eModes.Disabled
|
Case eModes.Disabled
|
||||||
grpFilter.Enabled = True
|
grpFilter.Enabled = True
|
||||||
lstGames.Enabled = True
|
lstGames.Enabled = True
|
||||||
@@ -999,11 +1022,15 @@ Public Class frmGameManager
|
|||||||
btnRestore.Enabled = False
|
btnRestore.Enabled = False
|
||||||
btnMarkAsRestored.Enabled = False
|
btnMarkAsRestored.Enabled = False
|
||||||
btnTags.Enabled = False
|
btnTags.Enabled = False
|
||||||
|
btnProcesses.Enabled = False
|
||||||
lblTags.Visible = False
|
lblTags.Visible = False
|
||||||
btnInclude.Text = frmGameManager_btnInclude
|
btnInclude.Text = frmGameManager_btnInclude
|
||||||
btnExclude.Text = frmGameManager_btnExclude
|
btnExclude.Text = frmGameManager_btnExclude
|
||||||
btnImport.Enabled = True
|
btnImport.Enabled = True
|
||||||
btnExport.Enabled = True
|
btnExport.Enabled = True
|
||||||
|
UpdateGenericButtonLabel(frmGameManager_IncludeShortcut, btnInclude, False)
|
||||||
|
UpdateGenericButtonLabel(frmGameManager_ExcludeShortcut, btnExclude, False)
|
||||||
|
UpdateGenericButtonLabel(frmGameManager_btnGameID, btnGameID, False)
|
||||||
Case eModes.MultiSelect
|
Case eModes.MultiSelect
|
||||||
lstGames.Enabled = True
|
lstGames.Enabled = True
|
||||||
lblQuickFilter.Enabled = False
|
lblQuickFilter.Enabled = False
|
||||||
@@ -1027,6 +1054,7 @@ Public Class frmGameManager
|
|||||||
btnRestore.Enabled = True
|
btnRestore.Enabled = True
|
||||||
btnMarkAsRestored.Enabled = True
|
btnMarkAsRestored.Enabled = True
|
||||||
btnTags.Enabled = True
|
btnTags.Enabled = True
|
||||||
|
btnProcesses.Enabled = True
|
||||||
lblTags.Visible = False
|
lblTags.Visible = False
|
||||||
btnImport.Enabled = True
|
btnImport.Enabled = True
|
||||||
btnExport.Enabled = True
|
btnExport.Enabled = True
|
||||||
@@ -1136,6 +1164,22 @@ Public Class frmGameManager
|
|||||||
End If
|
End If
|
||||||
End Sub
|
End Sub
|
||||||
|
|
||||||
|
Private Sub SaveProcesses(ByVal sID As String)
|
||||||
|
Dim oGameProcess As clsGameProcess
|
||||||
|
Dim oGameProcesses As List(Of clsGameProcess)
|
||||||
|
|
||||||
|
If oProcessesToSave.Count > 0 Then
|
||||||
|
oGameProcesses = New List(Of clsGameProcess)
|
||||||
|
For Each kp As KeyValuePair(Of String, String) In oProcessesToSave
|
||||||
|
oGameProcess = New clsGameProcess
|
||||||
|
oGameProcess.MonitorID = sID
|
||||||
|
oGameProcess.ProcessID = kp.Key
|
||||||
|
oGameProcesses.Add(oGameProcess)
|
||||||
|
Next
|
||||||
|
mgrGameProcesses.DoGameProcessAddBatch(oGameProcesses)
|
||||||
|
End If
|
||||||
|
End Sub
|
||||||
|
|
||||||
Private Sub SaveTags(ByVal sID As String)
|
Private Sub SaveTags(ByVal sID As String)
|
||||||
Dim oGameTag As clsGameTag
|
Dim oGameTag As clsGameTag
|
||||||
Dim oGameTags As List(Of clsGameTag)
|
Dim oGameTags As List(Of clsGameTag)
|
||||||
@@ -1192,17 +1236,18 @@ Public Class frmGameManager
|
|||||||
|
|
||||||
Select Case eCurrentMode
|
Select Case eCurrentMode
|
||||||
Case eModes.Add
|
Case eModes.Add
|
||||||
If CoreValidatation(oApp) Then
|
If CoreValidatation(oApp, True) Then
|
||||||
bSuccess = True
|
bSuccess = True
|
||||||
mgrMonitorList.DoListAdd(oApp)
|
mgrMonitorList.DoListAdd(oApp)
|
||||||
SaveTags(oApp.ID)
|
SaveTags(oApp.ID)
|
||||||
|
SaveProcesses(oApp.ID)
|
||||||
eCurrentMode = eModes.View
|
eCurrentMode = eModes.View
|
||||||
End If
|
End If
|
||||||
Case eModes.Edit
|
Case eModes.Edit
|
||||||
If CoreValidatation(oApp) Then
|
If CoreValidatation(oApp, False) Then
|
||||||
bSuccess = True
|
bSuccess = True
|
||||||
mgrMonitorList.DoListUpdate(oApp)
|
|
||||||
CheckManifestandUpdate(oCurrentGame, oApp)
|
CheckManifestandUpdate(oCurrentGame, oApp)
|
||||||
|
mgrMonitorList.DoListUpdate(oApp, CurrentGame.ID)
|
||||||
eCurrentMode = eModes.View
|
eCurrentMode = eModes.View
|
||||||
End If
|
End If
|
||||||
Case eModes.MultiSelect
|
Case eModes.MultiSelect
|
||||||
@@ -1219,6 +1264,8 @@ Public Class frmGameManager
|
|||||||
End Select
|
End Select
|
||||||
|
|
||||||
If bSuccess Then
|
If bSuccess Then
|
||||||
|
mgrMonitorList.SyncMonitorLists(Settings.SyncFields)
|
||||||
|
LoadBackupData()
|
||||||
IsDirty = False
|
IsDirty = False
|
||||||
LoadData()
|
LoadData()
|
||||||
If eCurrentMode = eModes.View Then
|
If eCurrentMode = eModes.View Then
|
||||||
@@ -1244,6 +1291,7 @@ Public Class frmGameManager
|
|||||||
|
|
||||||
If mgrCommon.ShowMessage(frmGameManager_ConfirmGameDelete, oApp.Name, MsgBoxStyle.YesNo) = MsgBoxResult.Yes Then
|
If mgrCommon.ShowMessage(frmGameManager_ConfirmGameDelete, oApp.Name, MsgBoxStyle.YesNo) = MsgBoxResult.Yes Then
|
||||||
mgrMonitorList.DoListDelete(oApp.ID)
|
mgrMonitorList.DoListDelete(oApp.ID)
|
||||||
|
mgrMonitorList.SyncMonitorLists(Settings.SyncFields)
|
||||||
LoadData()
|
LoadData()
|
||||||
eCurrentMode = eModes.Disabled
|
eCurrentMode = eModes.Disabled
|
||||||
ModeChange()
|
ModeChange()
|
||||||
@@ -1258,6 +1306,7 @@ Public Class frmGameManager
|
|||||||
|
|
||||||
If mgrCommon.ShowMessage(frmGameManager_ConfirmMultiGameDelete, sMonitorIDs.Count, MsgBoxStyle.YesNo) = MsgBoxResult.Yes Then
|
If mgrCommon.ShowMessage(frmGameManager_ConfirmMultiGameDelete, sMonitorIDs.Count, MsgBoxStyle.YesNo) = MsgBoxResult.Yes Then
|
||||||
mgrMonitorList.DoListDeleteMulti(sMonitorIDs)
|
mgrMonitorList.DoListDeleteMulti(sMonitorIDs)
|
||||||
|
mgrMonitorList.SyncMonitorLists(Settings.SyncFields)
|
||||||
LoadData()
|
LoadData()
|
||||||
eCurrentMode = eModes.Disabled
|
eCurrentMode = eModes.Disabled
|
||||||
ModeChange()
|
ModeChange()
|
||||||
@@ -1279,7 +1328,15 @@ Public Class frmGameManager
|
|||||||
End If
|
End If
|
||||||
End Sub
|
End Sub
|
||||||
|
|
||||||
Private Function CoreValidatation(ByVal oApp As clsGame) As Boolean
|
Private Function CoreValidatation(ByVal oApp As clsGame, ByVal bNewGame As Boolean) As Boolean
|
||||||
|
Dim sCurrentID As String
|
||||||
|
|
||||||
|
If bNewGame Then
|
||||||
|
sCurrentID = String.Empty
|
||||||
|
Else
|
||||||
|
sCurrentID = CurrentGame.ID
|
||||||
|
End If
|
||||||
|
|
||||||
If txtName.Text.Trim = String.Empty Then
|
If txtName.Text.Trim = String.Empty Then
|
||||||
mgrCommon.ShowMessage(frmGameManager_ErrorValidName, MsgBoxStyle.Exclamation)
|
mgrCommon.ShowMessage(frmGameManager_ErrorValidName, MsgBoxStyle.Exclamation)
|
||||||
txtName.Focus()
|
txtName.Focus()
|
||||||
@@ -1298,19 +1355,12 @@ Public Class frmGameManager
|
|||||||
Return False
|
Return False
|
||||||
End If
|
End If
|
||||||
|
|
||||||
If mgrMonitorList.DoDuplicateListCheck(oApp.Name, oApp.ProcessName, , oApp.ID) Then
|
If mgrMonitorList.DoDuplicateListCheck(oApp.ID, , sCurrentID) Then
|
||||||
mgrCommon.ShowMessage(frmGameManager_ErrorGameDupe, MsgBoxStyle.Exclamation)
|
mgrCommon.ShowMessage(frmGameManager_ErrorGameDupe, oApp.ID, MsgBoxStyle.Exclamation)
|
||||||
txtName.Focus()
|
txtName.Focus()
|
||||||
Return False
|
Return False
|
||||||
End If
|
End If
|
||||||
|
|
||||||
If oApp.Parameter <> String.Empty Then
|
|
||||||
If mgrMonitorList.DoDuplicateParameterCheck(oApp.ProcessName, oApp.Parameter, , oApp.ID) Then
|
|
||||||
mgrCommon.ShowMessage(frmGameManager_ErrorProcessParameterDupe, MsgBoxStyle.Exclamation)
|
|
||||||
Return False
|
|
||||||
End If
|
|
||||||
End If
|
|
||||||
|
|
||||||
If oApp.IsRegEx Then
|
If oApp.IsRegEx Then
|
||||||
If Not mgrCommon.IsRegExValid(oApp.ProcessName) Then
|
If Not mgrCommon.IsRegExValid(oApp.ProcessName) Then
|
||||||
If mgrCommon.ShowMessage(frmGameManager_ErrorRegExFailure, MsgBoxStyle.Exclamation, MsgBoxStyle.YesNoCancel) = MsgBoxResult.Yes Then
|
If mgrCommon.ShowMessage(frmGameManager_ErrorRegExFailure, MsgBoxStyle.Exclamation, MsgBoxStyle.YesNoCancel) = MsgBoxResult.Yes Then
|
||||||
@@ -1331,8 +1381,8 @@ Public Class frmGameManager
|
|||||||
|
|
||||||
If lstGames.SelectedItems.Count > 0 Then
|
If lstGames.SelectedItems.Count > 0 Then
|
||||||
For Each oData In lstGames.SelectedItems
|
For Each oData In lstGames.SelectedItems
|
||||||
If oRemoteBackupData.Contains(oData.Value) Then
|
If oRemoteBackupData.Contains(oData.Key) Then
|
||||||
oGameBackup = DirectCast(oRemoteBackupData(oData.Value), clsBackup)
|
oGameBackup = DirectCast(oRemoteBackupData(oData.Key), clsBackup)
|
||||||
oMarkList.Add(oGameBackup)
|
oMarkList.Add(oGameBackup)
|
||||||
End If
|
End If
|
||||||
Next
|
Next
|
||||||
@@ -1340,8 +1390,8 @@ Public Class frmGameManager
|
|||||||
If oMarkList.Count = 1 Then
|
If oMarkList.Count = 1 Then
|
||||||
If mgrCommon.ShowMessage(frmGameManager_ConfirmMark, oMarkList(0).Name, MsgBoxStyle.YesNo) = MsgBoxResult.Yes Then
|
If mgrCommon.ShowMessage(frmGameManager_ConfirmMark, oMarkList(0).Name, MsgBoxStyle.YesNo) = MsgBoxResult.Yes Then
|
||||||
bWasUpdated = True
|
bWasUpdated = True
|
||||||
If mgrManifest.DoGlobalManifestCheck(oMarkList(0).Name, mgrSQLite.Database.Local) Then
|
If mgrManifest.DoManifestCheck(oMarkList(0).MonitorID, mgrSQLite.Database.Local) Then
|
||||||
mgrManifest.DoManifestUpdateByName(oMarkList(0), mgrSQLite.Database.Local)
|
mgrManifest.DoManifestUpdateByMonitorID(oMarkList(0), mgrSQLite.Database.Local)
|
||||||
Else
|
Else
|
||||||
mgrManifest.DoManifestAdd(oMarkList(0), mgrSQLite.Database.Local)
|
mgrManifest.DoManifestAdd(oMarkList(0), mgrSQLite.Database.Local)
|
||||||
End If
|
End If
|
||||||
@@ -1350,8 +1400,8 @@ Public Class frmGameManager
|
|||||||
If mgrCommon.ShowMessage(frmGameManager_ConfirmMultiMark, oMarkList.Count, MsgBoxStyle.YesNo) = MsgBoxResult.Yes Then
|
If mgrCommon.ShowMessage(frmGameManager_ConfirmMultiMark, oMarkList.Count, MsgBoxStyle.YesNo) = MsgBoxResult.Yes Then
|
||||||
bWasUpdated = True
|
bWasUpdated = True
|
||||||
For Each oGameBackup In oMarkList
|
For Each oGameBackup In oMarkList
|
||||||
If mgrManifest.DoGlobalManifestCheck(oGameBackup.Name, mgrSQLite.Database.Local) Then
|
If mgrManifest.DoManifestCheck(oGameBackup.MonitorID, mgrSQLite.Database.Local) Then
|
||||||
mgrManifest.DoManifestUpdateByName(oGameBackup, mgrSQLite.Database.Local)
|
mgrManifest.DoManifestUpdateByMonitorID(oGameBackup, mgrSQLite.Database.Local)
|
||||||
Else
|
Else
|
||||||
mgrManifest.DoManifestAdd(oGameBackup, mgrSQLite.Database.Local)
|
mgrManifest.DoManifestAdd(oGameBackup, mgrSQLite.Database.Local)
|
||||||
End If
|
End If
|
||||||
@@ -1428,9 +1478,9 @@ Public Class frmGameManager
|
|||||||
|
|
||||||
|
|
||||||
For Each oData In lstGames.SelectedItems
|
For Each oData In lstGames.SelectedItems
|
||||||
If oRemoteBackupData.Contains(oData.Value) Then
|
If oRemoteBackupData.Contains(oData.Key) Then
|
||||||
oGame = DirectCast(GameData(oData.Key), clsGame)
|
oGame = DirectCast(GameData(oData.Key), clsGame)
|
||||||
oBackup = DirectCast(oRemoteBackupData(oData.Value), clsBackup)
|
oBackup = DirectCast(oRemoteBackupData(oData.Key), clsBackup)
|
||||||
If Not oGame.MonitorOnly Then RestoreList.Add(oGame, oBackup)
|
If Not oGame.MonitorOnly Then RestoreList.Add(oGame, oBackup)
|
||||||
End If
|
End If
|
||||||
Next
|
Next
|
||||||
@@ -1473,8 +1523,10 @@ Public Class frmGameManager
|
|||||||
sLocation = mgrCommon.OpenFileBrowser("XML_Import", frmGameManager_ChooseImportXML, "xml", frmGameManager_XML, Environment.GetFolderPath(Environment.SpecialFolder.MyDocuments), False)
|
sLocation = mgrCommon.OpenFileBrowser("XML_Import", frmGameManager_ChooseImportXML, "xml", frmGameManager_XML, Environment.GetFolderPath(Environment.SpecialFolder.MyDocuments), False)
|
||||||
|
|
||||||
If sLocation <> String.Empty Then
|
If sLocation <> String.Empty Then
|
||||||
If mgrMonitorList.DoImport(sLocation) Then
|
If mgrMonitorList.DoImport(sLocation, False, Settings) Then
|
||||||
|
mgrMonitorList.SyncMonitorLists(Settings.SyncFields)
|
||||||
LoadData()
|
LoadData()
|
||||||
|
LoadBackupData()
|
||||||
End If
|
End If
|
||||||
End If
|
End If
|
||||||
|
|
||||||
@@ -1501,8 +1553,10 @@ Public Class frmGameManager
|
|||||||
End If
|
End If
|
||||||
|
|
||||||
If mgrCommon.ShowMessage(frmGameManager_ConfirmOfficialImport, MsgBoxStyle.YesNo) = MsgBoxResult.Yes Then
|
If mgrCommon.ShowMessage(frmGameManager_ConfirmOfficialImport, MsgBoxStyle.YesNo) = MsgBoxResult.Yes Then
|
||||||
If mgrMonitorList.DoImport(sImportURL) Then
|
If mgrMonitorList.DoImport(sImportURL, True, Settings) Then
|
||||||
|
mgrMonitorList.SyncMonitorLists(Settings.SyncFields)
|
||||||
LoadData()
|
LoadData()
|
||||||
|
LoadBackupData()
|
||||||
End If
|
End If
|
||||||
End If
|
End If
|
||||||
End Sub
|
End Sub
|
||||||
@@ -1566,6 +1620,7 @@ Public Class frmGameManager
|
|||||||
cmsDeleteAll.Text = frmGameManager_cmsDeleteAll
|
cmsDeleteAll.Text = frmGameManager_cmsDeleteAll
|
||||||
lblComments.Text = frmGameManager_lblComments
|
lblComments.Text = frmGameManager_lblComments
|
||||||
chkRegEx.Text = frmGameManager_chkRegEx
|
chkRegEx.Text = frmGameManager_chkRegEx
|
||||||
|
btnGameID.Text = frmGameManager_btnGameID
|
||||||
|
|
||||||
'Init Filter Timer
|
'Init Filter Timer
|
||||||
tmFilterTimer = New Timer()
|
tmFilterTimer = New Timer()
|
||||||
@@ -1672,6 +1727,10 @@ Public Class frmGameManager
|
|||||||
OpenTags()
|
OpenTags()
|
||||||
End Sub
|
End Sub
|
||||||
|
|
||||||
|
Private Sub btnProcesses_Click(sender As Object, e As EventArgs) Handles btnProcesses.Click
|
||||||
|
OpenProcesses()
|
||||||
|
End Sub
|
||||||
|
|
||||||
Private Sub btnDeleteBackup_Click(sender As Object, e As EventArgs) Handles btnDeleteBackup.Click
|
Private Sub btnDeleteBackup_Click(sender As Object, e As EventArgs) Handles btnDeleteBackup.Click
|
||||||
If cboRemoteBackup.Items.Count > 1 Then
|
If cboRemoteBackup.Items.Count > 1 Then
|
||||||
cmsDeleteBackup.Show(btnDeleteBackup, New Drawing.Point(btnDeleteBackup.Size.Width - Math.Floor(btnDeleteBackup.Size.Width * 0.1), btnDeleteBackup.Size.Height - Math.Floor(btnDeleteBackup.Size.Height * 0.5)), ToolStripDropDownDirection.AboveRight)
|
cmsDeleteBackup.Show(btnDeleteBackup, New Drawing.Point(btnDeleteBackup.Size.Width - Math.Floor(btnDeleteBackup.Size.Width * 0.1), btnDeleteBackup.Size.Height - Math.Floor(btnDeleteBackup.Size.Height * 0.5)), ToolStripDropDownDirection.AboveRight)
|
||||||
@@ -1745,6 +1804,10 @@ Public Class frmGameManager
|
|||||||
ExportGameList()
|
ExportGameList()
|
||||||
End Sub
|
End Sub
|
||||||
|
|
||||||
|
Private Sub btnGameID_Click(sender As Object, e As EventArgs) Handles btnGameID.Click
|
||||||
|
OpenGameIDEdit()
|
||||||
|
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 tmFilterTimer.Enabled Then
|
If Not tmFilterTimer.Enabled Then
|
||||||
tmFilterTimer.Enabled = True
|
tmFilterTimer.Enabled = True
|
||||||
|
|||||||
Generated
+142
@@ -0,0 +1,142 @@
|
|||||||
|
<Global.Microsoft.VisualBasic.CompilerServices.DesignerGenerated()> _
|
||||||
|
Partial Class frmGameProcesses
|
||||||
|
Inherits System.Windows.Forms.Form
|
||||||
|
|
||||||
|
'Form overrides dispose to clean up the component list.
|
||||||
|
<System.Diagnostics.DebuggerNonUserCode()> _
|
||||||
|
Protected Overrides Sub Dispose(ByVal disposing As Boolean)
|
||||||
|
Try
|
||||||
|
If disposing AndAlso components IsNot Nothing Then
|
||||||
|
components.Dispose()
|
||||||
|
End If
|
||||||
|
Finally
|
||||||
|
MyBase.Dispose(disposing)
|
||||||
|
End Try
|
||||||
|
End Sub
|
||||||
|
|
||||||
|
'Required by the Windows Form Designer
|
||||||
|
Private components As System.ComponentModel.IContainer
|
||||||
|
|
||||||
|
'NOTE: The following procedure is required by the Windows Form Designer
|
||||||
|
'It can be modified using the Windows Form Designer.
|
||||||
|
'Do not modify it using the code editor.
|
||||||
|
<System.Diagnostics.DebuggerStepThrough()> _
|
||||||
|
Private Sub InitializeComponent()
|
||||||
|
Me.btnOpenProcesses = New System.Windows.Forms.Button()
|
||||||
|
Me.btnClose = New System.Windows.Forms.Button()
|
||||||
|
Me.lblGameProcesses = New System.Windows.Forms.Label()
|
||||||
|
Me.lblProcesses = New System.Windows.Forms.Label()
|
||||||
|
Me.btnRemove = New System.Windows.Forms.Button()
|
||||||
|
Me.btnAdd = New System.Windows.Forms.Button()
|
||||||
|
Me.lstGameProcesses = New System.Windows.Forms.ListBox()
|
||||||
|
Me.lstProcesses = New System.Windows.Forms.ListBox()
|
||||||
|
Me.SuspendLayout()
|
||||||
|
'
|
||||||
|
'btnOpenProcesses
|
||||||
|
'
|
||||||
|
Me.btnOpenProcesses.Location = New System.Drawing.Point(12, 229)
|
||||||
|
Me.btnOpenProcesses.Name = "btnOpenProcesses"
|
||||||
|
Me.btnOpenProcesses.Size = New System.Drawing.Size(110, 23)
|
||||||
|
Me.btnOpenProcesses.TabIndex = 4
|
||||||
|
Me.btnOpenProcesses.Text = "&Process Manager..."
|
||||||
|
Me.btnOpenProcesses.UseVisualStyleBackColor = True
|
||||||
|
'
|
||||||
|
'btnClose
|
||||||
|
'
|
||||||
|
Me.btnClose.Location = New System.Drawing.Point(297, 229)
|
||||||
|
Me.btnClose.Name = "btnClose"
|
||||||
|
Me.btnClose.Size = New System.Drawing.Size(75, 23)
|
||||||
|
Me.btnClose.TabIndex = 5
|
||||||
|
Me.btnClose.Text = "&Close"
|
||||||
|
Me.btnClose.UseVisualStyleBackColor = True
|
||||||
|
'
|
||||||
|
'lblGameProcesses
|
||||||
|
'
|
||||||
|
Me.lblGameProcesses.AutoSize = True
|
||||||
|
Me.lblGameProcesses.Location = New System.Drawing.Point(251, 8)
|
||||||
|
Me.lblGameProcesses.Name = "lblGameProcesses"
|
||||||
|
Me.lblGameProcesses.Size = New System.Drawing.Size(93, 13)
|
||||||
|
Me.lblGameProcesses.TabIndex = 0
|
||||||
|
Me.lblGameProcesses.Text = "Current Processes"
|
||||||
|
'
|
||||||
|
'lblProcesses
|
||||||
|
'
|
||||||
|
Me.lblProcesses.AutoSize = True
|
||||||
|
Me.lblProcesses.Location = New System.Drawing.Point(36, 8)
|
||||||
|
Me.lblProcesses.Name = "lblProcesses"
|
||||||
|
Me.lblProcesses.Size = New System.Drawing.Size(102, 13)
|
||||||
|
Me.lblProcesses.TabIndex = 0
|
||||||
|
Me.lblProcesses.Text = "Available Processes"
|
||||||
|
'
|
||||||
|
'btnRemove
|
||||||
|
'
|
||||||
|
Me.btnRemove.Location = New System.Drawing.Point(168, 114)
|
||||||
|
Me.btnRemove.Name = "btnRemove"
|
||||||
|
Me.btnRemove.Size = New System.Drawing.Size(48, 23)
|
||||||
|
Me.btnRemove.TabIndex = 2
|
||||||
|
Me.btnRemove.Text = "<"
|
||||||
|
Me.btnRemove.UseVisualStyleBackColor = True
|
||||||
|
'
|
||||||
|
'btnAdd
|
||||||
|
'
|
||||||
|
Me.btnAdd.Location = New System.Drawing.Point(168, 85)
|
||||||
|
Me.btnAdd.Name = "btnAdd"
|
||||||
|
Me.btnAdd.Size = New System.Drawing.Size(48, 23)
|
||||||
|
Me.btnAdd.TabIndex = 1
|
||||||
|
Me.btnAdd.Text = ">"
|
||||||
|
Me.btnAdd.UseVisualStyleBackColor = True
|
||||||
|
'
|
||||||
|
'lstGameProcesses
|
||||||
|
'
|
||||||
|
Me.lstGameProcesses.FormattingEnabled = True
|
||||||
|
Me.lstGameProcesses.Location = New System.Drawing.Point(222, 24)
|
||||||
|
Me.lstGameProcesses.Name = "lstGameProcesses"
|
||||||
|
Me.lstGameProcesses.SelectionMode = System.Windows.Forms.SelectionMode.MultiExtended
|
||||||
|
Me.lstGameProcesses.Size = New System.Drawing.Size(150, 199)
|
||||||
|
Me.lstGameProcesses.Sorted = True
|
||||||
|
Me.lstGameProcesses.TabIndex = 3
|
||||||
|
'
|
||||||
|
'lstProcesses
|
||||||
|
'
|
||||||
|
Me.lstProcesses.FormattingEnabled = True
|
||||||
|
Me.lstProcesses.Location = New System.Drawing.Point(12, 24)
|
||||||
|
Me.lstProcesses.Name = "lstProcesses"
|
||||||
|
Me.lstProcesses.SelectionMode = System.Windows.Forms.SelectionMode.MultiExtended
|
||||||
|
Me.lstProcesses.Size = New System.Drawing.Size(150, 199)
|
||||||
|
Me.lstProcesses.Sorted = True
|
||||||
|
Me.lstProcesses.TabIndex = 0
|
||||||
|
'
|
||||||
|
'frmGameProcesses
|
||||||
|
'
|
||||||
|
Me.AutoScaleDimensions = New System.Drawing.SizeF(6.0!, 13.0!)
|
||||||
|
Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font
|
||||||
|
Me.ClientSize = New System.Drawing.Size(384, 261)
|
||||||
|
Me.Controls.Add(Me.btnOpenProcesses)
|
||||||
|
Me.Controls.Add(Me.btnClose)
|
||||||
|
Me.Controls.Add(Me.lblGameProcesses)
|
||||||
|
Me.Controls.Add(Me.lblProcesses)
|
||||||
|
Me.Controls.Add(Me.btnRemove)
|
||||||
|
Me.Controls.Add(Me.btnAdd)
|
||||||
|
Me.Controls.Add(Me.lstGameProcesses)
|
||||||
|
Me.Controls.Add(Me.lstProcesses)
|
||||||
|
Me.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle
|
||||||
|
Me.MaximizeBox = False
|
||||||
|
Me.MinimizeBox = False
|
||||||
|
Me.Name = "frmGameProcesses"
|
||||||
|
Me.ShowIcon = False
|
||||||
|
Me.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen
|
||||||
|
Me.Text = "Edit Processes"
|
||||||
|
Me.ResumeLayout(False)
|
||||||
|
Me.PerformLayout()
|
||||||
|
|
||||||
|
End Sub
|
||||||
|
|
||||||
|
Friend WithEvents btnOpenProcesses As Button
|
||||||
|
Friend WithEvents btnClose As Button
|
||||||
|
Friend WithEvents lblGameProcesses As Label
|
||||||
|
Friend WithEvents lblProcesses As Label
|
||||||
|
Friend WithEvents btnRemove As Button
|
||||||
|
Friend WithEvents btnAdd As Button
|
||||||
|
Friend WithEvents lstGameProcesses As ListBox
|
||||||
|
Friend WithEvents lstProcesses As ListBox
|
||||||
|
End Class
|
||||||
@@ -0,0 +1,120 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<root>
|
||||||
|
<!--
|
||||||
|
Microsoft ResX Schema
|
||||||
|
|
||||||
|
Version 2.0
|
||||||
|
|
||||||
|
The primary goals of this format is to allow a simple XML format
|
||||||
|
that is mostly human readable. The generation and parsing of the
|
||||||
|
various data types are done through the TypeConverter classes
|
||||||
|
associated with the data types.
|
||||||
|
|
||||||
|
Example:
|
||||||
|
|
||||||
|
... ado.net/XML headers & schema ...
|
||||||
|
<resheader name="resmimetype">text/microsoft-resx</resheader>
|
||||||
|
<resheader name="version">2.0</resheader>
|
||||||
|
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
|
||||||
|
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
|
||||||
|
<data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
|
||||||
|
<data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
|
||||||
|
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
|
||||||
|
<value>[base64 mime encoded serialized .NET Framework object]</value>
|
||||||
|
</data>
|
||||||
|
<data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||||
|
<value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
|
||||||
|
<comment>This is a comment</comment>
|
||||||
|
</data>
|
||||||
|
|
||||||
|
There are any number of "resheader" rows that contain simple
|
||||||
|
name/value pairs.
|
||||||
|
|
||||||
|
Each data row contains a name, and value. The row also contains a
|
||||||
|
type or mimetype. Type corresponds to a .NET class that support
|
||||||
|
text/value conversion through the TypeConverter architecture.
|
||||||
|
Classes that don't support this are serialized and stored with the
|
||||||
|
mimetype set.
|
||||||
|
|
||||||
|
The mimetype is used for serialized objects, and tells the
|
||||||
|
ResXResourceReader how to depersist the object. This is currently not
|
||||||
|
extensible. For a given mimetype the value must be set accordingly:
|
||||||
|
|
||||||
|
Note - application/x-microsoft.net.object.binary.base64 is the format
|
||||||
|
that the ResXResourceWriter will generate, however the reader can
|
||||||
|
read any of the formats listed below.
|
||||||
|
|
||||||
|
mimetype: application/x-microsoft.net.object.binary.base64
|
||||||
|
value : The object must be serialized with
|
||||||
|
: System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
|
||||||
|
: and then encoded with base64 encoding.
|
||||||
|
|
||||||
|
mimetype: application/x-microsoft.net.object.soap.base64
|
||||||
|
value : The object must be serialized with
|
||||||
|
: System.Runtime.Serialization.Formatters.Soap.SoapFormatter
|
||||||
|
: and then encoded with base64 encoding.
|
||||||
|
|
||||||
|
mimetype: application/x-microsoft.net.object.bytearray.base64
|
||||||
|
value : The object must be serialized into a byte array
|
||||||
|
: using a System.ComponentModel.TypeConverter
|
||||||
|
: and then encoded with base64 encoding.
|
||||||
|
-->
|
||||||
|
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
|
||||||
|
<xsd:import namespace="http://www.w3.org/XML/1998/namespace" />
|
||||||
|
<xsd:element name="root" msdata:IsDataSet="true">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:choice maxOccurs="unbounded">
|
||||||
|
<xsd:element name="metadata">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:sequence>
|
||||||
|
<xsd:element name="value" type="xsd:string" minOccurs="0" />
|
||||||
|
</xsd:sequence>
|
||||||
|
<xsd:attribute name="name" use="required" type="xsd:string" />
|
||||||
|
<xsd:attribute name="type" type="xsd:string" />
|
||||||
|
<xsd:attribute name="mimetype" type="xsd:string" />
|
||||||
|
<xsd:attribute ref="xml:space" />
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
<xsd:element name="assembly">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:attribute name="alias" type="xsd:string" />
|
||||||
|
<xsd:attribute name="name" type="xsd:string" />
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
<xsd:element name="data">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:sequence>
|
||||||
|
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
|
||||||
|
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
|
||||||
|
</xsd:sequence>
|
||||||
|
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" />
|
||||||
|
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
|
||||||
|
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
|
||||||
|
<xsd:attribute ref="xml:space" />
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
<xsd:element name="resheader">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:sequence>
|
||||||
|
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
|
||||||
|
</xsd:sequence>
|
||||||
|
<xsd:attribute name="name" type="xsd:string" use="required" />
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
</xsd:choice>
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
</xsd:schema>
|
||||||
|
<resheader name="resmimetype">
|
||||||
|
<value>text/microsoft-resx</value>
|
||||||
|
</resheader>
|
||||||
|
<resheader name="version">
|
||||||
|
<value>2.0</value>
|
||||||
|
</resheader>
|
||||||
|
<resheader name="reader">
|
||||||
|
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||||
|
</resheader>
|
||||||
|
<resheader name="writer">
|
||||||
|
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||||
|
</resheader>
|
||||||
|
</root>
|
||||||
@@ -0,0 +1,247 @@
|
|||||||
|
Imports GBM.My.Resources
|
||||||
|
|
||||||
|
Public Class frmGameProcesses
|
||||||
|
Private sMonitorIDs As List(Of String)
|
||||||
|
Private sGameName As String = String.Empty
|
||||||
|
Private bNewMode As Boolean = False
|
||||||
|
Private oProcessList As List(Of KeyValuePair(Of String, String))
|
||||||
|
|
||||||
|
Public Property IDList As List(Of String)
|
||||||
|
Get
|
||||||
|
Return sMonitorIDs
|
||||||
|
End Get
|
||||||
|
Set(value As List(Of String))
|
||||||
|
sMonitorIDs = value
|
||||||
|
End Set
|
||||||
|
End Property
|
||||||
|
|
||||||
|
Public Property GameName As String
|
||||||
|
Get
|
||||||
|
Return sGameName
|
||||||
|
End Get
|
||||||
|
Set(value As String)
|
||||||
|
sGameName = value
|
||||||
|
End Set
|
||||||
|
End Property
|
||||||
|
|
||||||
|
Public Property NewMode As Boolean
|
||||||
|
Get
|
||||||
|
Return bNewMode
|
||||||
|
End Get
|
||||||
|
Set(value As Boolean)
|
||||||
|
bNewMode = value
|
||||||
|
End Set
|
||||||
|
End Property
|
||||||
|
|
||||||
|
Public Property ProcessList As List(Of KeyValuePair(Of String, String))
|
||||||
|
Get
|
||||||
|
Return oProcessList
|
||||||
|
End Get
|
||||||
|
Set(value As List(Of KeyValuePair(Of String, String)))
|
||||||
|
oProcessList = value
|
||||||
|
End Set
|
||||||
|
End Property
|
||||||
|
|
||||||
|
Private Sub AddProcess()
|
||||||
|
Dim oData As KeyValuePair(Of String, String)
|
||||||
|
Dim oProcesss As List(Of KeyValuePair(Of String, String))
|
||||||
|
Dim oGameProcess As clsGameProcess
|
||||||
|
Dim oGameProcesses As List(Of clsGameProcess)
|
||||||
|
|
||||||
|
If lstProcesses.SelectedItems.Count = 1 Then
|
||||||
|
oData = lstProcesses.SelectedItems(0)
|
||||||
|
|
||||||
|
oGameProcesses = New List(Of clsGameProcess)
|
||||||
|
For Each sID As String In IDList
|
||||||
|
oGameProcess = New clsGameProcess
|
||||||
|
oGameProcess.MonitorID = sID
|
||||||
|
oGameProcess.ProcessID = oData.Key
|
||||||
|
oGameProcesses.Add(oGameProcess)
|
||||||
|
Next
|
||||||
|
|
||||||
|
If Not bNewMode Then mgrGameProcesses.DoGameProcessAddBatch(oGameProcesses)
|
||||||
|
|
||||||
|
lstGameProcesses.Items.Add(oData)
|
||||||
|
lstProcesses.Items.Remove(oData)
|
||||||
|
ElseIf lstProcesses.SelectedItems.Count > 1 Then
|
||||||
|
oProcesss = New List(Of KeyValuePair(Of String, String))
|
||||||
|
|
||||||
|
For Each oData In lstProcesses.SelectedItems
|
||||||
|
oProcesss.Add(oData)
|
||||||
|
Next
|
||||||
|
|
||||||
|
For Each kp As KeyValuePair(Of String, String) In oProcesss
|
||||||
|
oGameProcesses = New List(Of clsGameProcess)
|
||||||
|
For Each sID As String In IDList
|
||||||
|
oGameProcess = New clsGameProcess
|
||||||
|
oGameProcess.MonitorID = sID
|
||||||
|
oGameProcess.ProcessID = kp.Key
|
||||||
|
oGameProcesses.Add(oGameProcess)
|
||||||
|
Next
|
||||||
|
|
||||||
|
If Not bNewMode Then mgrGameProcesses.DoGameProcessAddBatch(oGameProcesses)
|
||||||
|
|
||||||
|
lstGameProcesses.Items.Add(kp)
|
||||||
|
lstProcesses.Items.Remove(kp)
|
||||||
|
Next
|
||||||
|
End If
|
||||||
|
|
||||||
|
End Sub
|
||||||
|
|
||||||
|
Private Sub RemoveProcess()
|
||||||
|
Dim oData As KeyValuePair(Of String, String)
|
||||||
|
Dim oProcesses As List(Of KeyValuePair(Of String, String))
|
||||||
|
Dim oGameProcess As clsGameProcess
|
||||||
|
Dim oGameProcesses As List(Of clsGameProcess)
|
||||||
|
|
||||||
|
If lstGameProcesses.SelectedItems.Count = 1 Then
|
||||||
|
oData = lstGameProcesses.SelectedItems(0)
|
||||||
|
|
||||||
|
oGameProcesses = New List(Of clsGameProcess)
|
||||||
|
For Each sID As String In IDList
|
||||||
|
oGameProcess = New clsGameProcess
|
||||||
|
oGameProcess.MonitorID = sID
|
||||||
|
oGameProcess.ProcessID = oData.Key
|
||||||
|
oGameProcesses.Add(oGameProcess)
|
||||||
|
Next
|
||||||
|
|
||||||
|
If Not bNewMode Then mgrGameProcesses.DoGameProcessDelete(oGameProcesses)
|
||||||
|
|
||||||
|
lstGameProcesses.Items.Remove(oData)
|
||||||
|
lstProcesses.Items.Add(oData)
|
||||||
|
ElseIf lstGameProcesses.SelectedItems.Count > 1 Then
|
||||||
|
oProcesses = New List(Of KeyValuePair(Of String, String))
|
||||||
|
|
||||||
|
For Each oData In lstGameProcesses.SelectedItems
|
||||||
|
oProcesses.Add(oData)
|
||||||
|
Next
|
||||||
|
|
||||||
|
For Each kp As KeyValuePair(Of String, String) In oProcesses
|
||||||
|
oGameProcesses = New List(Of clsGameProcess)
|
||||||
|
For Each sID As String In IDList
|
||||||
|
oGameProcess = New clsGameProcess
|
||||||
|
oGameProcess.MonitorID = sID
|
||||||
|
oGameProcess.ProcessID = kp.Key
|
||||||
|
oGameProcesses.Add(oGameProcess)
|
||||||
|
Next
|
||||||
|
|
||||||
|
If Not bNewMode Then mgrGameProcesses.DoGameProcessDelete(oGameProcesses)
|
||||||
|
|
||||||
|
lstGameProcesses.Items.Remove(kp)
|
||||||
|
lstProcesses.Items.Add(kp)
|
||||||
|
Next
|
||||||
|
End If
|
||||||
|
|
||||||
|
End Sub
|
||||||
|
|
||||||
|
Private Sub LoadData()
|
||||||
|
Dim hshProcesses As Hashtable
|
||||||
|
Dim hshGameProcesses As Hashtable
|
||||||
|
Dim oProcess As clsProcess
|
||||||
|
Dim oData As KeyValuePair(Of String, String)
|
||||||
|
|
||||||
|
'Load Processes
|
||||||
|
hshProcesses = mgrProcess.ReadProcesses()
|
||||||
|
|
||||||
|
'Handle Lists
|
||||||
|
lstProcesses.Items.Clear()
|
||||||
|
lstGameProcesses.Items.Clear()
|
||||||
|
|
||||||
|
lstProcesses.ValueMember = "Key"
|
||||||
|
lstProcesses.DisplayMember = "Value"
|
||||||
|
lstGameProcesses.ValueMember = "Key"
|
||||||
|
lstGameProcesses.DisplayMember = "Value"
|
||||||
|
|
||||||
|
If bNewMode Then
|
||||||
|
For Each kp As KeyValuePair(Of String, String) In oProcessList
|
||||||
|
'We need to be sure the tags still exist if the "Process Manager" form was used
|
||||||
|
If hshProcesses.ContainsKey(kp.Value) Then
|
||||||
|
lstGameProcesses.Items.Add(kp)
|
||||||
|
End If
|
||||||
|
Next
|
||||||
|
|
||||||
|
For Each kp As KeyValuePair(Of String, String) In oProcessList
|
||||||
|
If hshProcesses.ContainsKey(kp.Value) Then
|
||||||
|
hshProcesses.Remove(kp.Value)
|
||||||
|
End If
|
||||||
|
Next
|
||||||
|
Else
|
||||||
|
hshGameProcesses = mgrGameProcesses.GetProcessesByGameMulti(IDList)
|
||||||
|
|
||||||
|
For Each de As DictionaryEntry In hshGameProcesses
|
||||||
|
oProcess = DirectCast(de.Value, clsProcess)
|
||||||
|
If hshProcesses.ContainsKey(oProcess.Name) Then
|
||||||
|
hshProcesses.Remove(oProcess.Name)
|
||||||
|
End If
|
||||||
|
Next
|
||||||
|
|
||||||
|
For Each de As DictionaryEntry In hshGameProcesses
|
||||||
|
oProcess = DirectCast(de.Value, clsProcess)
|
||||||
|
oData = New KeyValuePair(Of String, String)(oProcess.ID, oProcess.Name)
|
||||||
|
lstGameProcesses.Items.Add(oData)
|
||||||
|
Next
|
||||||
|
End If
|
||||||
|
|
||||||
|
For Each de As DictionaryEntry In hshProcesses
|
||||||
|
oProcess = DirectCast(de.Value, clsProcess)
|
||||||
|
oData = New KeyValuePair(Of String, String)(oProcess.ID, oProcess.Name)
|
||||||
|
lstProcesses.Items.Add(oData)
|
||||||
|
Next
|
||||||
|
|
||||||
|
End Sub
|
||||||
|
|
||||||
|
Private Sub BuildProcessList()
|
||||||
|
Dim oData As KeyValuePair(Of String, String)
|
||||||
|
oProcessList.Clear()
|
||||||
|
For Each oData In lstGameProcesses.Items
|
||||||
|
oProcessList.Add(oData)
|
||||||
|
Next
|
||||||
|
End Sub
|
||||||
|
|
||||||
|
Private Sub OpenProcessManager()
|
||||||
|
Dim frm As New frmProcessManager
|
||||||
|
frm.ShowDialog()
|
||||||
|
LoadData()
|
||||||
|
End Sub
|
||||||
|
|
||||||
|
Private Sub SetForm()
|
||||||
|
'Set Form Name
|
||||||
|
If IDList.Count > 1 Then
|
||||||
|
Me.Text = frmGameProcesses_FormNameMulti
|
||||||
|
Else
|
||||||
|
Me.Text = mgrCommon.FormatString(frmGameProcesses_FormNameSingle, GameName)
|
||||||
|
End If
|
||||||
|
|
||||||
|
'Set Form Text
|
||||||
|
btnOpenProcesses.Text = frmGameProcesses_btnOpenProcesses
|
||||||
|
btnClose.Text = frmGameProcesses_btnClose
|
||||||
|
lblGameProcesses.Text = frmGameProcesses_lblGameProccesses
|
||||||
|
lblProcesses.Text = frmGameProcesses_lblProcesses
|
||||||
|
btnRemove.Text = frmGameProcesses_btnRemove
|
||||||
|
btnAdd.Text = frmGameProcesses_btnAdd
|
||||||
|
|
||||||
|
End Sub
|
||||||
|
|
||||||
|
Private Sub frmGameProcesses_Load(sender As Object, e As EventArgs) Handles MyBase.Load
|
||||||
|
LoadData()
|
||||||
|
SetForm()
|
||||||
|
End Sub
|
||||||
|
|
||||||
|
Private Sub btnClose_Click(sender As Object, e As EventArgs) Handles btnClose.Click
|
||||||
|
If bNewMode Then BuildProcessList()
|
||||||
|
Me.Close()
|
||||||
|
End Sub
|
||||||
|
|
||||||
|
Private Sub btnAdd_Click(sender As Object, e As EventArgs) Handles btnAdd.Click
|
||||||
|
AddProcess()
|
||||||
|
End Sub
|
||||||
|
|
||||||
|
Private Sub btnRemove_Click(sender As Object, e As EventArgs) Handles btnRemove.Click
|
||||||
|
RemoveProcess()
|
||||||
|
End Sub
|
||||||
|
|
||||||
|
Private Sub btnOpenProcesses_Click(sender As Object, e As EventArgs) Handles btnOpenProcesses.Click
|
||||||
|
If bNewMode Then BuildProcessList()
|
||||||
|
OpenProcessManager()
|
||||||
|
End Sub
|
||||||
|
End Class
|
||||||
Generated
+89
-39
@@ -36,12 +36,16 @@ Partial Class frmMain
|
|||||||
Me.gMonTraySetupGameManager = New System.Windows.Forms.ToolStripMenuItem()
|
Me.gMonTraySetupGameManager = New System.Windows.Forms.ToolStripMenuItem()
|
||||||
Me.gMonTraySetupCustomVariables = New System.Windows.Forms.ToolStripMenuItem()
|
Me.gMonTraySetupCustomVariables = New System.Windows.Forms.ToolStripMenuItem()
|
||||||
Me.gMonTraySetupTags = New System.Windows.Forms.ToolStripMenuItem()
|
Me.gMonTraySetupTags = New System.Windows.Forms.ToolStripMenuItem()
|
||||||
|
Me.gMonTraySetupProcessManager = New System.Windows.Forms.ToolStripMenuItem()
|
||||||
Me.gMonTrayTools = New System.Windows.Forms.ToolStripMenuItem()
|
Me.gMonTrayTools = New System.Windows.Forms.ToolStripMenuItem()
|
||||||
Me.gMonTrayToolsCleanMan = New System.Windows.Forms.ToolStripMenuItem()
|
|
||||||
Me.gMonTrayToolsCompact = New System.Windows.Forms.ToolStripMenuItem()
|
Me.gMonTrayToolsCompact = New System.Windows.Forms.ToolStripMenuItem()
|
||||||
Me.gMonTrayToolsLog = New System.Windows.Forms.ToolStripMenuItem()
|
Me.gMonTrayToolsLog = New System.Windows.Forms.ToolStripMenuItem()
|
||||||
Me.gMonTrayLogClear = New System.Windows.Forms.ToolStripMenuItem()
|
Me.gMonTrayLogClear = New System.Windows.Forms.ToolStripMenuItem()
|
||||||
Me.gMonTrayLogSave = New System.Windows.Forms.ToolStripMenuItem()
|
Me.gMonTrayLogSave = New System.Windows.Forms.ToolStripMenuItem()
|
||||||
|
Me.gMonTrayToolsSessions = New System.Windows.Forms.ToolStripMenuItem()
|
||||||
|
Me.gMonTrayToolsSyncGameID = New System.Windows.Forms.ToolStripMenuItem()
|
||||||
|
Me.gMonTrayToolsSyncGameIDOfficial = New System.Windows.Forms.ToolStripMenuItem()
|
||||||
|
Me.gMonTrayToolsSyncGameIDFile = New System.Windows.Forms.ToolStripMenuItem()
|
||||||
Me.gMonTraySep1 = New System.Windows.Forms.ToolStripSeparator()
|
Me.gMonTraySep1 = New System.Windows.Forms.ToolStripSeparator()
|
||||||
Me.gMonTrayExit = New System.Windows.Forms.ToolStripMenuItem()
|
Me.gMonTrayExit = New System.Windows.Forms.ToolStripMenuItem()
|
||||||
Me.bwMonitor = New System.ComponentModel.BackgroundWorker()
|
Me.bwMonitor = New System.ComponentModel.BackgroundWorker()
|
||||||
@@ -62,13 +66,16 @@ Partial Class frmMain
|
|||||||
Me.gMonSetupAddWizard = New System.Windows.Forms.ToolStripMenuItem()
|
Me.gMonSetupAddWizard = New System.Windows.Forms.ToolStripMenuItem()
|
||||||
Me.gMonSetupCustomVariables = New System.Windows.Forms.ToolStripMenuItem()
|
Me.gMonSetupCustomVariables = New System.Windows.Forms.ToolStripMenuItem()
|
||||||
Me.gMonSetupTags = New System.Windows.Forms.ToolStripMenuItem()
|
Me.gMonSetupTags = New System.Windows.Forms.ToolStripMenuItem()
|
||||||
|
Me.gMonSetupProcessManager = New System.Windows.Forms.ToolStripMenuItem()
|
||||||
Me.gMonTools = New System.Windows.Forms.ToolStripMenuItem()
|
Me.gMonTools = New System.Windows.Forms.ToolStripMenuItem()
|
||||||
Me.gMonToolsCleanMan = New System.Windows.Forms.ToolStripMenuItem()
|
|
||||||
Me.gMonToolsCompact = New System.Windows.Forms.ToolStripMenuItem()
|
Me.gMonToolsCompact = New System.Windows.Forms.ToolStripMenuItem()
|
||||||
Me.gMonToolsLog = New System.Windows.Forms.ToolStripMenuItem()
|
Me.gMonToolsLog = New System.Windows.Forms.ToolStripMenuItem()
|
||||||
Me.gMonLogClear = New System.Windows.Forms.ToolStripMenuItem()
|
Me.gMonLogClear = New System.Windows.Forms.ToolStripMenuItem()
|
||||||
Me.gMonLogSave = New System.Windows.Forms.ToolStripMenuItem()
|
Me.gMonLogSave = New System.Windows.Forms.ToolStripMenuItem()
|
||||||
Me.gMonToolsSessions = New System.Windows.Forms.ToolStripMenuItem()
|
Me.gMonToolsSessions = New System.Windows.Forms.ToolStripMenuItem()
|
||||||
|
Me.gMonToolsSyncGameID = New System.Windows.Forms.ToolStripMenuItem()
|
||||||
|
Me.gMonToolsSyncGameIDOfficial = New System.Windows.Forms.ToolStripMenuItem()
|
||||||
|
Me.gMonToolsSyncGameIDFile = New System.Windows.Forms.ToolStripMenuItem()
|
||||||
Me.gMonHelp = New System.Windows.Forms.ToolStripMenuItem()
|
Me.gMonHelp = New System.Windows.Forms.ToolStripMenuItem()
|
||||||
Me.gMonHelpWebSite = New System.Windows.Forms.ToolStripMenuItem()
|
Me.gMonHelpWebSite = New System.Windows.Forms.ToolStripMenuItem()
|
||||||
Me.gMonHelpManual = New System.Windows.Forms.ToolStripMenuItem()
|
Me.gMonHelpManual = New System.Windows.Forms.ToolStripMenuItem()
|
||||||
@@ -85,7 +92,6 @@ Partial Class frmMain
|
|||||||
Me.lblStatus2 = New System.Windows.Forms.Label()
|
Me.lblStatus2 = New System.Windows.Forms.Label()
|
||||||
Me.lblStatus3 = New System.Windows.Forms.Label()
|
Me.lblStatus3 = New System.Windows.Forms.Label()
|
||||||
Me.pbTime = New System.Windows.Forms.PictureBox()
|
Me.pbTime = New System.Windows.Forms.PictureBox()
|
||||||
Me.gMonTrayToolsSessions = New System.Windows.Forms.ToolStripMenuItem()
|
|
||||||
Me.gMonTrayMenu.SuspendLayout()
|
Me.gMonTrayMenu.SuspendLayout()
|
||||||
Me.gMonStatusStrip.SuspendLayout()
|
Me.gMonStatusStrip.SuspendLayout()
|
||||||
Me.gMonMainMenu.SuspendLayout()
|
Me.gMonMainMenu.SuspendLayout()
|
||||||
@@ -105,7 +111,7 @@ Partial Class frmMain
|
|||||||
'
|
'
|
||||||
Me.gMonTrayMenu.Items.AddRange(New System.Windows.Forms.ToolStripItem() {Me.gMonTrayNotification, Me.gMonTrayShow, Me.gMonTraySep2, Me.gMonTrayMon, Me.gMonTraySettings, Me.gMonTraySetup, Me.gMonTrayTools, Me.gMonTraySep1, Me.gMonTrayExit})
|
Me.gMonTrayMenu.Items.AddRange(New System.Windows.Forms.ToolStripItem() {Me.gMonTrayNotification, Me.gMonTrayShow, Me.gMonTraySep2, Me.gMonTrayMon, Me.gMonTraySettings, Me.gMonTraySetup, Me.gMonTrayTools, Me.gMonTraySep1, Me.gMonTrayExit})
|
||||||
Me.gMonTrayMenu.Name = "gMonTrayMenu"
|
Me.gMonTrayMenu.Name = "gMonTrayMenu"
|
||||||
Me.gMonTrayMenu.Size = New System.Drawing.Size(162, 192)
|
Me.gMonTrayMenu.Size = New System.Drawing.Size(162, 170)
|
||||||
'
|
'
|
||||||
'gMonTrayNotification
|
'gMonTrayNotification
|
||||||
'
|
'
|
||||||
@@ -139,7 +145,7 @@ Partial Class frmMain
|
|||||||
'
|
'
|
||||||
'gMonTraySetup
|
'gMonTraySetup
|
||||||
'
|
'
|
||||||
Me.gMonTraySetup.DropDownItems.AddRange(New System.Windows.Forms.ToolStripItem() {Me.gMonTraySetupAddWizard, Me.gMonTraySetupGameManager, Me.gMonTraySetupCustomVariables, Me.gMonTraySetupTags})
|
Me.gMonTraySetup.DropDownItems.AddRange(New System.Windows.Forms.ToolStripItem() {Me.gMonTraySetupAddWizard, Me.gMonTraySetupGameManager, Me.gMonTraySetupTags, Me.gMonTraySetupProcessManager, Me.gMonTraySetupCustomVariables})
|
||||||
Me.gMonTraySetup.Name = "gMonTraySetup"
|
Me.gMonTraySetup.Name = "gMonTraySetup"
|
||||||
Me.gMonTraySetup.Size = New System.Drawing.Size(161, 22)
|
Me.gMonTraySetup.Size = New System.Drawing.Size(161, 22)
|
||||||
Me.gMonTraySetup.Text = "&Setup"
|
Me.gMonTraySetup.Text = "&Setup"
|
||||||
@@ -160,52 +166,77 @@ Partial Class frmMain
|
|||||||
'
|
'
|
||||||
Me.gMonTraySetupCustomVariables.Name = "gMonTraySetupCustomVariables"
|
Me.gMonTraySetupCustomVariables.Name = "gMonTraySetupCustomVariables"
|
||||||
Me.gMonTraySetupCustomVariables.Size = New System.Drawing.Size(201, 22)
|
Me.gMonTraySetupCustomVariables.Size = New System.Drawing.Size(201, 22)
|
||||||
Me.gMonTraySetupCustomVariables.Text = "Custom &Path Variables..."
|
Me.gMonTraySetupCustomVariables.Text = "Custom Path &Variables..."
|
||||||
'
|
'
|
||||||
'gMonTraySetupTags
|
'gMonTraySetupTags
|
||||||
'
|
'
|
||||||
Me.gMonTraySetupTags.Name = "gMonTraySetupTags"
|
Me.gMonTraySetupTags.Name = "gMonTraySetupTags"
|
||||||
Me.gMonTraySetupTags.Size = New System.Drawing.Size(201, 22)
|
Me.gMonTraySetupTags.Size = New System.Drawing.Size(201, 22)
|
||||||
Me.gMonTraySetupTags.Text = "&Tags..."
|
Me.gMonTraySetupTags.Text = "&Tag Manager..."
|
||||||
|
'
|
||||||
|
'gMonTraySetupProcessManager
|
||||||
|
'
|
||||||
|
Me.gMonTraySetupProcessManager.Name = "gMonTraySetupProcessManager"
|
||||||
|
Me.gMonTraySetupProcessManager.Size = New System.Drawing.Size(201, 22)
|
||||||
|
Me.gMonTraySetupProcessManager.Text = "&Process Manager..."
|
||||||
'
|
'
|
||||||
'gMonTrayTools
|
'gMonTrayTools
|
||||||
'
|
'
|
||||||
Me.gMonTrayTools.DropDownItems.AddRange(New System.Windows.Forms.ToolStripItem() {Me.gMonTrayToolsCleanMan, Me.gMonTrayToolsCompact, Me.gMonTrayToolsLog, Me.gMonTrayToolsSessions})
|
Me.gMonTrayTools.DropDownItems.AddRange(New System.Windows.Forms.ToolStripItem() {Me.gMonTrayToolsCompact, Me.gMonTrayToolsLog, Me.gMonTrayToolsSessions, Me.gMonTrayToolsSyncGameID})
|
||||||
Me.gMonTrayTools.Name = "gMonTrayTools"
|
Me.gMonTrayTools.Name = "gMonTrayTools"
|
||||||
Me.gMonTrayTools.Size = New System.Drawing.Size(161, 22)
|
Me.gMonTrayTools.Size = New System.Drawing.Size(161, 22)
|
||||||
Me.gMonTrayTools.Text = "&Tools"
|
Me.gMonTrayTools.Text = "&Tools"
|
||||||
'
|
'
|
||||||
'gMonTrayToolsCleanMan
|
|
||||||
'
|
|
||||||
Me.gMonTrayToolsCleanMan.Name = "gMonTrayToolsCleanMan"
|
|
||||||
Me.gMonTrayToolsCleanMan.Size = New System.Drawing.Size(184, 22)
|
|
||||||
Me.gMonTrayToolsCleanMan.Text = "Clean Local Ma&nifest"
|
|
||||||
'
|
|
||||||
'gMonTrayToolsCompact
|
'gMonTrayToolsCompact
|
||||||
'
|
'
|
||||||
Me.gMonTrayToolsCompact.Name = "gMonTrayToolsCompact"
|
Me.gMonTrayToolsCompact.Name = "gMonTrayToolsCompact"
|
||||||
Me.gMonTrayToolsCompact.Size = New System.Drawing.Size(184, 22)
|
Me.gMonTrayToolsCompact.Size = New System.Drawing.Size(179, 22)
|
||||||
Me.gMonTrayToolsCompact.Text = "&Compact Databases"
|
Me.gMonTrayToolsCompact.Text = "&Compact Databases"
|
||||||
'
|
'
|
||||||
'gMonTrayToolsLog
|
'gMonTrayToolsLog
|
||||||
'
|
'
|
||||||
Me.gMonTrayToolsLog.DropDownItems.AddRange(New System.Windows.Forms.ToolStripItem() {Me.gMonTrayLogClear, Me.gMonTrayLogSave})
|
Me.gMonTrayToolsLog.DropDownItems.AddRange(New System.Windows.Forms.ToolStripItem() {Me.gMonTrayLogClear, Me.gMonTrayLogSave})
|
||||||
Me.gMonTrayToolsLog.Name = "gMonTrayToolsLog"
|
Me.gMonTrayToolsLog.Name = "gMonTrayToolsLog"
|
||||||
Me.gMonTrayToolsLog.Size = New System.Drawing.Size(184, 22)
|
Me.gMonTrayToolsLog.Size = New System.Drawing.Size(179, 22)
|
||||||
Me.gMonTrayToolsLog.Text = "&Log"
|
Me.gMonTrayToolsLog.Text = "&Log"
|
||||||
'
|
'
|
||||||
'gMonTrayLogClear
|
'gMonTrayLogClear
|
||||||
'
|
'
|
||||||
Me.gMonTrayLogClear.Name = "gMonTrayLogClear"
|
Me.gMonTrayLogClear.Name = "gMonTrayLogClear"
|
||||||
Me.gMonTrayLogClear.Size = New System.Drawing.Size(152, 22)
|
Me.gMonTrayLogClear.Size = New System.Drawing.Size(101, 22)
|
||||||
Me.gMonTrayLogClear.Text = "&Clear"
|
Me.gMonTrayLogClear.Text = "&Clear"
|
||||||
'
|
'
|
||||||
'gMonTrayLogSave
|
'gMonTrayLogSave
|
||||||
'
|
'
|
||||||
Me.gMonTrayLogSave.Name = "gMonTrayLogSave"
|
Me.gMonTrayLogSave.Name = "gMonTrayLogSave"
|
||||||
Me.gMonTrayLogSave.Size = New System.Drawing.Size(152, 22)
|
Me.gMonTrayLogSave.Size = New System.Drawing.Size(101, 22)
|
||||||
Me.gMonTrayLogSave.Text = "&Save"
|
Me.gMonTrayLogSave.Text = "&Save"
|
||||||
'
|
'
|
||||||
|
'gMonTrayToolsSessions
|
||||||
|
'
|
||||||
|
Me.gMonTrayToolsSessions.Name = "gMonTrayToolsSessions"
|
||||||
|
Me.gMonTrayToolsSessions.Size = New System.Drawing.Size(179, 22)
|
||||||
|
Me.gMonTrayToolsSessions.Text = "&Session Viewer..."
|
||||||
|
'
|
||||||
|
'gMonTrayToolsSyncGameID
|
||||||
|
'
|
||||||
|
Me.gMonTrayToolsSyncGameID.DropDownItems.AddRange(New System.Windows.Forms.ToolStripItem() {Me.gMonTrayToolsSyncGameIDOfficial, Me.gMonTrayToolsSyncGameIDFile})
|
||||||
|
Me.gMonTrayToolsSyncGameID.Name = "gMonTrayToolsSyncGameID"
|
||||||
|
Me.gMonTrayToolsSyncGameID.Size = New System.Drawing.Size(179, 22)
|
||||||
|
Me.gMonTrayToolsSyncGameID.Text = "S&ync Game IDs"
|
||||||
|
'
|
||||||
|
'gMonTrayToolsSyncGameIDOfficial
|
||||||
|
'
|
||||||
|
Me.gMonTrayToolsSyncGameIDOfficial.Name = "gMonTrayToolsSyncGameIDOfficial"
|
||||||
|
Me.gMonTrayToolsSyncGameIDOfficial.Size = New System.Drawing.Size(142, 22)
|
||||||
|
Me.gMonTrayToolsSyncGameIDOfficial.Text = "&Official List..."
|
||||||
|
'
|
||||||
|
'gMonTrayToolsSyncGameIDFile
|
||||||
|
'
|
||||||
|
Me.gMonTrayToolsSyncGameIDFile.Name = "gMonTrayToolsSyncGameIDFile"
|
||||||
|
Me.gMonTrayToolsSyncGameIDFile.Size = New System.Drawing.Size(142, 22)
|
||||||
|
Me.gMonTrayToolsSyncGameIDFile.Text = "&File..."
|
||||||
|
'
|
||||||
'gMonTraySep1
|
'gMonTraySep1
|
||||||
'
|
'
|
||||||
Me.gMonTraySep1.Name = "gMonTraySep1"
|
Me.gMonTraySep1.Name = "gMonTraySep1"
|
||||||
@@ -319,7 +350,7 @@ Partial Class frmMain
|
|||||||
'
|
'
|
||||||
'gMonSetup
|
'gMonSetup
|
||||||
'
|
'
|
||||||
Me.gMonSetup.DropDownItems.AddRange(New System.Windows.Forms.ToolStripItem() {Me.gMonSetupGameManager, Me.gMonSetupAddWizard, Me.gMonSetupCustomVariables, Me.gMonSetupTags})
|
Me.gMonSetup.DropDownItems.AddRange(New System.Windows.Forms.ToolStripItem() {Me.gMonSetupGameManager, Me.gMonSetupAddWizard, Me.gMonSetupTags, Me.gMonSetupProcessManager, Me.gMonSetupCustomVariables})
|
||||||
Me.gMonSetup.Name = "gMonSetup"
|
Me.gMonSetup.Name = "gMonSetup"
|
||||||
Me.gMonSetup.Size = New System.Drawing.Size(49, 20)
|
Me.gMonSetup.Size = New System.Drawing.Size(49, 20)
|
||||||
Me.gMonSetup.Text = "&Setup"
|
Me.gMonSetup.Text = "&Setup"
|
||||||
@@ -340,38 +371,38 @@ Partial Class frmMain
|
|||||||
'
|
'
|
||||||
Me.gMonSetupCustomVariables.Name = "gMonSetupCustomVariables"
|
Me.gMonSetupCustomVariables.Name = "gMonSetupCustomVariables"
|
||||||
Me.gMonSetupCustomVariables.Size = New System.Drawing.Size(201, 22)
|
Me.gMonSetupCustomVariables.Size = New System.Drawing.Size(201, 22)
|
||||||
Me.gMonSetupCustomVariables.Text = "Custom &Path Variables..."
|
Me.gMonSetupCustomVariables.Text = "Custom Path &Variables..."
|
||||||
'
|
'
|
||||||
'gMonSetupTags
|
'gMonSetupTags
|
||||||
'
|
'
|
||||||
Me.gMonSetupTags.Name = "gMonSetupTags"
|
Me.gMonSetupTags.Name = "gMonSetupTags"
|
||||||
Me.gMonSetupTags.Size = New System.Drawing.Size(201, 22)
|
Me.gMonSetupTags.Size = New System.Drawing.Size(201, 22)
|
||||||
Me.gMonSetupTags.Text = "&Tags..."
|
Me.gMonSetupTags.Text = "&Tag Manager..."
|
||||||
|
'
|
||||||
|
'gMonSetupProcessManager
|
||||||
|
'
|
||||||
|
Me.gMonSetupProcessManager.Name = "gMonSetupProcessManager"
|
||||||
|
Me.gMonSetupProcessManager.Size = New System.Drawing.Size(201, 22)
|
||||||
|
Me.gMonSetupProcessManager.Text = "&Process Manager..."
|
||||||
'
|
'
|
||||||
'gMonTools
|
'gMonTools
|
||||||
'
|
'
|
||||||
Me.gMonTools.DropDownItems.AddRange(New System.Windows.Forms.ToolStripItem() {Me.gMonToolsCleanMan, Me.gMonToolsCompact, Me.gMonToolsLog, Me.gMonToolsSessions})
|
Me.gMonTools.DropDownItems.AddRange(New System.Windows.Forms.ToolStripItem() {Me.gMonToolsCompact, Me.gMonToolsLog, Me.gMonToolsSessions, Me.gMonToolsSyncGameID})
|
||||||
Me.gMonTools.Name = "gMonTools"
|
Me.gMonTools.Name = "gMonTools"
|
||||||
Me.gMonTools.Size = New System.Drawing.Size(47, 20)
|
Me.gMonTools.Size = New System.Drawing.Size(47, 20)
|
||||||
Me.gMonTools.Text = "&Tools"
|
Me.gMonTools.Text = "&Tools"
|
||||||
'
|
'
|
||||||
'gMonToolsCleanMan
|
|
||||||
'
|
|
||||||
Me.gMonToolsCleanMan.Name = "gMonToolsCleanMan"
|
|
||||||
Me.gMonToolsCleanMan.Size = New System.Drawing.Size(184, 22)
|
|
||||||
Me.gMonToolsCleanMan.Text = "Clean Local Ma&nifest"
|
|
||||||
'
|
|
||||||
'gMonToolsCompact
|
'gMonToolsCompact
|
||||||
'
|
'
|
||||||
Me.gMonToolsCompact.Name = "gMonToolsCompact"
|
Me.gMonToolsCompact.Name = "gMonToolsCompact"
|
||||||
Me.gMonToolsCompact.Size = New System.Drawing.Size(184, 22)
|
Me.gMonToolsCompact.Size = New System.Drawing.Size(179, 22)
|
||||||
Me.gMonToolsCompact.Text = "&Compact Databases"
|
Me.gMonToolsCompact.Text = "&Compact Databases"
|
||||||
'
|
'
|
||||||
'gMonToolsLog
|
'gMonToolsLog
|
||||||
'
|
'
|
||||||
Me.gMonToolsLog.DropDownItems.AddRange(New System.Windows.Forms.ToolStripItem() {Me.gMonLogClear, Me.gMonLogSave})
|
Me.gMonToolsLog.DropDownItems.AddRange(New System.Windows.Forms.ToolStripItem() {Me.gMonLogClear, Me.gMonLogSave})
|
||||||
Me.gMonToolsLog.Name = "gMonToolsLog"
|
Me.gMonToolsLog.Name = "gMonToolsLog"
|
||||||
Me.gMonToolsLog.Size = New System.Drawing.Size(184, 22)
|
Me.gMonToolsLog.Size = New System.Drawing.Size(179, 22)
|
||||||
Me.gMonToolsLog.Text = "&Log"
|
Me.gMonToolsLog.Text = "&Log"
|
||||||
'
|
'
|
||||||
'gMonLogClear
|
'gMonLogClear
|
||||||
@@ -389,9 +420,28 @@ Partial Class frmMain
|
|||||||
'gMonToolsSessions
|
'gMonToolsSessions
|
||||||
'
|
'
|
||||||
Me.gMonToolsSessions.Name = "gMonToolsSessions"
|
Me.gMonToolsSessions.Name = "gMonToolsSessions"
|
||||||
Me.gMonToolsSessions.Size = New System.Drawing.Size(184, 22)
|
Me.gMonToolsSessions.Size = New System.Drawing.Size(179, 22)
|
||||||
Me.gMonToolsSessions.Text = "&Session Viewer..."
|
Me.gMonToolsSessions.Text = "&Session Viewer..."
|
||||||
'
|
'
|
||||||
|
'gMonToolsSyncGameID
|
||||||
|
'
|
||||||
|
Me.gMonToolsSyncGameID.DropDownItems.AddRange(New System.Windows.Forms.ToolStripItem() {Me.gMonToolsSyncGameIDOfficial, Me.gMonToolsSyncGameIDFile})
|
||||||
|
Me.gMonToolsSyncGameID.Name = "gMonToolsSyncGameID"
|
||||||
|
Me.gMonToolsSyncGameID.Size = New System.Drawing.Size(179, 22)
|
||||||
|
Me.gMonToolsSyncGameID.Text = "S&ync Game IDs"
|
||||||
|
'
|
||||||
|
'gMonToolsSyncGameIDOfficial
|
||||||
|
'
|
||||||
|
Me.gMonToolsSyncGameIDOfficial.Name = "gMonToolsSyncGameIDOfficial"
|
||||||
|
Me.gMonToolsSyncGameIDOfficial.Size = New System.Drawing.Size(142, 22)
|
||||||
|
Me.gMonToolsSyncGameIDOfficial.Text = "&Official List..."
|
||||||
|
'
|
||||||
|
'gMonToolsSyncGameIDFile
|
||||||
|
'
|
||||||
|
Me.gMonToolsSyncGameIDFile.Name = "gMonToolsSyncGameIDFile"
|
||||||
|
Me.gMonToolsSyncGameIDFile.Size = New System.Drawing.Size(142, 22)
|
||||||
|
Me.gMonToolsSyncGameIDFile.Text = "&File..."
|
||||||
|
'
|
||||||
'gMonHelp
|
'gMonHelp
|
||||||
'
|
'
|
||||||
Me.gMonHelp.DropDownItems.AddRange(New System.Windows.Forms.ToolStripItem() {Me.gMonHelpWebSite, Me.gMonHelpManual, Me.gMonHelpCheckforUpdates, Me.gMonHelpAbout})
|
Me.gMonHelp.DropDownItems.AddRange(New System.Windows.Forms.ToolStripItem() {Me.gMonHelpWebSite, Me.gMonHelpManual, Me.gMonHelpCheckforUpdates, Me.gMonHelpAbout})
|
||||||
@@ -532,12 +582,6 @@ Partial Class frmMain
|
|||||||
Me.pbTime.TabIndex = 18
|
Me.pbTime.TabIndex = 18
|
||||||
Me.pbTime.TabStop = False
|
Me.pbTime.TabStop = False
|
||||||
'
|
'
|
||||||
'gMonTrayToolsSessions
|
|
||||||
'
|
|
||||||
Me.gMonTrayToolsSessions.Name = "gMonTrayToolsSessions"
|
|
||||||
Me.gMonTrayToolsSessions.Size = New System.Drawing.Size(184, 22)
|
|
||||||
Me.gMonTrayToolsSessions.Text = "&Session Viewer..."
|
|
||||||
'
|
|
||||||
'frmMain
|
'frmMain
|
||||||
'
|
'
|
||||||
Me.AutoScaleDimensions = New System.Drawing.SizeF(6.0!, 13.0!)
|
Me.AutoScaleDimensions = New System.Drawing.SizeF(6.0!, 13.0!)
|
||||||
@@ -625,8 +669,6 @@ Partial Class frmMain
|
|||||||
Friend WithEvents gMonTrayNotification As System.Windows.Forms.ToolStripMenuItem
|
Friend WithEvents gMonTrayNotification As System.Windows.Forms.ToolStripMenuItem
|
||||||
Friend WithEvents gMonHelpWebSite As System.Windows.Forms.ToolStripMenuItem
|
Friend WithEvents gMonHelpWebSite As System.Windows.Forms.ToolStripMenuItem
|
||||||
Friend WithEvents pbTime As System.Windows.Forms.PictureBox
|
Friend WithEvents pbTime As System.Windows.Forms.PictureBox
|
||||||
Friend WithEvents gMonTrayToolsCleanMan As System.Windows.Forms.ToolStripMenuItem
|
|
||||||
Friend WithEvents gMonToolsCleanMan As System.Windows.Forms.ToolStripMenuItem
|
|
||||||
Friend WithEvents gMonToolsLog As ToolStripMenuItem
|
Friend WithEvents gMonToolsLog As ToolStripMenuItem
|
||||||
Friend WithEvents gMonLogClear As ToolStripMenuItem
|
Friend WithEvents gMonLogClear As ToolStripMenuItem
|
||||||
Friend WithEvents gMonLogSave As ToolStripMenuItem
|
Friend WithEvents gMonLogSave As ToolStripMenuItem
|
||||||
@@ -637,4 +679,12 @@ Partial Class frmMain
|
|||||||
Friend WithEvents gMonStripStatusButton As System.Windows.Forms.ToolStripStatusLabel
|
Friend WithEvents gMonStripStatusButton As System.Windows.Forms.ToolStripStatusLabel
|
||||||
Friend WithEvents gMonToolsSessions As ToolStripMenuItem
|
Friend WithEvents gMonToolsSessions As ToolStripMenuItem
|
||||||
Friend WithEvents gMonTrayToolsSessions As ToolStripMenuItem
|
Friend WithEvents gMonTrayToolsSessions As ToolStripMenuItem
|
||||||
|
Friend WithEvents gMonToolsSyncGameID As ToolStripMenuItem
|
||||||
|
Friend WithEvents gMonToolsSyncGameIDOfficial As ToolStripMenuItem
|
||||||
|
Friend WithEvents gMonToolsSyncGameIDFile As ToolStripMenuItem
|
||||||
|
Friend WithEvents gMonTrayToolsSyncGameID As ToolStripMenuItem
|
||||||
|
Friend WithEvents gMonTrayToolsSyncGameIDOfficial As ToolStripMenuItem
|
||||||
|
Friend WithEvents gMonTrayToolsSyncGameIDFile As ToolStripMenuItem
|
||||||
|
Friend WithEvents gMonTraySetupProcessManager As ToolStripMenuItem
|
||||||
|
Friend WithEvents gMonSetupProcessManager As ToolStripMenuItem
|
||||||
End Class
|
End Class
|
||||||
|
|||||||
+167
-63
@@ -40,6 +40,7 @@ Public Class frmMain
|
|||||||
Private sPriorCompany As String
|
Private sPriorCompany As String
|
||||||
Private sPriorVersion As String
|
Private sPriorVersion As String
|
||||||
Private iRestoreTimeOut As Integer
|
Private iRestoreTimeOut As Integer
|
||||||
|
Private oChildProcesses As New Hashtable
|
||||||
Private wState As FormWindowState = FormWindowState.Normal
|
Private wState As FormWindowState = FormWindowState.Normal
|
||||||
|
|
||||||
'Developer Debug Flags
|
'Developer Debug Flags
|
||||||
@@ -52,7 +53,7 @@ Public Class frmMain
|
|||||||
WithEvents tmRestoreCheck As New System.Timers.Timer
|
WithEvents tmRestoreCheck As New System.Timers.Timer
|
||||||
WithEvents tmFileWatcherQueue As New System.Timers.Timer
|
WithEvents tmFileWatcherQueue As New System.Timers.Timer
|
||||||
|
|
||||||
Public WithEvents oProcess As New mgrProcesses
|
Public WithEvents oProcess As New mgrProcessDetection
|
||||||
Public WithEvents oBackup As New mgrBackup
|
Public WithEvents oBackup As New mgrBackup
|
||||||
Public WithEvents oRestore As New mgrRestore
|
Public WithEvents oRestore As New mgrRestore
|
||||||
Public hshScanList As Hashtable
|
Public hshScanList As Hashtable
|
||||||
@@ -365,9 +366,9 @@ Public Class frmMain
|
|||||||
|
|
||||||
Private Sub AutoRestoreCheck()
|
Private Sub AutoRestoreCheck()
|
||||||
Dim slRestoreData As SortedList = mgrRestore.CompareManifests()
|
Dim slRestoreData As SortedList = mgrRestore.CompareManifests()
|
||||||
Dim sNotReady As New List(Of String)
|
Dim oNotReady As New List(Of clsBackup)
|
||||||
Dim sNotInstalled As New List(Of String)
|
Dim oNotInstalled As New List(Of clsBackup)
|
||||||
Dim sNoCheckSum As New List(Of String)
|
Dim oNoCheckSum As New List(Of clsBackup)
|
||||||
Dim oBackup As clsBackup
|
Dim oBackup As clsBackup
|
||||||
Dim sFileName As String
|
Dim sFileName As String
|
||||||
Dim sExtractPath As String
|
Dim sExtractPath As String
|
||||||
@@ -395,18 +396,17 @@ Public Class frmMain
|
|||||||
If oBackup.CheckSum <> String.Empty Then
|
If oBackup.CheckSum <> String.Empty Then
|
||||||
sFileName = oSettings.BackupFolder & Path.DirectorySeparatorChar & oBackup.FileName
|
sFileName = oSettings.BackupFolder & Path.DirectorySeparatorChar & oBackup.FileName
|
||||||
If mgrHash.Generate_SHA256_Hash(sFileName) <> oBackup.CheckSum Then
|
If mgrHash.Generate_SHA256_Hash(sFileName) <> oBackup.CheckSum Then
|
||||||
sNotReady.Add(de.Key)
|
oNotReady.Add(oBackup)
|
||||||
bFinished = False
|
bFinished = False
|
||||||
End If
|
End If
|
||||||
Else
|
Else
|
||||||
sNoCheckSum.Add(de.Key)
|
oNoCheckSum.Add(oBackup)
|
||||||
End If
|
End If
|
||||||
|
|
||||||
'Check if the restore location exists, if not we assume the game is not installed and should be auto-marked.
|
'Check if the restore location exists, if not we assume the game is not installed and should be auto-marked.
|
||||||
hshGames = mgrMonitorList.DoListGetbyName(de.Key)
|
hshGames = mgrMonitorList.DoListGetbyMonitorID(de.Key)
|
||||||
If hshGames.Count = 1 Then
|
If hshGames.Count = 1 Then
|
||||||
oGame = DirectCast(hshGames(0), clsGame)
|
oGame = DirectCast(hshGames(0), clsGame)
|
||||||
mgrRestore.DoPathOverride(oBackup, oGame)
|
|
||||||
If oGame.ProcessPath <> String.Empty Then
|
If oGame.ProcessPath <> String.Empty Then
|
||||||
oBackup.RelativeRestorePath = oGame.ProcessPath & Path.DirectorySeparatorChar & oBackup.RestorePath
|
oBackup.RelativeRestorePath = oGame.ProcessPath & Path.DirectorySeparatorChar & oBackup.RestorePath
|
||||||
End If
|
End If
|
||||||
@@ -420,34 +420,34 @@ Public Class frmMain
|
|||||||
|
|
||||||
If Not Directory.Exists(sExtractPath) Then
|
If Not Directory.Exists(sExtractPath) Then
|
||||||
If oSettings.AutoMark Then
|
If oSettings.AutoMark Then
|
||||||
If mgrManifest.DoGlobalManifestCheck(de.Key, mgrSQLite.Database.Local) Then
|
If mgrManifest.DoManifestCheck(de.Key, mgrSQLite.Database.Local) Then
|
||||||
mgrManifest.DoManifestUpdateByName(de.Value, mgrSQLite.Database.Local)
|
mgrManifest.DoManifestUpdateByMonitorID(de.Value, mgrSQLite.Database.Local)
|
||||||
Else
|
Else
|
||||||
mgrManifest.DoManifestAdd(de.Value, mgrSQLite.Database.Local)
|
mgrManifest.DoManifestAdd(de.Value, mgrSQLite.Database.Local)
|
||||||
End If
|
End If
|
||||||
End If
|
End If
|
||||||
sNotInstalled.Add(de.Key)
|
oNotInstalled.Add(oBackup)
|
||||||
End If
|
End If
|
||||||
Next
|
Next
|
||||||
|
|
||||||
'Remove any backup files that are not ready
|
'Remove any backup files that are not ready
|
||||||
For Each s As String In sNotReady
|
For Each o As clsBackup In oNotReady
|
||||||
slRestoreData.Remove(s)
|
slRestoreData.Remove(o.MonitorID)
|
||||||
UpdateLog(mgrCommon.FormatString(frmMain_RestoreNotReady, s), False, ToolTipIcon.Info, True)
|
UpdateLog(mgrCommon.FormatString(frmMain_RestoreNotReady, o.Name), False, ToolTipIcon.Info, True)
|
||||||
Next
|
Next
|
||||||
|
|
||||||
'Remove any backup files that should not be automatically restored
|
'Remove any backup files that should not be automatically restored
|
||||||
For Each s As String In sNotInstalled
|
For Each o As clsBackup In oNotInstalled
|
||||||
slRestoreData.Remove(s)
|
slRestoreData.Remove(o.MonitorID)
|
||||||
If oSettings.AutoMark Then
|
If oSettings.AutoMark Then
|
||||||
UpdateLog(mgrCommon.FormatString(frmMain_AutoMark, s), False, ToolTipIcon.Info, True)
|
UpdateLog(mgrCommon.FormatString(frmMain_AutoMark, o.Name), False, ToolTipIcon.Info, True)
|
||||||
Else
|
Else
|
||||||
UpdateLog(mgrCommon.FormatString(frmMain_NoAutoMark, s), False, ToolTipIcon.Info, True)
|
UpdateLog(mgrCommon.FormatString(frmMain_NoAutoMark, o.Name), False, ToolTipIcon.Info, True)
|
||||||
End If
|
End If
|
||||||
Next
|
Next
|
||||||
For Each s As String In sNoCheckSum
|
For Each o As clsBackup In oNoCheckSum
|
||||||
slRestoreData.Remove(s)
|
slRestoreData.Remove(o.MonitorID)
|
||||||
UpdateLog(mgrCommon.FormatString(frmMain_NoCheckSum, s), False, ToolTipIcon.Info, True)
|
UpdateLog(mgrCommon.FormatString(frmMain_NoCheckSum, o.Name), False, ToolTipIcon.Info, True)
|
||||||
Next
|
Next
|
||||||
|
|
||||||
'Automatically restore backup files
|
'Automatically restore backup files
|
||||||
@@ -456,13 +456,14 @@ Public Class frmMain
|
|||||||
hshRestore = New Hashtable
|
hshRestore = New Hashtable
|
||||||
sGame = String.Empty
|
sGame = String.Empty
|
||||||
For Each de As DictionaryEntry In slRestoreData
|
For Each de As DictionaryEntry In slRestoreData
|
||||||
hshGames = mgrMonitorList.DoListGetbyName(de.Key)
|
oBackup = DirectCast(de.Value, clsBackup)
|
||||||
|
hshGames = mgrMonitorList.DoListGetbyMonitorID(de.Key)
|
||||||
If hshGames.Count = 1 Then
|
If hshGames.Count = 1 Then
|
||||||
oGame = DirectCast(hshGames(0), clsGame)
|
oGame = DirectCast(hshGames(0), clsGame)
|
||||||
sGame = oGame.CroppedName
|
sGame = oGame.CroppedName
|
||||||
hshRestore.Add(oGame, de.Value)
|
hshRestore.Add(oGame, de.Value)
|
||||||
Else
|
Else
|
||||||
UpdateLog(mgrCommon.FormatString(frmMain_AutoRestoreFailure, de.Key), False, ToolTipIcon.Info, True)
|
UpdateLog(mgrCommon.FormatString(frmMain_AutoRestoreFailure, oBackup.Name), False, ToolTipIcon.Info, True)
|
||||||
End If
|
End If
|
||||||
Next
|
Next
|
||||||
|
|
||||||
@@ -709,7 +710,7 @@ Public Class frmMain
|
|||||||
End If
|
End If
|
||||||
|
|
||||||
mgrMonitorList.DoListUpdate(oProcess.GameInfo)
|
mgrMonitorList.DoListUpdate(oProcess.GameInfo)
|
||||||
If oSettings.Sync Then mgrMonitorList.SyncMonitorLists(oSettings.SyncFields)
|
mgrMonitorList.SyncMonitorLists(oSettings.SyncFields)
|
||||||
|
|
||||||
UpdateTimeSpent(dCurrentHours, oProcess.TimeSpent.TotalHours)
|
UpdateTimeSpent(dCurrentHours, oProcess.TimeSpent.TotalHours)
|
||||||
End Sub
|
End Sub
|
||||||
@@ -840,18 +841,24 @@ Public Class frmMain
|
|||||||
Dim frm As New frmTags
|
Dim frm As New frmTags
|
||||||
PauseScan()
|
PauseScan()
|
||||||
frm.ShowDialog()
|
frm.ShowDialog()
|
||||||
If oSettings.Sync Then mgrMonitorList.SyncMonitorLists(oSettings.SyncFields)
|
mgrMonitorList.SyncMonitorLists(oSettings.SyncFields)
|
||||||
|
ResumeScan()
|
||||||
|
End Sub
|
||||||
|
|
||||||
|
Private Sub OpenProcessManager()
|
||||||
|
Dim frm As New frmProcessManager
|
||||||
|
PauseScan()
|
||||||
|
frm.ShowDialog()
|
||||||
ResumeScan()
|
ResumeScan()
|
||||||
End Sub
|
End Sub
|
||||||
|
|
||||||
Private Sub OpenGameManager(Optional ByVal bPendingRestores As Boolean = False)
|
Private Sub OpenGameManager(Optional ByVal bPendingRestores As Boolean = False)
|
||||||
Dim frm As New frmGameManager
|
Dim frm As New frmGameManager
|
||||||
PauseScan()
|
PauseScan()
|
||||||
frm.BackupFolder = oSettings.BackupFolder
|
frm.Settings = oSettings
|
||||||
frm.PendingRestores = bPendingRestores
|
frm.PendingRestores = bPendingRestores
|
||||||
frm.ShowDialog()
|
frm.ShowDialog()
|
||||||
LoadGameSettings()
|
LoadGameSettings()
|
||||||
If oSettings.Sync Then mgrMonitorList.SyncMonitorLists(oSettings.SyncFields)
|
|
||||||
ResumeScan()
|
ResumeScan()
|
||||||
|
|
||||||
'Handle backup trigger
|
'Handle backup trigger
|
||||||
@@ -901,7 +908,7 @@ Public Class frmMain
|
|||||||
frm.GameData = mgrMonitorList.ReadList(mgrMonitorList.eListTypes.FullList)
|
frm.GameData = mgrMonitorList.ReadList(mgrMonitorList.eListTypes.FullList)
|
||||||
frm.ShowDialog()
|
frm.ShowDialog()
|
||||||
LoadGameSettings()
|
LoadGameSettings()
|
||||||
If oSettings.Sync Then mgrMonitorList.SyncMonitorLists(oSettings.SyncFields)
|
mgrMonitorList.SyncMonitorLists(oSettings.SyncFields)
|
||||||
ResumeScan()
|
ResumeScan()
|
||||||
End Sub
|
End Sub
|
||||||
|
|
||||||
@@ -910,7 +917,7 @@ Public Class frmMain
|
|||||||
PauseScan()
|
PauseScan()
|
||||||
frm.ShowDialog()
|
frm.ShowDialog()
|
||||||
mgrPath.CustomVariablesReload()
|
mgrPath.CustomVariablesReload()
|
||||||
If oSettings.Sync Then mgrMonitorList.SyncMonitorLists(oSettings.SyncFields)
|
mgrMonitorList.SyncMonitorLists(oSettings.SyncFields)
|
||||||
ResumeScan()
|
ResumeScan()
|
||||||
End Sub
|
End Sub
|
||||||
|
|
||||||
@@ -975,18 +982,42 @@ Public Class frmMain
|
|||||||
Private Sub HandleSyncWatcher() Handles tmFileWatcherQueue.Elapsed
|
Private Sub HandleSyncWatcher() Handles tmFileWatcherQueue.Elapsed
|
||||||
tmFileWatcherQueue.Stop()
|
tmFileWatcherQueue.Stop()
|
||||||
StopSyncWatcher()
|
StopSyncWatcher()
|
||||||
If oSettings.Sync Then
|
|
||||||
UpdateLog(frmMain_MasterListChanged, False, ToolTipIcon.Info, True)
|
UpdateLog(frmMain_MasterListChanged, False, ToolTipIcon.Info, True)
|
||||||
SyncGameSettings()
|
SyncGameSettings()
|
||||||
LoadGameSettings()
|
LoadGameSettings()
|
||||||
End If
|
|
||||||
CheckForNewBackups()
|
CheckForNewBackups()
|
||||||
StartSyncWatcher()
|
StartSyncWatcher()
|
||||||
End Sub
|
End Sub
|
||||||
|
|
||||||
Private Sub SyncGameSettings()
|
Private Sub SyncGameSettings()
|
||||||
'Sync Monitor List
|
'Sync Monitor List
|
||||||
If oSettings.Sync Then mgrMonitorList.SyncMonitorLists(oSettings.SyncFields, False)
|
mgrMonitorList.SyncMonitorLists(oSettings.SyncFields, False)
|
||||||
|
End Sub
|
||||||
|
|
||||||
|
Private Sub SyncGameIDs(ByVal bOfficial As Boolean)
|
||||||
|
Dim sLocation As String
|
||||||
|
|
||||||
|
PauseScan()
|
||||||
|
|
||||||
|
If mgrCommon.IsUnix Then
|
||||||
|
sLocation = App_URLImportLinux
|
||||||
|
Else
|
||||||
|
sLocation = App_URLImport
|
||||||
|
End If
|
||||||
|
|
||||||
|
If bOfficial Then
|
||||||
|
mgrMonitorList.SyncGameIDs(sLocation, oSettings, True)
|
||||||
|
Else
|
||||||
|
sLocation = mgrCommon.OpenFileBrowser("XML_Import", frmGameManager_ChooseImportXML, "xml", frmGameManager_XML, Environment.GetFolderPath(Environment.SpecialFolder.MyDocuments), False)
|
||||||
|
|
||||||
|
If sLocation <> String.Empty Then
|
||||||
|
mgrMonitorList.SyncGameIDs(sLocation, oSettings, False)
|
||||||
|
End If
|
||||||
|
End If
|
||||||
|
|
||||||
|
ResumeScan()
|
||||||
End Sub
|
End Sub
|
||||||
|
|
||||||
Private Sub LocalDatabaseCheck()
|
Private Sub LocalDatabaseCheck()
|
||||||
@@ -999,6 +1030,13 @@ Public Class frmMain
|
|||||||
oRemoteDatabase.DatabaseUpgrade()
|
oRemoteDatabase.DatabaseUpgrade()
|
||||||
End Sub
|
End Sub
|
||||||
|
|
||||||
|
Private Sub BackupDatabases()
|
||||||
|
Dim oLocalDatabase As New mgrSQLite(mgrSQLite.Database.Local)
|
||||||
|
Dim oRemoteDatabase As New mgrSQLite(mgrSQLite.Database.Remote)
|
||||||
|
oLocalDatabase.BackupDB(App_BackupOnLaunchFileDescription, True)
|
||||||
|
oRemoteDatabase.BackupDB(App_BackupOnLaunchFileDescription, True)
|
||||||
|
End Sub
|
||||||
|
|
||||||
Private Sub LoadAndVerify()
|
Private Sub LoadAndVerify()
|
||||||
|
|
||||||
'If the default utility is missing we cannot continue
|
'If the default utility is missing we cannot continue
|
||||||
@@ -1028,6 +1066,11 @@ Public Class frmMain
|
|||||||
VerifyDBVersion(mgrSQLite.Database.Remote)
|
VerifyDBVersion(mgrSQLite.Database.Remote)
|
||||||
RemoteDatabaseCheck()
|
RemoteDatabaseCheck()
|
||||||
|
|
||||||
|
'Backup GBM data
|
||||||
|
If oSettings.BackupOnLaunch Then
|
||||||
|
BackupDatabases()
|
||||||
|
End If
|
||||||
|
|
||||||
'Sync Game Settings
|
'Sync Game Settings
|
||||||
SyncGameSettings()
|
SyncGameSettings()
|
||||||
End If
|
End If
|
||||||
@@ -1346,11 +1389,14 @@ Public Class frmMain
|
|||||||
gMonSetupAddWizard.Text = frmMain_gMonSetupAddWizard
|
gMonSetupAddWizard.Text = frmMain_gMonSetupAddWizard
|
||||||
gMonSetupCustomVariables.Text = frmMain_gMonSetupCustomVariables
|
gMonSetupCustomVariables.Text = frmMain_gMonSetupCustomVariables
|
||||||
gMonSetupTags.Text = frmMain_gMonSetupTags
|
gMonSetupTags.Text = frmMain_gMonSetupTags
|
||||||
|
gMonSetupProcessManager.Text = frmMain_gMonSetupProcessManager
|
||||||
gMonTools.Text = frmMain_gMonTools
|
gMonTools.Text = frmMain_gMonTools
|
||||||
gMonToolsCleanMan.Text = frmMain_gMonToolsCleanMan
|
|
||||||
gMonToolsCompact.Text = frmMain_gMonToolsCompact
|
gMonToolsCompact.Text = frmMain_gMonToolsCompact
|
||||||
gMonToolsLog.Text = frmMain_gMonToolsLog
|
gMonToolsLog.Text = frmMain_gMonToolsLog
|
||||||
gMonToolsSessions.Text = frmMain_gMonToolsSessions
|
gMonToolsSessions.Text = frmMain_gMonToolsSessions
|
||||||
|
gMonToolsSyncGameID.Text = frmMain_gMonToolsSyncGameID
|
||||||
|
gMonToolsSyncGameIDOfficial.Text = frmMain_gMonToolsSyncGameIDOfficial
|
||||||
|
gMonToolsSyncGameIDFile.Text = frmMain_gMonToolsSyncGameIDFile
|
||||||
gMonLogClear.Text = frmMain_gMonLogClear
|
gMonLogClear.Text = frmMain_gMonLogClear
|
||||||
gMonLogSave.Text = frmMain_gMonLogSave
|
gMonLogSave.Text = frmMain_gMonLogSave
|
||||||
gMonHelp.Text = frmMain_gMonHelp
|
gMonHelp.Text = frmMain_gMonHelp
|
||||||
@@ -1368,11 +1414,14 @@ Public Class frmMain
|
|||||||
gMonTraySetupAddWizard.Text = frmMain_gMonSetupAddWizard
|
gMonTraySetupAddWizard.Text = frmMain_gMonSetupAddWizard
|
||||||
gMonTraySetupCustomVariables.Text = frmMain_gMonSetupCustomVariables
|
gMonTraySetupCustomVariables.Text = frmMain_gMonSetupCustomVariables
|
||||||
gMonTraySetupTags.Text = frmMain_gMonSetupTags
|
gMonTraySetupTags.Text = frmMain_gMonSetupTags
|
||||||
|
gMonTraySetupProcessManager.Text = frmMain_gMonSetupProcessManager
|
||||||
gMonTrayTools.Text = frmMain_gMonTools
|
gMonTrayTools.Text = frmMain_gMonTools
|
||||||
gMonTrayToolsCleanMan.Text = frmMain_gMonToolsCleanMan
|
|
||||||
gMonTrayToolsCompact.Text = frmMain_gMonToolsCompact
|
gMonTrayToolsCompact.Text = frmMain_gMonToolsCompact
|
||||||
gMonTrayToolsLog.Text = frmMain_gMonToolsLog
|
gMonTrayToolsLog.Text = frmMain_gMonToolsLog
|
||||||
gMonTrayToolsSessions.Text = frmMain_gMonToolsSessions
|
gMonTrayToolsSessions.Text = frmMain_gMonToolsSessions
|
||||||
|
gMonTrayToolsSyncGameID.Text = frmMain_gMonToolsSyncGameID
|
||||||
|
gMonTrayToolsSyncGameIDOfficial.Text = frmMain_gMonToolsSyncGameIDOfficial
|
||||||
|
gMonTrayToolsSyncGameIDFile.Text = frmMain_gMonToolsSyncGameIDFile
|
||||||
gMonTrayLogClear.Text = frmMain_gMonLogClear
|
gMonTrayLogClear.Text = frmMain_gMonLogClear
|
||||||
gMonTrayLogSave.Text = frmMain_gMonLogSave
|
gMonTrayLogSave.Text = frmMain_gMonLogSave
|
||||||
gMonTrayExit.Text = frmMain_gMonFileExit
|
gMonTrayExit.Text = frmMain_gMonFileExit
|
||||||
@@ -1400,6 +1449,67 @@ Public Class frmMain
|
|||||||
ResetGameInfo()
|
ResetGameInfo()
|
||||||
End Sub
|
End Sub
|
||||||
|
|
||||||
|
Private Function BuildChildProcesses() As Integer
|
||||||
|
Dim oCurrentProcess As clsProcess
|
||||||
|
Dim oProcessList As Hashtable
|
||||||
|
Dim prsChild As Process
|
||||||
|
|
||||||
|
oChildProcesses.Clear()
|
||||||
|
|
||||||
|
oProcessList = mgrGameProcesses.GetProcessesByGame(oProcess.GameInfo.ID)
|
||||||
|
|
||||||
|
If oProcessList.Count > 0 Then
|
||||||
|
For Each oCurrentProcess In oProcessList.Values
|
||||||
|
prsChild = New Process
|
||||||
|
prsChild.StartInfo.Arguments = oCurrentProcess.Args
|
||||||
|
prsChild.StartInfo.FileName = oCurrentProcess.Path
|
||||||
|
prsChild.StartInfo.UseShellExecute = False
|
||||||
|
prsChild.StartInfo.RedirectStandardOutput = True
|
||||||
|
prsChild.StartInfo.CreateNoWindow = True
|
||||||
|
oChildProcesses.Add(oCurrentProcess, prsChild)
|
||||||
|
Next
|
||||||
|
End If
|
||||||
|
|
||||||
|
Return oChildProcesses.Count
|
||||||
|
End Function
|
||||||
|
|
||||||
|
Private Sub StartChildProcesses()
|
||||||
|
Dim oCurrentProcess As clsProcess
|
||||||
|
Dim prsChild As Process
|
||||||
|
|
||||||
|
Try
|
||||||
|
For Each de As DictionaryEntry In oChildProcesses
|
||||||
|
oCurrentProcess = DirectCast(de.Key, clsProcess)
|
||||||
|
prsChild = DirectCast(de.Value, Process)
|
||||||
|
prsChild.Start()
|
||||||
|
UpdateLog(mgrCommon.FormatString(frmMain_ProcessStarted, oCurrentProcess.Name), False)
|
||||||
|
Next
|
||||||
|
Catch ex As Exception
|
||||||
|
UpdateLog(mgrCommon.FormatString(frmMain_ErrorStartChildProcess, oProcess.GameInfo.CroppedName), True, ToolTipIcon.Error)
|
||||||
|
UpdateLog(mgrCommon.FormatString(App_GenericError, ex.Message), False,, False)
|
||||||
|
End Try
|
||||||
|
End Sub
|
||||||
|
|
||||||
|
Private Sub EndChildProcesses()
|
||||||
|
Dim oCurrentProcess As clsProcess
|
||||||
|
Dim prsChild As Process
|
||||||
|
|
||||||
|
Try
|
||||||
|
For Each de As DictionaryEntry In oChildProcesses
|
||||||
|
oCurrentProcess = DirectCast(de.Key, clsProcess)
|
||||||
|
prsChild = DirectCast(de.Value, Process)
|
||||||
|
If oCurrentProcess.Kill Then
|
||||||
|
prsChild.Kill()
|
||||||
|
UpdateLog(mgrCommon.FormatString(frmMain_ProcessKilled, oCurrentProcess.Name), False)
|
||||||
|
End If
|
||||||
|
Next
|
||||||
|
|
||||||
|
Catch ex As Exception
|
||||||
|
UpdateLog(mgrCommon.FormatString(frmMain_ErrorEndChildProcess, oProcess.GameInfo.CroppedName), True, ToolTipIcon.Error)
|
||||||
|
UpdateLog(mgrCommon.FormatString(App_GenericError, ex.Message), False,, False)
|
||||||
|
End Try
|
||||||
|
End Sub
|
||||||
|
|
||||||
'Functions that control the scanning for games
|
'Functions that control the scanning for games
|
||||||
Private Sub StartScan()
|
Private Sub StartScan()
|
||||||
tmScanTimer.Interval = 5000
|
tmScanTimer.Interval = 5000
|
||||||
@@ -1477,7 +1587,7 @@ Public Class frmMain
|
|||||||
oSettings.BackupFolder = sBackupPath
|
oSettings.BackupFolder = sBackupPath
|
||||||
oSettings.SaveSettings()
|
oSettings.SaveSettings()
|
||||||
oSettings.LoadSettings()
|
oSettings.LoadSettings()
|
||||||
If oSettings.Sync Then mgrMonitorList.HandleBackupLocationChange(oSettings)
|
mgrMonitorList.HandleBackupLocationChange(oSettings)
|
||||||
End If
|
End If
|
||||||
Return True
|
Return True
|
||||||
Else
|
Else
|
||||||
@@ -1576,29 +1686,6 @@ Public Class frmMain
|
|||||||
End If
|
End If
|
||||||
End Sub
|
End Sub
|
||||||
|
|
||||||
Private Sub CleanLocalManifest()
|
|
||||||
Dim slItems As SortedList
|
|
||||||
|
|
||||||
PauseScan()
|
|
||||||
|
|
||||||
If mgrCommon.ShowMessage(frmMain_ConfirmManifestClean, MsgBoxStyle.YesNo) = MsgBoxResult.Yes Then
|
|
||||||
|
|
||||||
slItems = mgrRestore.SyncLocalManifest()
|
|
||||||
|
|
||||||
If slItems.Count > 0 Then
|
|
||||||
For Each oItem As clsBackup In slItems.Values
|
|
||||||
UpdateLog(mgrCommon.FormatString(frmMain_ManifestRemovedEntry, oItem.Name), False)
|
|
||||||
Next
|
|
||||||
mgrCommon.ShowMessage(frmMain_ManifestTotalRemoved, slItems.Count, MsgBoxStyle.Information)
|
|
||||||
Else
|
|
||||||
mgrCommon.ShowMessage(frmMain_ManifestAreadyClean, MsgBoxStyle.Information)
|
|
||||||
End If
|
|
||||||
End If
|
|
||||||
|
|
||||||
ResumeScan()
|
|
||||||
|
|
||||||
End Sub
|
|
||||||
|
|
||||||
Private Sub CompactDatabases()
|
Private Sub CompactDatabases()
|
||||||
Dim oLocalDatabase As mgrSQLite
|
Dim oLocalDatabase As mgrSQLite
|
||||||
Dim oRemoteDatabase As mgrSQLite
|
Dim oRemoteDatabase As mgrSQLite
|
||||||
@@ -1652,10 +1739,6 @@ Public Class frmMain
|
|||||||
OpenGameManager()
|
OpenGameManager()
|
||||||
End Sub
|
End Sub
|
||||||
|
|
||||||
Private Sub gMonToolsSync_Click(sender As Object, e As EventArgs) Handles gMonTrayToolsCleanMan.Click, gMonToolsCleanMan.Click
|
|
||||||
CleanLocalManifest()
|
|
||||||
End Sub
|
|
||||||
|
|
||||||
Private Sub gMonToolsCompact_Click(sender As Object, e As EventArgs) Handles gMonToolsCompact.Click, gMonTrayToolsCompact.Click
|
Private Sub gMonToolsCompact_Click(sender As Object, e As EventArgs) Handles gMonToolsCompact.Click, gMonTrayToolsCompact.Click
|
||||||
CompactDatabases()
|
CompactDatabases()
|
||||||
End Sub
|
End Sub
|
||||||
@@ -1672,6 +1755,10 @@ Public Class frmMain
|
|||||||
OpenTags()
|
OpenTags()
|
||||||
End Sub
|
End Sub
|
||||||
|
|
||||||
|
Private Sub gMonSetupProcessManager_Click(sender As Object, e As EventArgs) Handles gMonSetupProcessManager.Click, gMonTraySetupProcessManager.Click
|
||||||
|
OpenProcessManager()
|
||||||
|
End Sub
|
||||||
|
|
||||||
Private Sub gMonHelpAbout_Click(sender As Object, e As EventArgs) Handles gMonHelpAbout.Click
|
Private Sub gMonHelpAbout_Click(sender As Object, e As EventArgs) Handles gMonHelpAbout.Click
|
||||||
OpenAbout()
|
OpenAbout()
|
||||||
End Sub
|
End Sub
|
||||||
@@ -1700,6 +1787,14 @@ Public Class frmMain
|
|||||||
OpenSessions()
|
OpenSessions()
|
||||||
End Sub
|
End Sub
|
||||||
|
|
||||||
|
Private Sub gMonToolsSyncGameIDOfficial_Click(sender As Object, e As EventArgs) Handles gMonToolsSyncGameIDOfficial.Click, gMonTrayToolsSyncGameIDOfficial.Click
|
||||||
|
SyncGameIDs(True)
|
||||||
|
End Sub
|
||||||
|
|
||||||
|
Private Sub gMonToolsSyncGameIDFile_Click(sender As Object, e As EventArgs) Handles gMonToolsSyncGameIDFile.Click, gMonTrayToolsSyncGameIDFile.Click
|
||||||
|
SyncGameIDs(False)
|
||||||
|
End Sub
|
||||||
|
|
||||||
Private Sub gMonNotification_Click(sender As Object, e As EventArgs) Handles gMonNotification.Click, gMonTrayNotification.Click
|
Private Sub gMonNotification_Click(sender As Object, e As EventArgs) Handles gMonNotification.Click, gMonTrayNotification.Click
|
||||||
gMonNotification.Visible = False
|
gMonNotification.Visible = False
|
||||||
gMonTrayNotification.Visible = False
|
gMonTrayNotification.Visible = False
|
||||||
@@ -1806,6 +1901,11 @@ Public Class frmMain
|
|||||||
UpdateStatus(mgrCommon.FormatString(frmMain_GameDetected, oProcess.GameInfo.CroppedName))
|
UpdateStatus(mgrCommon.FormatString(frmMain_GameDetected, oProcess.GameInfo.CroppedName))
|
||||||
SetGameInfo()
|
SetGameInfo()
|
||||||
End If
|
End If
|
||||||
|
|
||||||
|
If BuildChildProcesses() > 0 And Not oProcess.Duplicate Then
|
||||||
|
StartChildProcesses()
|
||||||
|
End If
|
||||||
|
|
||||||
oProcess.StartTime = Now
|
oProcess.StartTime = Now
|
||||||
bwMonitor.RunWorkerAsync()
|
bwMonitor.RunWorkerAsync()
|
||||||
Else
|
Else
|
||||||
@@ -1831,6 +1931,11 @@ Public Class frmMain
|
|||||||
|
|
||||||
Private Sub bwMain_RunWorkerCompleted(sender As System.Object, e As System.ComponentModel.RunWorkerCompletedEventArgs) Handles bwMonitor.RunWorkerCompleted
|
Private Sub bwMain_RunWorkerCompleted(sender As System.Object, e As System.ComponentModel.RunWorkerCompletedEventArgs) Handles bwMonitor.RunWorkerCompleted
|
||||||
Dim bContinue As Boolean = True
|
Dim bContinue As Boolean = True
|
||||||
|
|
||||||
|
If oChildProcesses.Count > 0 And Not oProcess.Duplicate Then
|
||||||
|
EndChildProcesses()
|
||||||
|
End If
|
||||||
|
|
||||||
oProcess.EndTime = Now
|
oProcess.EndTime = Now
|
||||||
|
|
||||||
If Not bCancelledByUser Then
|
If Not bCancelledByUser Then
|
||||||
@@ -1936,5 +2041,4 @@ Public Class frmMain
|
|||||||
'Move focus to first label
|
'Move focus to first label
|
||||||
lblGameTitle.Focus()
|
lblGameTitle.Focus()
|
||||||
End Sub
|
End Sub
|
||||||
|
|
||||||
End Class
|
End Class
|
||||||
Generated
+241
@@ -0,0 +1,241 @@
|
|||||||
|
<Global.Microsoft.VisualBasic.CompilerServices.DesignerGenerated()> _
|
||||||
|
Partial Class frmProcessManager
|
||||||
|
Inherits System.Windows.Forms.Form
|
||||||
|
|
||||||
|
'Form overrides dispose to clean up the component list.
|
||||||
|
<System.Diagnostics.DebuggerNonUserCode()> _
|
||||||
|
Protected Overrides Sub Dispose(ByVal disposing As Boolean)
|
||||||
|
Try
|
||||||
|
If disposing AndAlso components IsNot Nothing Then
|
||||||
|
components.Dispose()
|
||||||
|
End If
|
||||||
|
Finally
|
||||||
|
MyBase.Dispose(disposing)
|
||||||
|
End Try
|
||||||
|
End Sub
|
||||||
|
|
||||||
|
'Required by the Windows Form Designer
|
||||||
|
Private components As System.ComponentModel.IContainer
|
||||||
|
|
||||||
|
'NOTE: The following procedure is required by the Windows Form Designer
|
||||||
|
'It can be modified using the Windows Form Designer.
|
||||||
|
'Do not modify it using the code editor.
|
||||||
|
<System.Diagnostics.DebuggerStepThrough()> _
|
||||||
|
Private Sub InitializeComponent()
|
||||||
|
Me.grpProcess = New System.Windows.Forms.GroupBox()
|
||||||
|
Me.chkKillProcess = New System.Windows.Forms.CheckBox()
|
||||||
|
Me.txtArguments = New System.Windows.Forms.TextBox()
|
||||||
|
Me.lblArguments = New System.Windows.Forms.Label()
|
||||||
|
Me.btnProcessBrowse = New System.Windows.Forms.Button()
|
||||||
|
Me.txtName = New System.Windows.Forms.TextBox()
|
||||||
|
Me.txtPath = New System.Windows.Forms.TextBox()
|
||||||
|
Me.lblProcess = New System.Windows.Forms.Label()
|
||||||
|
Me.lblName = New System.Windows.Forms.Label()
|
||||||
|
Me.btnClose = New System.Windows.Forms.Button()
|
||||||
|
Me.btnDelete = New System.Windows.Forms.Button()
|
||||||
|
Me.btnAdd = New System.Windows.Forms.Button()
|
||||||
|
Me.lstProcesses = New System.Windows.Forms.ListBox()
|
||||||
|
Me.txtID = New System.Windows.Forms.TextBox()
|
||||||
|
Me.btnCancel = New System.Windows.Forms.Button()
|
||||||
|
Me.btnSave = New System.Windows.Forms.Button()
|
||||||
|
Me.grpProcess.SuspendLayout()
|
||||||
|
Me.SuspendLayout()
|
||||||
|
'
|
||||||
|
'grpProcess
|
||||||
|
'
|
||||||
|
Me.grpProcess.Controls.Add(Me.chkKillProcess)
|
||||||
|
Me.grpProcess.Controls.Add(Me.txtArguments)
|
||||||
|
Me.grpProcess.Controls.Add(Me.lblArguments)
|
||||||
|
Me.grpProcess.Controls.Add(Me.btnProcessBrowse)
|
||||||
|
Me.grpProcess.Controls.Add(Me.txtName)
|
||||||
|
Me.grpProcess.Controls.Add(Me.txtPath)
|
||||||
|
Me.grpProcess.Controls.Add(Me.lblProcess)
|
||||||
|
Me.grpProcess.Controls.Add(Me.lblName)
|
||||||
|
Me.grpProcess.Location = New System.Drawing.Point(238, 12)
|
||||||
|
Me.grpProcess.Name = "grpProcess"
|
||||||
|
Me.grpProcess.Size = New System.Drawing.Size(334, 120)
|
||||||
|
Me.grpProcess.TabIndex = 3
|
||||||
|
Me.grpProcess.TabStop = False
|
||||||
|
Me.grpProcess.Text = "Configuration"
|
||||||
|
'
|
||||||
|
'chkKillProcess
|
||||||
|
'
|
||||||
|
Me.chkKillProcess.AutoSize = True
|
||||||
|
Me.chkKillProcess.Location = New System.Drawing.Point(72, 96)
|
||||||
|
Me.chkKillProcess.Name = "chkKillProcess"
|
||||||
|
Me.chkKillProcess.Size = New System.Drawing.Size(181, 17)
|
||||||
|
Me.chkKillProcess.TabIndex = 4
|
||||||
|
Me.chkKillProcess.Text = "Kill process when game is closed"
|
||||||
|
Me.chkKillProcess.UseVisualStyleBackColor = True
|
||||||
|
'
|
||||||
|
'txtArguments
|
||||||
|
'
|
||||||
|
Me.txtArguments.Location = New System.Drawing.Point(72, 70)
|
||||||
|
Me.txtArguments.Name = "txtArguments"
|
||||||
|
Me.txtArguments.Size = New System.Drawing.Size(256, 20)
|
||||||
|
Me.txtArguments.TabIndex = 3
|
||||||
|
'
|
||||||
|
'lblArguments
|
||||||
|
'
|
||||||
|
Me.lblArguments.AutoSize = True
|
||||||
|
Me.lblArguments.Location = New System.Drawing.Point(6, 73)
|
||||||
|
Me.lblArguments.Name = "lblArguments"
|
||||||
|
Me.lblArguments.Size = New System.Drawing.Size(60, 13)
|
||||||
|
Me.lblArguments.TabIndex = 0
|
||||||
|
Me.lblArguments.Text = "Arguments:"
|
||||||
|
'
|
||||||
|
'btnProcessBrowse
|
||||||
|
'
|
||||||
|
Me.btnProcessBrowse.Location = New System.Drawing.Point(298, 45)
|
||||||
|
Me.btnProcessBrowse.Name = "btnProcessBrowse"
|
||||||
|
Me.btnProcessBrowse.Size = New System.Drawing.Size(30, 20)
|
||||||
|
Me.btnProcessBrowse.TabIndex = 2
|
||||||
|
Me.btnProcessBrowse.Text = "..."
|
||||||
|
Me.btnProcessBrowse.UseVisualStyleBackColor = True
|
||||||
|
'
|
||||||
|
'txtName
|
||||||
|
'
|
||||||
|
Me.txtName.Location = New System.Drawing.Point(72, 19)
|
||||||
|
Me.txtName.Name = "txtName"
|
||||||
|
Me.txtName.Size = New System.Drawing.Size(256, 20)
|
||||||
|
Me.txtName.TabIndex = 0
|
||||||
|
'
|
||||||
|
'txtPath
|
||||||
|
'
|
||||||
|
Me.txtPath.Location = New System.Drawing.Point(72, 45)
|
||||||
|
Me.txtPath.Name = "txtPath"
|
||||||
|
Me.txtPath.Size = New System.Drawing.Size(220, 20)
|
||||||
|
Me.txtPath.TabIndex = 1
|
||||||
|
'
|
||||||
|
'lblProcess
|
||||||
|
'
|
||||||
|
Me.lblProcess.AutoSize = True
|
||||||
|
Me.lblProcess.Location = New System.Drawing.Point(6, 48)
|
||||||
|
Me.lblProcess.Name = "lblProcess"
|
||||||
|
Me.lblProcess.Size = New System.Drawing.Size(48, 13)
|
||||||
|
Me.lblProcess.TabIndex = 0
|
||||||
|
Me.lblProcess.Text = "Process:"
|
||||||
|
'
|
||||||
|
'lblName
|
||||||
|
'
|
||||||
|
Me.lblName.AutoSize = True
|
||||||
|
Me.lblName.Location = New System.Drawing.Point(6, 22)
|
||||||
|
Me.lblName.Name = "lblName"
|
||||||
|
Me.lblName.Size = New System.Drawing.Size(38, 13)
|
||||||
|
Me.lblName.TabIndex = 0
|
||||||
|
Me.lblName.Text = "Name:"
|
||||||
|
'
|
||||||
|
'btnClose
|
||||||
|
'
|
||||||
|
Me.btnClose.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
|
||||||
|
Me.btnClose.Location = New System.Drawing.Point(497, 226)
|
||||||
|
Me.btnClose.Name = "btnClose"
|
||||||
|
Me.btnClose.Size = New System.Drawing.Size(75, 23)
|
||||||
|
Me.btnClose.TabIndex = 6
|
||||||
|
Me.btnClose.Text = "C&lose"
|
||||||
|
Me.btnClose.UseVisualStyleBackColor = True
|
||||||
|
'
|
||||||
|
'btnDelete
|
||||||
|
'
|
||||||
|
Me.btnDelete.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
|
||||||
|
Me.btnDelete.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
|
||||||
|
Me.btnDelete.Location = New System.Drawing.Point(48, 226)
|
||||||
|
Me.btnDelete.Name = "btnDelete"
|
||||||
|
Me.btnDelete.Size = New System.Drawing.Size(30, 23)
|
||||||
|
Me.btnDelete.TabIndex = 2
|
||||||
|
Me.btnDelete.Text = "-"
|
||||||
|
Me.btnDelete.UseVisualStyleBackColor = True
|
||||||
|
'
|
||||||
|
'btnAdd
|
||||||
|
'
|
||||||
|
Me.btnAdd.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
|
||||||
|
Me.btnAdd.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
|
||||||
|
Me.btnAdd.Location = New System.Drawing.Point(12, 226)
|
||||||
|
Me.btnAdd.Name = "btnAdd"
|
||||||
|
Me.btnAdd.Size = New System.Drawing.Size(30, 23)
|
||||||
|
Me.btnAdd.TabIndex = 1
|
||||||
|
Me.btnAdd.Text = "+"
|
||||||
|
Me.btnAdd.UseVisualStyleBackColor = True
|
||||||
|
'
|
||||||
|
'lstProcesses
|
||||||
|
'
|
||||||
|
Me.lstProcesses.FormattingEnabled = True
|
||||||
|
Me.lstProcesses.Location = New System.Drawing.Point(12, 12)
|
||||||
|
Me.lstProcesses.Name = "lstProcesses"
|
||||||
|
Me.lstProcesses.Size = New System.Drawing.Size(220, 212)
|
||||||
|
Me.lstProcesses.Sorted = True
|
||||||
|
Me.lstProcesses.TabIndex = 0
|
||||||
|
'
|
||||||
|
'txtID
|
||||||
|
'
|
||||||
|
Me.txtID.Enabled = False
|
||||||
|
Me.txtID.Location = New System.Drawing.Point(374, 150)
|
||||||
|
Me.txtID.Name = "txtID"
|
||||||
|
Me.txtID.Size = New System.Drawing.Size(33, 20)
|
||||||
|
Me.txtID.TabIndex = 0
|
||||||
|
Me.txtID.TabStop = False
|
||||||
|
Me.txtID.Visible = False
|
||||||
|
'
|
||||||
|
'btnCancel
|
||||||
|
'
|
||||||
|
Me.btnCancel.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
|
||||||
|
Me.btnCancel.Location = New System.Drawing.Point(494, 149)
|
||||||
|
Me.btnCancel.Name = "btnCancel"
|
||||||
|
Me.btnCancel.Size = New System.Drawing.Size(75, 23)
|
||||||
|
Me.btnCancel.TabIndex = 5
|
||||||
|
Me.btnCancel.Text = "&Cancel"
|
||||||
|
Me.btnCancel.UseVisualStyleBackColor = True
|
||||||
|
'
|
||||||
|
'btnSave
|
||||||
|
'
|
||||||
|
Me.btnSave.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
|
||||||
|
Me.btnSave.Location = New System.Drawing.Point(413, 149)
|
||||||
|
Me.btnSave.Name = "btnSave"
|
||||||
|
Me.btnSave.Size = New System.Drawing.Size(75, 23)
|
||||||
|
Me.btnSave.TabIndex = 4
|
||||||
|
Me.btnSave.Text = "&Save"
|
||||||
|
Me.btnSave.UseVisualStyleBackColor = True
|
||||||
|
'
|
||||||
|
'frmProcessManager
|
||||||
|
'
|
||||||
|
Me.AutoScaleDimensions = New System.Drawing.SizeF(6.0!, 13.0!)
|
||||||
|
Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font
|
||||||
|
Me.ClientSize = New System.Drawing.Size(584, 261)
|
||||||
|
Me.Controls.Add(Me.grpProcess)
|
||||||
|
Me.Controls.Add(Me.btnClose)
|
||||||
|
Me.Controls.Add(Me.btnDelete)
|
||||||
|
Me.Controls.Add(Me.btnAdd)
|
||||||
|
Me.Controls.Add(Me.lstProcesses)
|
||||||
|
Me.Controls.Add(Me.txtID)
|
||||||
|
Me.Controls.Add(Me.btnCancel)
|
||||||
|
Me.Controls.Add(Me.btnSave)
|
||||||
|
Me.MaximizeBox = False
|
||||||
|
Me.MinimizeBox = False
|
||||||
|
Me.Name = "frmProcessManager"
|
||||||
|
Me.ShowIcon = False
|
||||||
|
Me.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen
|
||||||
|
Me.Text = "Process Manager"
|
||||||
|
Me.grpProcess.ResumeLayout(False)
|
||||||
|
Me.grpProcess.PerformLayout()
|
||||||
|
Me.ResumeLayout(False)
|
||||||
|
Me.PerformLayout()
|
||||||
|
|
||||||
|
End Sub
|
||||||
|
|
||||||
|
Friend WithEvents grpProcess As GroupBox
|
||||||
|
Friend WithEvents txtArguments As TextBox
|
||||||
|
Friend WithEvents lblArguments As Label
|
||||||
|
Friend WithEvents btnProcessBrowse As Button
|
||||||
|
Friend WithEvents txtName As TextBox
|
||||||
|
Friend WithEvents txtPath As TextBox
|
||||||
|
Friend WithEvents lblProcess As Label
|
||||||
|
Friend WithEvents lblName As Label
|
||||||
|
Friend WithEvents btnClose As Button
|
||||||
|
Friend WithEvents btnDelete As Button
|
||||||
|
Friend WithEvents btnAdd As Button
|
||||||
|
Friend WithEvents lstProcesses As ListBox
|
||||||
|
Friend WithEvents txtID As TextBox
|
||||||
|
Friend WithEvents btnCancel As Button
|
||||||
|
Friend WithEvents btnSave As Button
|
||||||
|
Friend WithEvents chkKillProcess As CheckBox
|
||||||
|
End Class
|
||||||
@@ -0,0 +1,120 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<root>
|
||||||
|
<!--
|
||||||
|
Microsoft ResX Schema
|
||||||
|
|
||||||
|
Version 2.0
|
||||||
|
|
||||||
|
The primary goals of this format is to allow a simple XML format
|
||||||
|
that is mostly human readable. The generation and parsing of the
|
||||||
|
various data types are done through the TypeConverter classes
|
||||||
|
associated with the data types.
|
||||||
|
|
||||||
|
Example:
|
||||||
|
|
||||||
|
... ado.net/XML headers & schema ...
|
||||||
|
<resheader name="resmimetype">text/microsoft-resx</resheader>
|
||||||
|
<resheader name="version">2.0</resheader>
|
||||||
|
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
|
||||||
|
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
|
||||||
|
<data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
|
||||||
|
<data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
|
||||||
|
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
|
||||||
|
<value>[base64 mime encoded serialized .NET Framework object]</value>
|
||||||
|
</data>
|
||||||
|
<data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||||
|
<value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
|
||||||
|
<comment>This is a comment</comment>
|
||||||
|
</data>
|
||||||
|
|
||||||
|
There are any number of "resheader" rows that contain simple
|
||||||
|
name/value pairs.
|
||||||
|
|
||||||
|
Each data row contains a name, and value. The row also contains a
|
||||||
|
type or mimetype. Type corresponds to a .NET class that support
|
||||||
|
text/value conversion through the TypeConverter architecture.
|
||||||
|
Classes that don't support this are serialized and stored with the
|
||||||
|
mimetype set.
|
||||||
|
|
||||||
|
The mimetype is used for serialized objects, and tells the
|
||||||
|
ResXResourceReader how to depersist the object. This is currently not
|
||||||
|
extensible. For a given mimetype the value must be set accordingly:
|
||||||
|
|
||||||
|
Note - application/x-microsoft.net.object.binary.base64 is the format
|
||||||
|
that the ResXResourceWriter will generate, however the reader can
|
||||||
|
read any of the formats listed below.
|
||||||
|
|
||||||
|
mimetype: application/x-microsoft.net.object.binary.base64
|
||||||
|
value : The object must be serialized with
|
||||||
|
: System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
|
||||||
|
: and then encoded with base64 encoding.
|
||||||
|
|
||||||
|
mimetype: application/x-microsoft.net.object.soap.base64
|
||||||
|
value : The object must be serialized with
|
||||||
|
: System.Runtime.Serialization.Formatters.Soap.SoapFormatter
|
||||||
|
: and then encoded with base64 encoding.
|
||||||
|
|
||||||
|
mimetype: application/x-microsoft.net.object.bytearray.base64
|
||||||
|
value : The object must be serialized into a byte array
|
||||||
|
: using a System.ComponentModel.TypeConverter
|
||||||
|
: and then encoded with base64 encoding.
|
||||||
|
-->
|
||||||
|
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
|
||||||
|
<xsd:import namespace="http://www.w3.org/XML/1998/namespace" />
|
||||||
|
<xsd:element name="root" msdata:IsDataSet="true">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:choice maxOccurs="unbounded">
|
||||||
|
<xsd:element name="metadata">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:sequence>
|
||||||
|
<xsd:element name="value" type="xsd:string" minOccurs="0" />
|
||||||
|
</xsd:sequence>
|
||||||
|
<xsd:attribute name="name" use="required" type="xsd:string" />
|
||||||
|
<xsd:attribute name="type" type="xsd:string" />
|
||||||
|
<xsd:attribute name="mimetype" type="xsd:string" />
|
||||||
|
<xsd:attribute ref="xml:space" />
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
<xsd:element name="assembly">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:attribute name="alias" type="xsd:string" />
|
||||||
|
<xsd:attribute name="name" type="xsd:string" />
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
<xsd:element name="data">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:sequence>
|
||||||
|
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
|
||||||
|
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
|
||||||
|
</xsd:sequence>
|
||||||
|
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" />
|
||||||
|
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
|
||||||
|
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
|
||||||
|
<xsd:attribute ref="xml:space" />
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
<xsd:element name="resheader">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:sequence>
|
||||||
|
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
|
||||||
|
</xsd:sequence>
|
||||||
|
<xsd:attribute name="name" type="xsd:string" use="required" />
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
</xsd:choice>
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
</xsd:schema>
|
||||||
|
<resheader name="resmimetype">
|
||||||
|
<value>text/microsoft-resx</value>
|
||||||
|
</resheader>
|
||||||
|
<resheader name="version">
|
||||||
|
<value>2.0</value>
|
||||||
|
</resheader>
|
||||||
|
<resheader name="reader">
|
||||||
|
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||||
|
</resheader>
|
||||||
|
<resheader name="writer">
|
||||||
|
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||||
|
</resheader>
|
||||||
|
</root>
|
||||||
@@ -0,0 +1,371 @@
|
|||||||
|
Imports GBM.My.Resources
|
||||||
|
Imports System.IO
|
||||||
|
|
||||||
|
Public Class frmProcessManager
|
||||||
|
Dim hshProcessData As Hashtable
|
||||||
|
Private bIsDirty As Boolean = False
|
||||||
|
Private bIsLoading As Boolean = False
|
||||||
|
Private oCurrentProcess As clsProcess
|
||||||
|
|
||||||
|
Private Property IsDirty As Boolean
|
||||||
|
Get
|
||||||
|
Return bIsDirty
|
||||||
|
End Get
|
||||||
|
Set(value As Boolean)
|
||||||
|
bIsDirty = value
|
||||||
|
End Set
|
||||||
|
End Property
|
||||||
|
|
||||||
|
Private Property IsLoading As Boolean
|
||||||
|
Get
|
||||||
|
Return bIsLoading
|
||||||
|
End Get
|
||||||
|
Set(value As Boolean)
|
||||||
|
bIsLoading = value
|
||||||
|
End Set
|
||||||
|
End Property
|
||||||
|
|
||||||
|
Private Enum eModes As Integer
|
||||||
|
View = 1
|
||||||
|
Edit = 2
|
||||||
|
Add = 3
|
||||||
|
Disabled = 4
|
||||||
|
End Enum
|
||||||
|
|
||||||
|
Private eCurrentMode As eModes = eModes.Disabled
|
||||||
|
|
||||||
|
Private Property ProcessData As Hashtable
|
||||||
|
Get
|
||||||
|
Return hshProcessData
|
||||||
|
End Get
|
||||||
|
Set(value As Hashtable)
|
||||||
|
hshProcessData = value
|
||||||
|
End Set
|
||||||
|
End Property
|
||||||
|
|
||||||
|
Private Sub ProcessBrowse()
|
||||||
|
Dim sDefaultFolder As String = Environment.GetFolderPath(Environment.SpecialFolder.Desktop)
|
||||||
|
Dim sCurrentPath As String = txtPath.Text
|
||||||
|
Dim sNewPath As String
|
||||||
|
|
||||||
|
If sCurrentPath <> String.Empty Then
|
||||||
|
sCurrentPath = Path.GetDirectoryName(txtPath.Text)
|
||||||
|
If Directory.Exists(sCurrentPath) Then
|
||||||
|
sDefaultFolder = sCurrentPath
|
||||||
|
End If
|
||||||
|
End If
|
||||||
|
|
||||||
|
sNewPath = mgrCommon.OpenFileBrowser("PM_Process", frmProcessManager_ChooseProcess, "exe",
|
||||||
|
frmProcessManager_Executable, sDefaultFolder, False, True)
|
||||||
|
|
||||||
|
If sNewPath <> String.Empty Then
|
||||||
|
txtPath.Text = sNewPath
|
||||||
|
End If
|
||||||
|
|
||||||
|
End Sub
|
||||||
|
|
||||||
|
Private Sub LoadData()
|
||||||
|
ProcessData = mgrProcess.ReadProcesses
|
||||||
|
lstProcesses.Items.Clear()
|
||||||
|
FormatAndFillList()
|
||||||
|
End Sub
|
||||||
|
|
||||||
|
Private Function HandleDirty() As MsgBoxResult
|
||||||
|
Dim oResult As MsgBoxResult
|
||||||
|
|
||||||
|
oResult = mgrCommon.ShowMessage(App_ConfirmDirty, MsgBoxStyle.YesNoCancel)
|
||||||
|
|
||||||
|
Select Case oResult
|
||||||
|
Case MsgBoxResult.Yes
|
||||||
|
IsDirty = False
|
||||||
|
Case MsgBoxResult.No
|
||||||
|
IsDirty = False
|
||||||
|
Case MsgBoxResult.Cancel
|
||||||
|
'No Change
|
||||||
|
End Select
|
||||||
|
|
||||||
|
Return oResult
|
||||||
|
|
||||||
|
End Function
|
||||||
|
|
||||||
|
Private Sub FormatAndFillList()
|
||||||
|
IsLoading = True
|
||||||
|
|
||||||
|
For Each oProcess As clsProcess In ProcessData.Values
|
||||||
|
lstProcesses.Items.Add(oProcess.Name)
|
||||||
|
Next
|
||||||
|
|
||||||
|
IsLoading = False
|
||||||
|
End Sub
|
||||||
|
|
||||||
|
Private Sub FillData()
|
||||||
|
IsLoading = True
|
||||||
|
|
||||||
|
oCurrentProcess = DirectCast(ProcessData(lstProcesses.SelectedItems(0).ToString), clsProcess)
|
||||||
|
|
||||||
|
txtID.Text = oCurrentProcess.ID
|
||||||
|
txtName.Text = oCurrentProcess.Name
|
||||||
|
txtPath.Text = oCurrentProcess.Path
|
||||||
|
txtArguments.Text = oCurrentProcess.Args
|
||||||
|
chkKillProcess.Checked = oCurrentProcess.Kill
|
||||||
|
|
||||||
|
IsLoading = False
|
||||||
|
End Sub
|
||||||
|
|
||||||
|
Private Sub DirtyCheck_ValueChanged(sender As Object, e As EventArgs)
|
||||||
|
If Not IsLoading Then
|
||||||
|
IsDirty = True
|
||||||
|
If Not eCurrentMode = eModes.Add Then EditProcess()
|
||||||
|
End If
|
||||||
|
End Sub
|
||||||
|
|
||||||
|
Private Sub AssignDirtyHandlers(ByVal oCtls As GroupBox.ControlCollection)
|
||||||
|
For Each ctl As Control In oCtls
|
||||||
|
If TypeOf ctl Is TextBox Then
|
||||||
|
AddHandler DirectCast(ctl, TextBox).TextChanged, AddressOf DirtyCheck_ValueChanged
|
||||||
|
End If
|
||||||
|
Next
|
||||||
|
End Sub
|
||||||
|
|
||||||
|
Private Sub WipeControls(ByVal oCtls As GroupBox.ControlCollection)
|
||||||
|
For Each ctl As Control In oCtls
|
||||||
|
If TypeOf ctl Is TextBox Then
|
||||||
|
DirectCast(ctl, TextBox).Text = String.Empty
|
||||||
|
End If
|
||||||
|
Next
|
||||||
|
txtID.Text = String.Empty
|
||||||
|
End Sub
|
||||||
|
|
||||||
|
Private Sub ModeChange()
|
||||||
|
IsLoading = True
|
||||||
|
|
||||||
|
Select Case eCurrentMode
|
||||||
|
Case eModes.Add
|
||||||
|
grpProcess.Enabled = True
|
||||||
|
WipeControls(grpProcess.Controls)
|
||||||
|
btnSave.Enabled = True
|
||||||
|
btnCancel.Enabled = True
|
||||||
|
btnAdd.Enabled = False
|
||||||
|
btnDelete.Enabled = False
|
||||||
|
lstProcesses.Enabled = False
|
||||||
|
chkKillProcess.Checked = True
|
||||||
|
Case eModes.Edit
|
||||||
|
lstProcesses.Enabled = False
|
||||||
|
grpProcess.Enabled = True
|
||||||
|
btnSave.Enabled = True
|
||||||
|
btnCancel.Enabled = True
|
||||||
|
btnAdd.Enabled = False
|
||||||
|
btnDelete.Enabled = False
|
||||||
|
Case eModes.View
|
||||||
|
lstProcesses.Enabled = True
|
||||||
|
grpProcess.Enabled = True
|
||||||
|
btnSave.Enabled = False
|
||||||
|
btnCancel.Enabled = False
|
||||||
|
btnAdd.Enabled = True
|
||||||
|
btnDelete.Enabled = True
|
||||||
|
Case eModes.Disabled
|
||||||
|
lstProcesses.Enabled = True
|
||||||
|
WipeControls(grpProcess.Controls)
|
||||||
|
grpProcess.Enabled = False
|
||||||
|
btnSave.Enabled = False
|
||||||
|
btnCancel.Enabled = False
|
||||||
|
btnAdd.Enabled = True
|
||||||
|
btnDelete.Enabled = True
|
||||||
|
End Select
|
||||||
|
|
||||||
|
IsLoading = False
|
||||||
|
End Sub
|
||||||
|
|
||||||
|
Private Sub EditProcess()
|
||||||
|
eCurrentMode = eModes.Edit
|
||||||
|
ModeChange()
|
||||||
|
End Sub
|
||||||
|
|
||||||
|
Private Sub AddProcess()
|
||||||
|
eCurrentMode = eModes.Add
|
||||||
|
ModeChange()
|
||||||
|
txtName.Focus()
|
||||||
|
End Sub
|
||||||
|
|
||||||
|
Private Sub CancelEdit()
|
||||||
|
If bIsDirty Then
|
||||||
|
Select Case HandleDirty()
|
||||||
|
Case MsgBoxResult.Yes
|
||||||
|
SaveProcess()
|
||||||
|
Case MsgBoxResult.No
|
||||||
|
If lstProcesses.SelectedItems.Count > 0 Then
|
||||||
|
eCurrentMode = eModes.View
|
||||||
|
ModeChange()
|
||||||
|
FillData()
|
||||||
|
lstProcesses.Focus()
|
||||||
|
Else
|
||||||
|
eCurrentMode = eModes.Disabled
|
||||||
|
ModeChange()
|
||||||
|
End If
|
||||||
|
Case MsgBoxResult.Cancel
|
||||||
|
'Do Nothing
|
||||||
|
End Select
|
||||||
|
Else
|
||||||
|
If lstProcesses.SelectedItems.Count > 0 Then
|
||||||
|
eCurrentMode = eModes.View
|
||||||
|
ModeChange()
|
||||||
|
FillData()
|
||||||
|
lstProcesses.Focus()
|
||||||
|
Else
|
||||||
|
eCurrentMode = eModes.Disabled
|
||||||
|
ModeChange()
|
||||||
|
End If
|
||||||
|
End If
|
||||||
|
End Sub
|
||||||
|
|
||||||
|
Private Sub SaveProcess()
|
||||||
|
Dim oProcess As New clsProcess
|
||||||
|
Dim bSuccess As Boolean = False
|
||||||
|
|
||||||
|
If txtID.Text <> String.Empty Then
|
||||||
|
oProcess.ID = txtID.Text
|
||||||
|
End If
|
||||||
|
oProcess.Name = txtName.Text
|
||||||
|
oProcess.Path = txtPath.Text
|
||||||
|
oProcess.Args = txtArguments.Text
|
||||||
|
oProcess.Kill = chkKillProcess.Checked
|
||||||
|
|
||||||
|
Select Case eCurrentMode
|
||||||
|
Case eModes.Add
|
||||||
|
If CoreValidatation(oProcess) Then
|
||||||
|
bSuccess = True
|
||||||
|
mgrProcess.DoProcessAdd(oProcess)
|
||||||
|
eCurrentMode = eModes.View
|
||||||
|
End If
|
||||||
|
Case eModes.Edit
|
||||||
|
If CoreValidatation(oProcess) Then
|
||||||
|
bSuccess = True
|
||||||
|
mgrProcess.DoProcessUpdate(oProcess)
|
||||||
|
eCurrentMode = eModes.View
|
||||||
|
End If
|
||||||
|
End Select
|
||||||
|
|
||||||
|
If bSuccess Then
|
||||||
|
IsDirty = False
|
||||||
|
LoadData()
|
||||||
|
ModeChange()
|
||||||
|
If eCurrentMode = eModes.View Then lstProcesses.SelectedIndex = lstProcesses.Items.IndexOf(oProcess.Name)
|
||||||
|
End If
|
||||||
|
End Sub
|
||||||
|
|
||||||
|
Private Sub DeleteProcess()
|
||||||
|
Dim oProcess As clsProcess
|
||||||
|
|
||||||
|
If lstProcesses.SelectedItems.Count > 0 Then
|
||||||
|
oProcess = DirectCast(ProcessData(lstProcesses.SelectedItems(0).ToString), clsProcess)
|
||||||
|
|
||||||
|
If mgrCommon.ShowMessage(frmProcessManager_ConfirmDelete, oProcess.Name, MsgBoxStyle.YesNo) = MsgBoxResult.Yes Then
|
||||||
|
mgrProcess.DoProcessDelete(oProcess.ID)
|
||||||
|
LoadData()
|
||||||
|
eCurrentMode = eModes.Disabled
|
||||||
|
ModeChange()
|
||||||
|
End If
|
||||||
|
End If
|
||||||
|
End Sub
|
||||||
|
|
||||||
|
Private Sub SwitchProcess()
|
||||||
|
If lstProcesses.SelectedItems.Count > 0 Then
|
||||||
|
eCurrentMode = eModes.View
|
||||||
|
FillData()
|
||||||
|
ModeChange()
|
||||||
|
End If
|
||||||
|
End Sub
|
||||||
|
|
||||||
|
Private Function CoreValidatation(ByVal oProcess As clsProcess) As Boolean
|
||||||
|
If txtName.Text.Trim = String.Empty Then
|
||||||
|
mgrCommon.ShowMessage(frmProcessManager_ErrorValidName, MsgBoxStyle.Exclamation)
|
||||||
|
txtName.Focus()
|
||||||
|
Return False
|
||||||
|
End If
|
||||||
|
|
||||||
|
If txtPath.Text.Trim = String.Empty Then
|
||||||
|
mgrCommon.ShowMessage(frmProcessManager_ErrorValidPath, MsgBoxStyle.Exclamation)
|
||||||
|
txtPath.Focus()
|
||||||
|
Return False
|
||||||
|
Else
|
||||||
|
If Not File.Exists(txtPath.Text.Trim) Then
|
||||||
|
mgrCommon.ShowMessage(frmProcessManager_ErrorPathNotFound, MsgBoxStyle.Exclamation)
|
||||||
|
txtPath.Focus()
|
||||||
|
Return False
|
||||||
|
End If
|
||||||
|
End If
|
||||||
|
|
||||||
|
If mgrProcess.DoCheckDuplicate(oProcess.Name, oProcess.ID) Then
|
||||||
|
mgrCommon.ShowMessage(frmProcessManager_ErrorDupe, MsgBoxStyle.Exclamation)
|
||||||
|
txtName.Focus()
|
||||||
|
Return False
|
||||||
|
End If
|
||||||
|
|
||||||
|
Return True
|
||||||
|
End Function
|
||||||
|
|
||||||
|
Private Sub SetForm()
|
||||||
|
'Set Form Name
|
||||||
|
Me.Text = frmProcessManager_FormName
|
||||||
|
|
||||||
|
'Set Form Text
|
||||||
|
btnCancel.Text = frmProcessManager_btnCancel
|
||||||
|
btnSave.Text = frmProcessManager_btnSave
|
||||||
|
grpProcess.Text = frmProcessManager_grpProcess
|
||||||
|
btnProcessBrowse.Text = frmProcessManager_btnProcessBrowse
|
||||||
|
lblProcess.Text = frmProcessManager_lblPath
|
||||||
|
lblName.Text = frmProcessManager_lblName
|
||||||
|
btnClose.Text = frmProcessManager_btnClose
|
||||||
|
btnDelete.Text = frmProcessManager_btnDelete
|
||||||
|
btnAdd.Text = frmProcessManager_btnAdd
|
||||||
|
chkKillProcess.Text = frmProcessManager_chkKillProcess
|
||||||
|
End Sub
|
||||||
|
|
||||||
|
Private Sub frmProcessManager_Load(sender As Object, e As EventArgs) Handles MyBase.Load
|
||||||
|
SetForm()
|
||||||
|
LoadData()
|
||||||
|
ModeChange()
|
||||||
|
AssignDirtyHandlers(grpProcess.Controls)
|
||||||
|
End Sub
|
||||||
|
|
||||||
|
Private Sub lstProcesses_SelectedIndexChanged(sender As Object, e As EventArgs) Handles lstProcesses.SelectedIndexChanged
|
||||||
|
SwitchProcess()
|
||||||
|
End Sub
|
||||||
|
|
||||||
|
Private Sub btnAdd_Click(sender As Object, e As EventArgs) Handles btnAdd.Click
|
||||||
|
AddProcess()
|
||||||
|
End Sub
|
||||||
|
|
||||||
|
Private Sub btnDelete_Click(sender As Object, e As EventArgs) Handles btnDelete.Click
|
||||||
|
DeleteProcess()
|
||||||
|
End Sub
|
||||||
|
|
||||||
|
Private Sub btnSave_Click(sender As Object, e As EventArgs) Handles btnSave.Click
|
||||||
|
SaveProcess()
|
||||||
|
End Sub
|
||||||
|
|
||||||
|
Private Sub btnCancel_Click(sender As Object, e As EventArgs) Handles btnCancel.Click
|
||||||
|
CancelEdit()
|
||||||
|
End Sub
|
||||||
|
|
||||||
|
Private Sub btnClose_Click(sender As Object, e As EventArgs) Handles btnClose.Click
|
||||||
|
Me.Close()
|
||||||
|
End Sub
|
||||||
|
|
||||||
|
Private Sub btnPathBrowse_Click(sender As Object, e As EventArgs) Handles btnProcessBrowse.Click
|
||||||
|
ProcessBrowse()
|
||||||
|
End Sub
|
||||||
|
|
||||||
|
Private Sub frmProcessManager_FormClosing(sender As Object, e As FormClosingEventArgs) Handles MyBase.FormClosing
|
||||||
|
If bIsDirty Then
|
||||||
|
Select Case HandleDirty()
|
||||||
|
Case MsgBoxResult.Yes
|
||||||
|
SaveProcess()
|
||||||
|
Case MsgBoxResult.No
|
||||||
|
'Do Nothing
|
||||||
|
Case MsgBoxResult.Cancel
|
||||||
|
e.Cancel = True
|
||||||
|
End Select
|
||||||
|
End If
|
||||||
|
End Sub
|
||||||
|
End Class
|
||||||
Generated
+63
-38
@@ -24,14 +24,15 @@ Partial Class frmSettings
|
|||||||
Private Sub InitializeComponent()
|
Private Sub InitializeComponent()
|
||||||
Me.chkMonitorOnStartup = New System.Windows.Forms.CheckBox()
|
Me.chkMonitorOnStartup = New System.Windows.Forms.CheckBox()
|
||||||
Me.grpStartup = New System.Windows.Forms.GroupBox()
|
Me.grpStartup = New System.Windows.Forms.GroupBox()
|
||||||
|
Me.chkBackupOnLaunch = New System.Windows.Forms.CheckBox()
|
||||||
Me.chkStartWindows = New System.Windows.Forms.CheckBox()
|
Me.chkStartWindows = New System.Windows.Forms.CheckBox()
|
||||||
Me.chkStartToTray = New System.Windows.Forms.CheckBox()
|
Me.chkStartToTray = New System.Windows.Forms.CheckBox()
|
||||||
Me.chkAutoSaveLog = New System.Windows.Forms.CheckBox()
|
Me.chkAutoSaveLog = New System.Windows.Forms.CheckBox()
|
||||||
Me.btnOptionalFields = New System.Windows.Forms.Button()
|
Me.btnOptionalFields = New System.Windows.Forms.Button()
|
||||||
Me.chkTimeTracking = New System.Windows.Forms.CheckBox()
|
Me.chkTimeTracking = New System.Windows.Forms.CheckBox()
|
||||||
Me.chkSync = New System.Windows.Forms.CheckBox()
|
|
||||||
Me.chkShowDetectionTips = New System.Windows.Forms.CheckBox()
|
Me.chkShowDetectionTips = New System.Windows.Forms.CheckBox()
|
||||||
Me.grpFolderOptions = New System.Windows.Forms.GroupBox()
|
Me.grpFolderOptions = New System.Windows.Forms.GroupBox()
|
||||||
|
Me.chkUseGameID = New System.Windows.Forms.CheckBox()
|
||||||
Me.btnBackupFolder = New System.Windows.Forms.Button()
|
Me.btnBackupFolder = New System.Windows.Forms.Button()
|
||||||
Me.lblBackupFolder = New System.Windows.Forms.Label()
|
Me.lblBackupFolder = New System.Windows.Forms.Label()
|
||||||
Me.txtBackupFolder = New System.Windows.Forms.TextBox()
|
Me.txtBackupFolder = New System.Windows.Forms.TextBox()
|
||||||
@@ -66,6 +67,7 @@ Partial Class frmSettings
|
|||||||
Me.grpGameData = New System.Windows.Forms.GroupBox()
|
Me.grpGameData = New System.Windows.Forms.GroupBox()
|
||||||
Me.chkSessionTracking = New System.Windows.Forms.CheckBox()
|
Me.chkSessionTracking = New System.Windows.Forms.CheckBox()
|
||||||
Me.lstSettings = New System.Windows.Forms.ListBox()
|
Me.lstSettings = New System.Windows.Forms.ListBox()
|
||||||
|
Me.btnResetMessages = New System.Windows.Forms.Button()
|
||||||
Me.grpStartup.SuspendLayout()
|
Me.grpStartup.SuspendLayout()
|
||||||
Me.grpFolderOptions.SuspendLayout()
|
Me.grpFolderOptions.SuspendLayout()
|
||||||
Me.grp7zGeneral.SuspendLayout()
|
Me.grp7zGeneral.SuspendLayout()
|
||||||
@@ -84,23 +86,34 @@ Partial Class frmSettings
|
|||||||
Me.chkMonitorOnStartup.AutoSize = True
|
Me.chkMonitorOnStartup.AutoSize = True
|
||||||
Me.chkMonitorOnStartup.Location = New System.Drawing.Point(6, 65)
|
Me.chkMonitorOnStartup.Location = New System.Drawing.Point(6, 65)
|
||||||
Me.chkMonitorOnStartup.Name = "chkMonitorOnStartup"
|
Me.chkMonitorOnStartup.Name = "chkMonitorOnStartup"
|
||||||
Me.chkMonitorOnStartup.Size = New System.Drawing.Size(146, 17)
|
Me.chkMonitorOnStartup.Size = New System.Drawing.Size(149, 17)
|
||||||
Me.chkMonitorOnStartup.TabIndex = 2
|
Me.chkMonitorOnStartup.TabIndex = 2
|
||||||
Me.chkMonitorOnStartup.Text = "Start monitoring at launch"
|
Me.chkMonitorOnStartup.Text = "Start monitoring on launch"
|
||||||
Me.chkMonitorOnStartup.UseVisualStyleBackColor = True
|
Me.chkMonitorOnStartup.UseVisualStyleBackColor = True
|
||||||
'
|
'
|
||||||
'grpStartup
|
'grpStartup
|
||||||
'
|
'
|
||||||
|
Me.grpStartup.Controls.Add(Me.chkBackupOnLaunch)
|
||||||
Me.grpStartup.Controls.Add(Me.chkStartWindows)
|
Me.grpStartup.Controls.Add(Me.chkStartWindows)
|
||||||
Me.grpStartup.Controls.Add(Me.chkStartToTray)
|
Me.grpStartup.Controls.Add(Me.chkStartToTray)
|
||||||
Me.grpStartup.Controls.Add(Me.chkMonitorOnStartup)
|
Me.grpStartup.Controls.Add(Me.chkMonitorOnStartup)
|
||||||
Me.grpStartup.Location = New System.Drawing.Point(6, 12)
|
Me.grpStartup.Location = New System.Drawing.Point(6, 12)
|
||||||
Me.grpStartup.Name = "grpStartup"
|
Me.grpStartup.Name = "grpStartup"
|
||||||
Me.grpStartup.Size = New System.Drawing.Size(354, 90)
|
Me.grpStartup.Size = New System.Drawing.Size(354, 112)
|
||||||
Me.grpStartup.TabIndex = 0
|
Me.grpStartup.TabIndex = 0
|
||||||
Me.grpStartup.TabStop = False
|
Me.grpStartup.TabStop = False
|
||||||
Me.grpStartup.Text = "Startup"
|
Me.grpStartup.Text = "Startup"
|
||||||
'
|
'
|
||||||
|
'chkBackupOnLaunch
|
||||||
|
'
|
||||||
|
Me.chkBackupOnLaunch.AutoSize = True
|
||||||
|
Me.chkBackupOnLaunch.Location = New System.Drawing.Point(6, 88)
|
||||||
|
Me.chkBackupOnLaunch.Name = "chkBackupOnLaunch"
|
||||||
|
Me.chkBackupOnLaunch.Size = New System.Drawing.Size(185, 17)
|
||||||
|
Me.chkBackupOnLaunch.TabIndex = 3
|
||||||
|
Me.chkBackupOnLaunch.Text = "Backup GBM data files on launch"
|
||||||
|
Me.chkBackupOnLaunch.UseVisualStyleBackColor = True
|
||||||
|
'
|
||||||
'chkStartWindows
|
'chkStartWindows
|
||||||
'
|
'
|
||||||
Me.chkStartWindows.AutoSize = True
|
Me.chkStartWindows.AutoSize = True
|
||||||
@@ -124,7 +137,7 @@ Partial Class frmSettings
|
|||||||
'chkAutoSaveLog
|
'chkAutoSaveLog
|
||||||
'
|
'
|
||||||
Me.chkAutoSaveLog.AutoSize = True
|
Me.chkAutoSaveLog.AutoSize = True
|
||||||
Me.chkAutoSaveLog.Location = New System.Drawing.Point(12, 251)
|
Me.chkAutoSaveLog.Location = New System.Drawing.Point(12, 280)
|
||||||
Me.chkAutoSaveLog.Name = "chkAutoSaveLog"
|
Me.chkAutoSaveLog.Name = "chkAutoSaveLog"
|
||||||
Me.chkAutoSaveLog.Size = New System.Drawing.Size(231, 17)
|
Me.chkAutoSaveLog.Size = New System.Drawing.Size(231, 17)
|
||||||
Me.chkAutoSaveLog.TabIndex = 5
|
Me.chkAutoSaveLog.TabIndex = 5
|
||||||
@@ -133,11 +146,11 @@ Partial Class frmSettings
|
|||||||
'
|
'
|
||||||
'btnOptionalFields
|
'btnOptionalFields
|
||||||
'
|
'
|
||||||
Me.btnOptionalFields.Location = New System.Drawing.Point(103, 61)
|
Me.btnOptionalFields.Location = New System.Drawing.Point(6, 65)
|
||||||
Me.btnOptionalFields.Name = "btnOptionalFields"
|
Me.btnOptionalFields.Name = "btnOptionalFields"
|
||||||
Me.btnOptionalFields.Size = New System.Drawing.Size(134, 23)
|
Me.btnOptionalFields.Size = New System.Drawing.Size(216, 23)
|
||||||
Me.btnOptionalFields.TabIndex = 3
|
Me.btnOptionalFields.TabIndex = 3
|
||||||
Me.btnOptionalFields.Text = "Choose &Optional Fields..."
|
Me.btnOptionalFields.Text = "Choose &Optional Sync Fields..."
|
||||||
Me.btnOptionalFields.UseVisualStyleBackColor = True
|
Me.btnOptionalFields.UseVisualStyleBackColor = True
|
||||||
'
|
'
|
||||||
'chkTimeTracking
|
'chkTimeTracking
|
||||||
@@ -150,20 +163,10 @@ Partial Class frmSettings
|
|||||||
Me.chkTimeTracking.Text = "Enable time tracking"
|
Me.chkTimeTracking.Text = "Enable time tracking"
|
||||||
Me.chkTimeTracking.UseVisualStyleBackColor = True
|
Me.chkTimeTracking.UseVisualStyleBackColor = True
|
||||||
'
|
'
|
||||||
'chkSync
|
|
||||||
'
|
|
||||||
Me.chkSync.AutoSize = True
|
|
||||||
Me.chkSync.Location = New System.Drawing.Point(6, 65)
|
|
||||||
Me.chkSync.Name = "chkSync"
|
|
||||||
Me.chkSync.Size = New System.Drawing.Size(98, 17)
|
|
||||||
Me.chkSync.TabIndex = 2
|
|
||||||
Me.chkSync.Text = "Enable syncing"
|
|
||||||
Me.chkSync.UseVisualStyleBackColor = True
|
|
||||||
'
|
|
||||||
'chkShowDetectionTips
|
'chkShowDetectionTips
|
||||||
'
|
'
|
||||||
Me.chkShowDetectionTips.AutoSize = True
|
Me.chkShowDetectionTips.AutoSize = True
|
||||||
Me.chkShowDetectionTips.Location = New System.Drawing.Point(12, 228)
|
Me.chkShowDetectionTips.Location = New System.Drawing.Point(12, 257)
|
||||||
Me.chkShowDetectionTips.Name = "chkShowDetectionTips"
|
Me.chkShowDetectionTips.Name = "chkShowDetectionTips"
|
||||||
Me.chkShowDetectionTips.Size = New System.Drawing.Size(159, 17)
|
Me.chkShowDetectionTips.Size = New System.Drawing.Size(159, 17)
|
||||||
Me.chkShowDetectionTips.TabIndex = 4
|
Me.chkShowDetectionTips.TabIndex = 4
|
||||||
@@ -172,16 +175,27 @@ Partial Class frmSettings
|
|||||||
'
|
'
|
||||||
'grpFolderOptions
|
'grpFolderOptions
|
||||||
'
|
'
|
||||||
|
Me.grpFolderOptions.Controls.Add(Me.chkUseGameID)
|
||||||
Me.grpFolderOptions.Controls.Add(Me.btnBackupFolder)
|
Me.grpFolderOptions.Controls.Add(Me.btnBackupFolder)
|
||||||
Me.grpFolderOptions.Controls.Add(Me.lblBackupFolder)
|
Me.grpFolderOptions.Controls.Add(Me.lblBackupFolder)
|
||||||
Me.grpFolderOptions.Controls.Add(Me.txtBackupFolder)
|
Me.grpFolderOptions.Controls.Add(Me.txtBackupFolder)
|
||||||
Me.grpFolderOptions.Controls.Add(Me.chkCreateFolder)
|
Me.grpFolderOptions.Controls.Add(Me.chkCreateFolder)
|
||||||
Me.grpFolderOptions.Location = New System.Drawing.Point(6, 12)
|
Me.grpFolderOptions.Location = New System.Drawing.Point(6, 12)
|
||||||
Me.grpFolderOptions.Name = "grpFolderOptions"
|
Me.grpFolderOptions.Name = "grpFolderOptions"
|
||||||
Me.grpFolderOptions.Size = New System.Drawing.Size(354, 70)
|
Me.grpFolderOptions.Size = New System.Drawing.Size(354, 90)
|
||||||
Me.grpFolderOptions.TabIndex = 0
|
Me.grpFolderOptions.TabIndex = 0
|
||||||
Me.grpFolderOptions.TabStop = False
|
Me.grpFolderOptions.TabStop = False
|
||||||
Me.grpFolderOptions.Text = "Folders"
|
Me.grpFolderOptions.Text = "Files and Folders"
|
||||||
|
'
|
||||||
|
'chkUseGameID
|
||||||
|
'
|
||||||
|
Me.chkUseGameID.AutoSize = True
|
||||||
|
Me.chkUseGameID.Location = New System.Drawing.Point(9, 65)
|
||||||
|
Me.chkUseGameID.Name = "chkUseGameID"
|
||||||
|
Me.chkUseGameID.Size = New System.Drawing.Size(205, 17)
|
||||||
|
Me.chkUseGameID.TabIndex = 3
|
||||||
|
Me.chkUseGameID.Text = "Use Game ID for folder and file names"
|
||||||
|
Me.chkUseGameID.UseVisualStyleBackColor = True
|
||||||
'
|
'
|
||||||
'btnBackupFolder
|
'btnBackupFolder
|
||||||
'
|
'
|
||||||
@@ -224,7 +238,7 @@ Partial Class frmSettings
|
|||||||
Me.btnSave.Location = New System.Drawing.Point(384, 321)
|
Me.btnSave.Location = New System.Drawing.Point(384, 321)
|
||||||
Me.btnSave.Name = "btnSave"
|
Me.btnSave.Name = "btnSave"
|
||||||
Me.btnSave.Size = New System.Drawing.Size(75, 23)
|
Me.btnSave.Size = New System.Drawing.Size(75, 23)
|
||||||
Me.btnSave.TabIndex = 5
|
Me.btnSave.TabIndex = 6
|
||||||
Me.btnSave.Text = "&Save"
|
Me.btnSave.Text = "&Save"
|
||||||
Me.btnSave.UseVisualStyleBackColor = True
|
Me.btnSave.UseVisualStyleBackColor = True
|
||||||
'
|
'
|
||||||
@@ -234,7 +248,7 @@ Partial Class frmSettings
|
|||||||
Me.btnCancel.Location = New System.Drawing.Point(465, 321)
|
Me.btnCancel.Location = New System.Drawing.Point(465, 321)
|
||||||
Me.btnCancel.Name = "btnCancel"
|
Me.btnCancel.Name = "btnCancel"
|
||||||
Me.btnCancel.Size = New System.Drawing.Size(75, 23)
|
Me.btnCancel.Size = New System.Drawing.Size(75, 23)
|
||||||
Me.btnCancel.TabIndex = 6
|
Me.btnCancel.TabIndex = 7
|
||||||
Me.btnCancel.Text = "&Cancel"
|
Me.btnCancel.Text = "&Cancel"
|
||||||
Me.btnCancel.UseVisualStyleBackColor = True
|
Me.btnCancel.UseVisualStyleBackColor = True
|
||||||
'
|
'
|
||||||
@@ -349,7 +363,7 @@ Partial Class frmSettings
|
|||||||
'chkBackupConfirm
|
'chkBackupConfirm
|
||||||
'
|
'
|
||||||
Me.chkBackupConfirm.AutoSize = True
|
Me.chkBackupConfirm.AutoSize = True
|
||||||
Me.chkBackupConfirm.Location = New System.Drawing.Point(14, 180)
|
Me.chkBackupConfirm.Location = New System.Drawing.Point(14, 199)
|
||||||
Me.chkBackupConfirm.Name = "chkBackupConfirm"
|
Me.chkBackupConfirm.Name = "chkBackupConfirm"
|
||||||
Me.chkBackupConfirm.Size = New System.Drawing.Size(160, 17)
|
Me.chkBackupConfirm.Size = New System.Drawing.Size(160, 17)
|
||||||
Me.chkBackupConfirm.TabIndex = 2
|
Me.chkBackupConfirm.TabIndex = 2
|
||||||
@@ -359,7 +373,7 @@ Partial Class frmSettings
|
|||||||
'chkOverwriteWarning
|
'chkOverwriteWarning
|
||||||
'
|
'
|
||||||
Me.chkOverwriteWarning.AutoSize = True
|
Me.chkOverwriteWarning.AutoSize = True
|
||||||
Me.chkOverwriteWarning.Location = New System.Drawing.Point(14, 203)
|
Me.chkOverwriteWarning.Location = New System.Drawing.Point(14, 222)
|
||||||
Me.chkOverwriteWarning.Name = "chkOverwriteWarning"
|
Me.chkOverwriteWarning.Name = "chkOverwriteWarning"
|
||||||
Me.chkOverwriteWarning.Size = New System.Drawing.Size(139, 17)
|
Me.chkOverwriteWarning.Size = New System.Drawing.Size(139, 17)
|
||||||
Me.chkOverwriteWarning.TabIndex = 3
|
Me.chkOverwriteWarning.TabIndex = 3
|
||||||
@@ -371,10 +385,10 @@ Partial Class frmSettings
|
|||||||
Me.grpBackupHandling.Controls.Add(Me.chkAutoRestore)
|
Me.grpBackupHandling.Controls.Add(Me.chkAutoRestore)
|
||||||
Me.grpBackupHandling.Controls.Add(Me.chkRestoreNotify)
|
Me.grpBackupHandling.Controls.Add(Me.chkRestoreNotify)
|
||||||
Me.grpBackupHandling.Controls.Add(Me.chkAutoMark)
|
Me.grpBackupHandling.Controls.Add(Me.chkAutoMark)
|
||||||
Me.grpBackupHandling.Location = New System.Drawing.Point(6, 88)
|
Me.grpBackupHandling.Location = New System.Drawing.Point(6, 107)
|
||||||
Me.grpBackupHandling.Margin = New System.Windows.Forms.Padding(2, 2, 2, 2)
|
Me.grpBackupHandling.Margin = New System.Windows.Forms.Padding(2)
|
||||||
Me.grpBackupHandling.Name = "grpBackupHandling"
|
Me.grpBackupHandling.Name = "grpBackupHandling"
|
||||||
Me.grpBackupHandling.Padding = New System.Windows.Forms.Padding(2, 2, 2, 2)
|
Me.grpBackupHandling.Padding = New System.Windows.Forms.Padding(2)
|
||||||
Me.grpBackupHandling.Size = New System.Drawing.Size(354, 87)
|
Me.grpBackupHandling.Size = New System.Drawing.Size(354, 87)
|
||||||
Me.grpBackupHandling.TabIndex = 1
|
Me.grpBackupHandling.TabIndex = 1
|
||||||
Me.grpBackupHandling.TabStop = False
|
Me.grpBackupHandling.TabStop = False
|
||||||
@@ -384,7 +398,7 @@ Partial Class frmSettings
|
|||||||
'
|
'
|
||||||
Me.chkAutoRestore.AutoSize = True
|
Me.chkAutoRestore.AutoSize = True
|
||||||
Me.chkAutoRestore.Location = New System.Drawing.Point(8, 41)
|
Me.chkAutoRestore.Location = New System.Drawing.Point(8, 41)
|
||||||
Me.chkAutoRestore.Margin = New System.Windows.Forms.Padding(2, 2, 2, 2)
|
Me.chkAutoRestore.Margin = New System.Windows.Forms.Padding(2)
|
||||||
Me.chkAutoRestore.Name = "chkAutoRestore"
|
Me.chkAutoRestore.Name = "chkAutoRestore"
|
||||||
Me.chkAutoRestore.Size = New System.Drawing.Size(190, 17)
|
Me.chkAutoRestore.Size = New System.Drawing.Size(190, 17)
|
||||||
Me.chkAutoRestore.TabIndex = 1
|
Me.chkAutoRestore.TabIndex = 1
|
||||||
@@ -395,7 +409,7 @@ Partial Class frmSettings
|
|||||||
'
|
'
|
||||||
Me.chkRestoreNotify.AutoSize = True
|
Me.chkRestoreNotify.AutoSize = True
|
||||||
Me.chkRestoreNotify.Location = New System.Drawing.Point(8, 19)
|
Me.chkRestoreNotify.Location = New System.Drawing.Point(8, 19)
|
||||||
Me.chkRestoreNotify.Margin = New System.Windows.Forms.Padding(2, 2, 2, 2)
|
Me.chkRestoreNotify.Margin = New System.Windows.Forms.Padding(2)
|
||||||
Me.chkRestoreNotify.Name = "chkRestoreNotify"
|
Me.chkRestoreNotify.Name = "chkRestoreNotify"
|
||||||
Me.chkRestoreNotify.Size = New System.Drawing.Size(216, 17)
|
Me.chkRestoreNotify.Size = New System.Drawing.Size(216, 17)
|
||||||
Me.chkRestoreNotify.TabIndex = 0
|
Me.chkRestoreNotify.TabIndex = 0
|
||||||
@@ -464,7 +478,7 @@ Partial Class frmSettings
|
|||||||
'lblMinutes
|
'lblMinutes
|
||||||
'
|
'
|
||||||
Me.lblMinutes.AutoSize = True
|
Me.lblMinutes.AutoSize = True
|
||||||
Me.lblMinutes.Location = New System.Drawing.Point(232, 205)
|
Me.lblMinutes.Location = New System.Drawing.Point(232, 234)
|
||||||
Me.lblMinutes.Name = "lblMinutes"
|
Me.lblMinutes.Name = "lblMinutes"
|
||||||
Me.lblMinutes.Size = New System.Drawing.Size(43, 13)
|
Me.lblMinutes.Size = New System.Drawing.Size(43, 13)
|
||||||
Me.lblMinutes.TabIndex = 17
|
Me.lblMinutes.TabIndex = 17
|
||||||
@@ -472,7 +486,7 @@ Partial Class frmSettings
|
|||||||
'
|
'
|
||||||
'nudSupressBackupThreshold
|
'nudSupressBackupThreshold
|
||||||
'
|
'
|
||||||
Me.nudSupressBackupThreshold.Location = New System.Drawing.Point(176, 203)
|
Me.nudSupressBackupThreshold.Location = New System.Drawing.Point(176, 232)
|
||||||
Me.nudSupressBackupThreshold.Maximum = New Decimal(New Integer() {999, 0, 0, 0})
|
Me.nudSupressBackupThreshold.Maximum = New Decimal(New Integer() {999, 0, 0, 0})
|
||||||
Me.nudSupressBackupThreshold.Name = "nudSupressBackupThreshold"
|
Me.nudSupressBackupThreshold.Name = "nudSupressBackupThreshold"
|
||||||
Me.nudSupressBackupThreshold.Size = New System.Drawing.Size(51, 20)
|
Me.nudSupressBackupThreshold.Size = New System.Drawing.Size(51, 20)
|
||||||
@@ -481,7 +495,7 @@ Partial Class frmSettings
|
|||||||
'chkSupressBackup
|
'chkSupressBackup
|
||||||
'
|
'
|
||||||
Me.chkSupressBackup.AutoSize = True
|
Me.chkSupressBackup.AutoSize = True
|
||||||
Me.chkSupressBackup.Location = New System.Drawing.Point(12, 204)
|
Me.chkSupressBackup.Location = New System.Drawing.Point(12, 233)
|
||||||
Me.chkSupressBackup.Name = "chkSupressBackup"
|
Me.chkSupressBackup.Name = "chkSupressBackup"
|
||||||
Me.chkSupressBackup.Size = New System.Drawing.Size(158, 17)
|
Me.chkSupressBackup.Size = New System.Drawing.Size(158, 17)
|
||||||
Me.chkSupressBackup.TabIndex = 2
|
Me.chkSupressBackup.TabIndex = 2
|
||||||
@@ -492,11 +506,10 @@ Partial Class frmSettings
|
|||||||
'
|
'
|
||||||
Me.grpGameData.Controls.Add(Me.chkSessionTracking)
|
Me.grpGameData.Controls.Add(Me.chkSessionTracking)
|
||||||
Me.grpGameData.Controls.Add(Me.chkTimeTracking)
|
Me.grpGameData.Controls.Add(Me.chkTimeTracking)
|
||||||
Me.grpGameData.Controls.Add(Me.chkSync)
|
|
||||||
Me.grpGameData.Controls.Add(Me.btnOptionalFields)
|
Me.grpGameData.Controls.Add(Me.btnOptionalFields)
|
||||||
Me.grpGameData.Location = New System.Drawing.Point(6, 106)
|
Me.grpGameData.Location = New System.Drawing.Point(6, 130)
|
||||||
Me.grpGameData.Name = "grpGameData"
|
Me.grpGameData.Name = "grpGameData"
|
||||||
Me.grpGameData.Size = New System.Drawing.Size(354, 92)
|
Me.grpGameData.Size = New System.Drawing.Size(354, 97)
|
||||||
Me.grpGameData.TabIndex = 1
|
Me.grpGameData.TabIndex = 1
|
||||||
Me.grpGameData.TabStop = False
|
Me.grpGameData.TabStop = False
|
||||||
Me.grpGameData.Text = "Game Data"
|
Me.grpGameData.Text = "Game Data"
|
||||||
@@ -519,13 +532,23 @@ Partial Class frmSettings
|
|||||||
Me.lstSettings.Size = New System.Drawing.Size(162, 303)
|
Me.lstSettings.Size = New System.Drawing.Size(162, 303)
|
||||||
Me.lstSettings.TabIndex = 0
|
Me.lstSettings.TabIndex = 0
|
||||||
'
|
'
|
||||||
|
'btnResetMessages
|
||||||
|
'
|
||||||
|
Me.btnResetMessages.Location = New System.Drawing.Point(128, 321)
|
||||||
|
Me.btnResetMessages.Name = "btnResetMessages"
|
||||||
|
Me.btnResetMessages.Size = New System.Drawing.Size(110, 23)
|
||||||
|
Me.btnResetMessages.TabIndex = 5
|
||||||
|
Me.btnResetMessages.Text = "&Reset Warnings"
|
||||||
|
Me.btnResetMessages.UseVisualStyleBackColor = True
|
||||||
|
'
|
||||||
'frmSettings
|
'frmSettings
|
||||||
'
|
'
|
||||||
Me.AutoScaleDimensions = New System.Drawing.SizeF(6.0!, 13.0!)
|
Me.AutoScaleDimensions = New System.Drawing.SizeF(6.0!, 13.0!)
|
||||||
Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font
|
Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font
|
||||||
Me.ClientSize = New System.Drawing.Size(554, 361)
|
Me.ClientSize = New System.Drawing.Size(554, 361)
|
||||||
Me.Controls.Add(Me.pnlGeneral)
|
|
||||||
Me.Controls.Add(Me.pnlBackup)
|
Me.Controls.Add(Me.pnlBackup)
|
||||||
|
Me.Controls.Add(Me.btnResetMessages)
|
||||||
|
Me.Controls.Add(Me.pnlGeneral)
|
||||||
Me.Controls.Add(Me.pnl7z)
|
Me.Controls.Add(Me.pnl7z)
|
||||||
Me.Controls.Add(Me.lstSettings)
|
Me.Controls.Add(Me.lstSettings)
|
||||||
Me.Controls.Add(Me.btnDefaults)
|
Me.Controls.Add(Me.btnDefaults)
|
||||||
@@ -572,7 +595,6 @@ Partial Class frmSettings
|
|||||||
Friend WithEvents chkShowDetectionTips As System.Windows.Forms.CheckBox
|
Friend WithEvents chkShowDetectionTips As System.Windows.Forms.CheckBox
|
||||||
Friend WithEvents chkStartToTray As System.Windows.Forms.CheckBox
|
Friend WithEvents chkStartToTray As System.Windows.Forms.CheckBox
|
||||||
Friend WithEvents chkCreateFolder As System.Windows.Forms.CheckBox
|
Friend WithEvents chkCreateFolder As System.Windows.Forms.CheckBox
|
||||||
Friend WithEvents chkSync As System.Windows.Forms.CheckBox
|
|
||||||
Friend WithEvents chkStartWindows As System.Windows.Forms.CheckBox
|
Friend WithEvents chkStartWindows As System.Windows.Forms.CheckBox
|
||||||
Friend WithEvents chkTimeTracking As System.Windows.Forms.CheckBox
|
Friend WithEvents chkTimeTracking As System.Windows.Forms.CheckBox
|
||||||
Friend WithEvents grp7zGeneral As GroupBox
|
Friend WithEvents grp7zGeneral As GroupBox
|
||||||
@@ -605,4 +627,7 @@ Partial Class frmSettings
|
|||||||
Friend WithEvents lblMinutes As Label
|
Friend WithEvents lblMinutes As Label
|
||||||
Friend WithEvents nudSupressBackupThreshold As NumericUpDown
|
Friend WithEvents nudSupressBackupThreshold As NumericUpDown
|
||||||
Friend WithEvents chkSupressBackup As CheckBox
|
Friend WithEvents chkSupressBackup As CheckBox
|
||||||
|
Friend WithEvents btnResetMessages As Button
|
||||||
|
Friend WithEvents chkBackupOnLaunch As CheckBox
|
||||||
|
Friend WithEvents chkUseGameID As CheckBox
|
||||||
End Class
|
End Class
|
||||||
|
|||||||
+19
-25
@@ -47,10 +47,12 @@ Public Class frmSettings
|
|||||||
|
|
||||||
oSettings.MonitorOnStartup = chkMonitorOnStartup.Checked
|
oSettings.MonitorOnStartup = chkMonitorOnStartup.Checked
|
||||||
oSettings.StartToTray = chkStartToTray.Checked
|
oSettings.StartToTray = chkStartToTray.Checked
|
||||||
|
oSettings.BackupOnLaunch = chkBackupOnLaunch.Checked
|
||||||
oSettings.ShowDetectionToolTips = chkShowDetectionTips.Checked
|
oSettings.ShowDetectionToolTips = chkShowDetectionTips.Checked
|
||||||
oSettings.AutoSaveLog = chkAutoSaveLog.Checked
|
oSettings.AutoSaveLog = chkAutoSaveLog.Checked
|
||||||
oSettings.DisableConfirmation = chkBackupConfirm.Checked
|
oSettings.DisableConfirmation = chkBackupConfirm.Checked
|
||||||
oSettings.CreateSubFolder = chkCreateFolder.Checked
|
oSettings.CreateSubFolder = chkCreateFolder.Checked
|
||||||
|
oSettings.UseGameID = chkUseGameID.Checked
|
||||||
oSettings.ShowOverwriteWarning = chkOverwriteWarning.Checked
|
oSettings.ShowOverwriteWarning = chkOverwriteWarning.Checked
|
||||||
oSettings.RestoreOnLaunch = chkRestoreNotify.Checked
|
oSettings.RestoreOnLaunch = chkRestoreNotify.Checked
|
||||||
oSettings.AutoRestore = chkAutoRestore.Checked
|
oSettings.AutoRestore = chkAutoRestore.Checked
|
||||||
@@ -68,15 +70,9 @@ Public Class frmSettings
|
|||||||
oSettings.Custom7zArguments = txt7zArguments.Text.Trim
|
oSettings.Custom7zArguments = txt7zArguments.Text.Trim
|
||||||
oSettings.Custom7zLocation = txt7zLocation.Text.Trim
|
oSettings.Custom7zLocation = txt7zLocation.Text.Trim
|
||||||
|
|
||||||
'Turning syncing from off to on is the same as changing the backup folder
|
|
||||||
If chkSync.Checked = True And oSettings.Sync = False Then
|
|
||||||
bSyncSettingsChanged = True
|
|
||||||
End If
|
|
||||||
oSettings.Sync = chkSync.Checked
|
|
||||||
|
|
||||||
If Directory.Exists(txtBackupFolder.Text) Then
|
If Directory.Exists(txtBackupFolder.Text) Then
|
||||||
If oSettings.BackupFolder <> txtBackupFolder.Text Then
|
If oSettings.BackupFolder <> txtBackupFolder.Text Then
|
||||||
If chkSync.Checked Then bSyncSettingsChanged = True
|
bSyncSettingsChanged = True
|
||||||
End If
|
End If
|
||||||
oSettings.BackupFolder = txtBackupFolder.Text
|
oSettings.BackupFolder = txtBackupFolder.Text
|
||||||
Else
|
Else
|
||||||
@@ -96,7 +92,7 @@ Public Class frmSettings
|
|||||||
End If
|
End If
|
||||||
|
|
||||||
'We must trigger a sync if optional fields have changed
|
'We must trigger a sync if optional fields have changed
|
||||||
If Settings.Sync And (eCurrentSyncFields <> Settings.SyncFields) Then
|
If eCurrentSyncFields <> Settings.SyncFields Then
|
||||||
bSyncSettingsChanged = True
|
bSyncSettingsChanged = True
|
||||||
End If
|
End If
|
||||||
|
|
||||||
@@ -168,20 +164,27 @@ Public Class frmSettings
|
|||||||
End If
|
End If
|
||||||
End Sub
|
End Sub
|
||||||
|
|
||||||
|
Private Sub ResetMessages()
|
||||||
|
If mgrCommon.ShowMessage(frmSettings_ConfirmMessageReset, MsgBoxStyle.YesNo) = MsgBoxResult.Yes Then
|
||||||
|
oSettings.SupressMessages = mgrSettings.eSupressMessages.None
|
||||||
|
End If
|
||||||
|
End Sub
|
||||||
|
|
||||||
Private Sub LoadSettings()
|
Private Sub LoadSettings()
|
||||||
chkStartWindows.Checked = oSettings.StartWithWindows
|
chkStartWindows.Checked = oSettings.StartWithWindows
|
||||||
chkMonitorOnStartup.Checked = oSettings.MonitorOnStartup
|
chkMonitorOnStartup.Checked = oSettings.MonitorOnStartup
|
||||||
chkStartToTray.Checked = oSettings.StartToTray
|
chkStartToTray.Checked = oSettings.StartToTray
|
||||||
|
chkBackupOnLaunch.Checked = oSettings.BackupOnLaunch
|
||||||
chkShowDetectionTips.Checked = oSettings.ShowDetectionToolTips
|
chkShowDetectionTips.Checked = oSettings.ShowDetectionToolTips
|
||||||
chkAutoSaveLog.Checked = oSettings.AutoSaveLog
|
chkAutoSaveLog.Checked = oSettings.AutoSaveLog
|
||||||
chkBackupConfirm.Checked = oSettings.DisableConfirmation
|
chkBackupConfirm.Checked = oSettings.DisableConfirmation
|
||||||
chkCreateFolder.Checked = oSettings.CreateSubFolder
|
chkCreateFolder.Checked = oSettings.CreateSubFolder
|
||||||
|
chkUseGameID.Checked = oSettings.UseGameID
|
||||||
chkOverwriteWarning.Checked = oSettings.ShowOverwriteWarning
|
chkOverwriteWarning.Checked = oSettings.ShowOverwriteWarning
|
||||||
chkRestoreNotify.Checked = oSettings.RestoreOnLaunch
|
chkRestoreNotify.Checked = oSettings.RestoreOnLaunch
|
||||||
chkAutoRestore.Checked = oSettings.AutoRestore
|
chkAutoRestore.Checked = oSettings.AutoRestore
|
||||||
chkAutoMark.Checked = oSettings.AutoMark
|
chkAutoMark.Checked = oSettings.AutoMark
|
||||||
txtBackupFolder.Text = oSettings.BackupFolder
|
txtBackupFolder.Text = oSettings.BackupFolder
|
||||||
chkSync.Checked = oSettings.Sync
|
|
||||||
chkTimeTracking.Checked = oSettings.TimeTracking
|
chkTimeTracking.Checked = oSettings.TimeTracking
|
||||||
chkSessionTracking.Checked = oSettings.SessionTracking
|
chkSessionTracking.Checked = oSettings.SessionTracking
|
||||||
chkSupressBackup.Checked = oSettings.SupressBackup
|
chkSupressBackup.Checked = oSettings.SupressBackup
|
||||||
@@ -201,8 +204,6 @@ Public Class frmSettings
|
|||||||
'Retrieve 7z Info
|
'Retrieve 7z Info
|
||||||
GetUtilityInfo(oSettings.Custom7zLocation)
|
GetUtilityInfo(oSettings.Custom7zLocation)
|
||||||
|
|
||||||
'Toggle Sync Button
|
|
||||||
ToggleSyncButton()
|
|
||||||
End Sub
|
End Sub
|
||||||
|
|
||||||
Private Sub LoadCombos()
|
Private Sub LoadCombos()
|
||||||
@@ -236,14 +237,6 @@ Public Class frmSettings
|
|||||||
lstSettings.SelectedIndex = 0
|
lstSettings.SelectedIndex = 0
|
||||||
End Sub
|
End Sub
|
||||||
|
|
||||||
Private Sub ToggleSyncButton()
|
|
||||||
If chkSync.Checked Then
|
|
||||||
btnOptionalFields.Enabled = True
|
|
||||||
Else
|
|
||||||
btnOptionalFields.Enabled = False
|
|
||||||
End If
|
|
||||||
End Sub
|
|
||||||
|
|
||||||
Private Sub OpenOptionalFields()
|
Private Sub OpenOptionalFields()
|
||||||
Dim frm As New frmSyncFields
|
Dim frm As New frmSyncFields
|
||||||
frm.SyncFields = Settings.SyncFields
|
frm.SyncFields = Settings.SyncFields
|
||||||
@@ -287,6 +280,7 @@ Public Class frmSettings
|
|||||||
chkAutoMark.Text = frmSettings_chkAutoMark
|
chkAutoMark.Text = frmSettings_chkAutoMark
|
||||||
chkOverwriteWarning.Text = frmSettings_chkOverwriteWarning
|
chkOverwriteWarning.Text = frmSettings_chkOverwriteWarning
|
||||||
chkCreateFolder.Text = frmSettings_chkCreateFolder
|
chkCreateFolder.Text = frmSettings_chkCreateFolder
|
||||||
|
chkUseGameID.Text = frmSettings_chkUseGameID
|
||||||
chkBackupConfirm.Text = frmSettings_chkBackupConfirm
|
chkBackupConfirm.Text = frmSettings_chkBackupConfirm
|
||||||
btnCancel.Text = frmSettings_btnCancel
|
btnCancel.Text = frmSettings_btnCancel
|
||||||
btnSave.Text = frmSettings_btnSave
|
btnSave.Text = frmSettings_btnSave
|
||||||
@@ -298,7 +292,6 @@ Public Class frmSettings
|
|||||||
chkTimeTracking.Text = frmSettings_chkTimeTracking
|
chkTimeTracking.Text = frmSettings_chkTimeTracking
|
||||||
chkSessionTracking.Text = frmSettings_chkSessionTracking
|
chkSessionTracking.Text = frmSettings_chkSessionTracking
|
||||||
chkStartWindows.Text = frmSettings_chkStartWindows
|
chkStartWindows.Text = frmSettings_chkStartWindows
|
||||||
chkSync.Text = frmSettings_chkSync
|
|
||||||
chkShowDetectionTips.Text = frmSettings_chkShowDetectionTips
|
chkShowDetectionTips.Text = frmSettings_chkShowDetectionTips
|
||||||
chkAutoSaveLog.Text = frmSettings_chkAutoSaveLog
|
chkAutoSaveLog.Text = frmSettings_chkAutoSaveLog
|
||||||
chkStartToTray.Text = frmSettings_chkStartToTray
|
chkStartToTray.Text = frmSettings_chkStartToTray
|
||||||
@@ -311,6 +304,8 @@ Public Class frmSettings
|
|||||||
lblArguments.Text = frmSettings_lblArguments
|
lblArguments.Text = frmSettings_lblArguments
|
||||||
lblLocation.Text = frmSettings_lblLocation
|
lblLocation.Text = frmSettings_lblLocation
|
||||||
btnOptionalFields.Text = frmSettings_btnOptionalFields
|
btnOptionalFields.Text = frmSettings_btnOptionalFields
|
||||||
|
btnResetMessages.Text = frmSettings_btnResetMessages
|
||||||
|
chkBackupOnLaunch.Text = frmSettings_chkBackupOnLaunch
|
||||||
|
|
||||||
'Unix Handler
|
'Unix Handler
|
||||||
If mgrCommon.IsUnix Then
|
If mgrCommon.IsUnix Then
|
||||||
@@ -369,16 +364,15 @@ Public Class frmSettings
|
|||||||
SetDefaults()
|
SetDefaults()
|
||||||
End Sub
|
End Sub
|
||||||
|
|
||||||
Private Sub btnOptionalFields_Click(sender As Object, e As EventArgs) Handles btnOptionalFields.Click
|
Private Sub btnResetMessages_Click(sender As Object, e As EventArgs) Handles btnResetMessages.Click
|
||||||
OpenOptionalFields()
|
ResetMessages()
|
||||||
End Sub
|
End Sub
|
||||||
|
|
||||||
Private Sub chkSync_CheckedChanged(sender As Object, e As EventArgs) Handles chkSync.CheckedChanged
|
Private Sub btnOptionalFields_Click(sender As Object, e As EventArgs) Handles btnOptionalFields.Click
|
||||||
ToggleSyncButton()
|
OpenOptionalFields()
|
||||||
End Sub
|
End Sub
|
||||||
|
|
||||||
Private Sub lstSettings_SelectedValueChanged(sender As Object, e As EventArgs) Handles lstSettings.SelectedValueChanged
|
Private Sub lstSettings_SelectedValueChanged(sender As Object, e As EventArgs) Handles lstSettings.SelectedValueChanged
|
||||||
ChangePanel()
|
ChangePanel()
|
||||||
End Sub
|
End Sub
|
||||||
|
|
||||||
End Class
|
End Class
|
||||||
Generated
+7
-19
@@ -30,7 +30,6 @@ Partial Class frmStartUpWizard
|
|||||||
Me.lblStep1Title = New System.Windows.Forms.Label()
|
Me.lblStep1Title = New System.Windows.Forms.Label()
|
||||||
Me.lblStep1Instructions = New System.Windows.Forms.Label()
|
Me.lblStep1Instructions = New System.Windows.Forms.Label()
|
||||||
Me.tbPage2 = New System.Windows.Forms.TabPage()
|
Me.tbPage2 = New System.Windows.Forms.TabPage()
|
||||||
Me.chkSync = New System.Windows.Forms.CheckBox()
|
|
||||||
Me.chkCreateFolder = New System.Windows.Forms.CheckBox()
|
Me.chkCreateFolder = New System.Windows.Forms.CheckBox()
|
||||||
Me.lblStep2Title = New System.Windows.Forms.Label()
|
Me.lblStep2Title = New System.Windows.Forms.Label()
|
||||||
Me.lblStep2Instructions = New System.Windows.Forms.Label()
|
Me.lblStep2Instructions = New System.Windows.Forms.Label()
|
||||||
@@ -91,7 +90,7 @@ Partial Class frmStartUpWizard
|
|||||||
Me.lblStep1Instructions2.Name = "lblStep1Instructions2"
|
Me.lblStep1Instructions2.Name = "lblStep1Instructions2"
|
||||||
Me.lblStep1Instructions2.Size = New System.Drawing.Size(303, 53)
|
Me.lblStep1Instructions2.Size = New System.Drawing.Size(303, 53)
|
||||||
Me.lblStep1Instructions2.TabIndex = 2
|
Me.lblStep1Instructions2.TabIndex = 2
|
||||||
Me.lblStep1Instructions2.Text = "If you'd like to learn about advanced features or have any other questions before" & _
|
Me.lblStep1Instructions2.Text = "If you'd like to learn about advanced features or have any other questions before" &
|
||||||
" you get started, there is a detailed online manual available."
|
" you get started, there is a detailed online manual available."
|
||||||
'
|
'
|
||||||
'llbManual
|
'llbManual
|
||||||
@@ -126,7 +125,6 @@ Partial Class frmStartUpWizard
|
|||||||
'tbPage2
|
'tbPage2
|
||||||
'
|
'
|
||||||
Me.tbPage2.BackColor = System.Drawing.SystemColors.Control
|
Me.tbPage2.BackColor = System.Drawing.SystemColors.Control
|
||||||
Me.tbPage2.Controls.Add(Me.chkSync)
|
|
||||||
Me.tbPage2.Controls.Add(Me.chkCreateFolder)
|
Me.tbPage2.Controls.Add(Me.chkCreateFolder)
|
||||||
Me.tbPage2.Controls.Add(Me.lblStep2Title)
|
Me.tbPage2.Controls.Add(Me.lblStep2Title)
|
||||||
Me.tbPage2.Controls.Add(Me.lblStep2Instructions)
|
Me.tbPage2.Controls.Add(Me.lblStep2Instructions)
|
||||||
@@ -140,16 +138,6 @@ Partial Class frmStartUpWizard
|
|||||||
Me.tbPage2.TabIndex = 1
|
Me.tbPage2.TabIndex = 1
|
||||||
Me.tbPage2.Text = "TabPage2"
|
Me.tbPage2.Text = "TabPage2"
|
||||||
'
|
'
|
||||||
'chkSync
|
|
||||||
'
|
|
||||||
Me.chkSync.AutoSize = True
|
|
||||||
Me.chkSync.Location = New System.Drawing.Point(17, 105)
|
|
||||||
Me.chkSync.Name = "chkSync"
|
|
||||||
Me.chkSync.Size = New System.Drawing.Size(261, 17)
|
|
||||||
Me.chkSync.TabIndex = 5
|
|
||||||
Me.chkSync.Text = "Import any existing GBM data in the backup folder"
|
|
||||||
Me.chkSync.UseVisualStyleBackColor = True
|
|
||||||
'
|
|
||||||
'chkCreateFolder
|
'chkCreateFolder
|
||||||
'
|
'
|
||||||
Me.chkCreateFolder.AutoSize = True
|
Me.chkCreateFolder.AutoSize = True
|
||||||
@@ -172,12 +160,13 @@ Partial Class frmStartUpWizard
|
|||||||
'
|
'
|
||||||
'lblStep2Instructions
|
'lblStep2Instructions
|
||||||
'
|
'
|
||||||
Me.lblStep2Instructions.Location = New System.Drawing.Point(14, 151)
|
Me.lblStep2Instructions.Location = New System.Drawing.Point(14, 103)
|
||||||
Me.lblStep2Instructions.Name = "lblStep2Instructions"
|
Me.lblStep2Instructions.Name = "lblStep2Instructions"
|
||||||
Me.lblStep2Instructions.Size = New System.Drawing.Size(335, 31)
|
Me.lblStep2Instructions.Size = New System.Drawing.Size(335, 50)
|
||||||
Me.lblStep2Instructions.TabIndex = 6
|
Me.lblStep2Instructions.TabIndex = 6
|
||||||
Me.lblStep2Instructions.Text = "GBM will store all your backup files along with a manifest database (gbm.s3db) in" & _
|
Me.lblStep2Instructions.Text = "GBM will store all your backup files along with a manifest database (gbm.s3db) in" &
|
||||||
" this location. "
|
" this location. Any existing GBM data in this folder will be automatically impo" &
|
||||||
|
"rted."
|
||||||
'
|
'
|
||||||
'btnFolderBrowse
|
'btnFolderBrowse
|
||||||
'
|
'
|
||||||
@@ -283,7 +272,7 @@ Partial Class frmStartUpWizard
|
|||||||
Me.lblStep4Instructions3.Name = "lblStep4Instructions3"
|
Me.lblStep4Instructions3.Name = "lblStep4Instructions3"
|
||||||
Me.lblStep4Instructions3.Size = New System.Drawing.Size(303, 33)
|
Me.lblStep4Instructions3.Size = New System.Drawing.Size(303, 33)
|
||||||
Me.lblStep4Instructions3.TabIndex = 18
|
Me.lblStep4Instructions3.TabIndex = 18
|
||||||
Me.lblStep4Instructions3.Text = "You can change anything you've setup in this wizard and find more settings and fe" & _
|
Me.lblStep4Instructions3.Text = "You can change anything you've setup in this wizard and find more settings and fe" &
|
||||||
"atures by exploring the menus. Thanks!"
|
"atures by exploring the menus. Thanks!"
|
||||||
'
|
'
|
||||||
'lblStep4Instructions2
|
'lblStep4Instructions2
|
||||||
@@ -381,7 +370,6 @@ Partial Class frmStartUpWizard
|
|||||||
Friend WithEvents btnOpenMonitorList As System.Windows.Forms.Button
|
Friend WithEvents btnOpenMonitorList As System.Windows.Forms.Button
|
||||||
Friend WithEvents lblStep4Instructions3 As System.Windows.Forms.Label
|
Friend WithEvents lblStep4Instructions3 As System.Windows.Forms.Label
|
||||||
Friend WithEvents lblStep4Instructions2 As System.Windows.Forms.Label
|
Friend WithEvents lblStep4Instructions2 As System.Windows.Forms.Label
|
||||||
Friend WithEvents chkSync As System.Windows.Forms.CheckBox
|
|
||||||
Friend WithEvents lblStep1Instructions2 As System.Windows.Forms.Label
|
Friend WithEvents lblStep1Instructions2 As System.Windows.Forms.Label
|
||||||
Friend WithEvents llbManual As System.Windows.Forms.LinkLabel
|
Friend WithEvents llbManual As System.Windows.Forms.LinkLabel
|
||||||
End Class
|
End Class
|
||||||
|
|||||||
@@ -38,7 +38,6 @@ Public Class frmStartUpWizard
|
|||||||
llbManual.Text = frmStartUpWizard_llbManual
|
llbManual.Text = frmStartUpWizard_llbManual
|
||||||
lblStep1Title.Text = frmStartUpWizard_lblStep1Title
|
lblStep1Title.Text = frmStartUpWizard_lblStep1Title
|
||||||
lblStep1Instructions.Text = frmStartUpWizard_lblStep1Instructions
|
lblStep1Instructions.Text = frmStartUpWizard_lblStep1Instructions
|
||||||
chkSync.Text = frmStartUpWizard_chkSync
|
|
||||||
chkCreateFolder.Text = frmStartUpWizard_chkCreateFolder
|
chkCreateFolder.Text = frmStartUpWizard_chkCreateFolder
|
||||||
lblStep2Title.Text = frmStartUpWizard_lblStep2Title
|
lblStep2Title.Text = frmStartUpWizard_lblStep2Title
|
||||||
lblStep2Instructions.Text = frmStartUpWizard_lblStep2Instructions
|
lblStep2Instructions.Text = frmStartUpWizard_lblStep2Instructions
|
||||||
@@ -80,7 +79,6 @@ Public Class frmStartUpWizard
|
|||||||
Case eSteps.Step2
|
Case eSteps.Step2
|
||||||
txtBackupPath.Text = oSettings.BackupFolder
|
txtBackupPath.Text = oSettings.BackupFolder
|
||||||
chkCreateFolder.Checked = oSettings.CreateSubFolder
|
chkCreateFolder.Checked = oSettings.CreateSubFolder
|
||||||
chkSync.Checked = oSettings.Sync
|
|
||||||
btnBack.Enabled = True
|
btnBack.Enabled = True
|
||||||
btnNext.Enabled = True
|
btnNext.Enabled = True
|
||||||
tabWizard.SelectTab(1)
|
tabWizard.SelectTab(1)
|
||||||
@@ -107,9 +105,9 @@ Public Class frmStartUpWizard
|
|||||||
End If
|
End If
|
||||||
|
|
||||||
If mgrCommon.ShowMessage(frmStartUpWizard_ConfirmOfficialImport, MsgBoxStyle.YesNo) = MsgBoxResult.Yes Then
|
If mgrCommon.ShowMessage(frmStartUpWizard_ConfirmOfficialImport, MsgBoxStyle.YesNo) = MsgBoxResult.Yes Then
|
||||||
If mgrMonitorList.DoImport(sImportURL) Then
|
If mgrMonitorList.DoImport(sImportURL, True, Settings, True) Then
|
||||||
oGameData = mgrMonitorList.ReadList(mgrMonitorList.eListTypes.FullList)
|
oGameData = mgrMonitorList.ReadList(mgrMonitorList.eListTypes.FullList)
|
||||||
If oSettings.Sync Then mgrMonitorList.SyncMonitorLists(oSettings.SyncFields)
|
mgrMonitorList.SyncMonitorLists(oSettings.SyncFields)
|
||||||
End If
|
End If
|
||||||
End If
|
End If
|
||||||
End Sub
|
End Sub
|
||||||
@@ -124,16 +122,15 @@ Public Class frmStartUpWizard
|
|||||||
frm.GameData = oGameData
|
frm.GameData = oGameData
|
||||||
frm.ShowDialog()
|
frm.ShowDialog()
|
||||||
LoadGameSettings()
|
LoadGameSettings()
|
||||||
If oSettings.Sync Then mgrMonitorList.SyncMonitorLists(oSettings.SyncFields)
|
mgrMonitorList.SyncMonitorLists(oSettings.SyncFields)
|
||||||
End Sub
|
End Sub
|
||||||
|
|
||||||
Private Sub OpenMonitorList()
|
Private Sub OpenMonitorList()
|
||||||
Dim frm As New frmGameManager
|
Dim frm As New frmGameManager
|
||||||
frm.BackupFolder = oSettings.BackupFolder
|
frm.Settings = oSettings
|
||||||
frm.DisableExternalFunctions = True
|
frm.DisableExternalFunctions = True
|
||||||
frm.ShowDialog()
|
frm.ShowDialog()
|
||||||
LoadGameSettings()
|
LoadGameSettings()
|
||||||
If oSettings.Sync Then mgrMonitorList.SyncMonitorLists(oSettings.SyncFields)
|
|
||||||
End Sub
|
End Sub
|
||||||
|
|
||||||
Private Function ValidateBackupPath(ByVal strPath As String, ByRef sErrorMessage As String) As Boolean
|
Private Function ValidateBackupPath(ByVal strPath As String, ByRef sErrorMessage As String) As Boolean
|
||||||
@@ -183,10 +180,9 @@ Public Class frmStartUpWizard
|
|||||||
If ValidateBackupPath(txtBackupPath.Text, sErrorMessage) Then
|
If ValidateBackupPath(txtBackupPath.Text, sErrorMessage) Then
|
||||||
oSettings.BackupFolder = txtBackupPath.Text
|
oSettings.BackupFolder = txtBackupPath.Text
|
||||||
oSettings.CreateSubFolder = chkCreateFolder.Checked
|
oSettings.CreateSubFolder = chkCreateFolder.Checked
|
||||||
oSettings.Sync = chkSync.Checked
|
|
||||||
oSettings.SaveSettings()
|
oSettings.SaveSettings()
|
||||||
oSettings.LoadSettings()
|
oSettings.LoadSettings()
|
||||||
If oSettings.Sync Then CheckSync()
|
CheckSync()
|
||||||
eCurrentStep = eSteps.Step3
|
eCurrentStep = eSteps.Step3
|
||||||
Else
|
Else
|
||||||
bError = True
|
bError = True
|
||||||
|
|||||||
@@ -122,6 +122,8 @@
|
|||||||
<Import Include="System.Windows.Forms" />
|
<Import Include="System.Windows.Forms" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
|
<Compile Include="Classes\clsGameProcess.vb" />
|
||||||
|
<Compile Include="Classes\clsProcess.vb" />
|
||||||
<Compile Include="Classes\clsGameFilter.vb" />
|
<Compile Include="Classes\clsGameFilter.vb" />
|
||||||
<Compile Include="Classes\clsGameFilterField.vb" />
|
<Compile Include="Classes\clsGameFilterField.vb" />
|
||||||
<Compile Include="Classes\clsSavedPath.vb" />
|
<Compile Include="Classes\clsSavedPath.vb" />
|
||||||
@@ -159,6 +161,12 @@
|
|||||||
<Compile Include="Forms\frmFileFolderSearch.vb">
|
<Compile Include="Forms\frmFileFolderSearch.vb">
|
||||||
<SubType>Form</SubType>
|
<SubType>Form</SubType>
|
||||||
</Compile>
|
</Compile>
|
||||||
|
<Compile Include="Forms\frmGameProcesses.Designer.vb">
|
||||||
|
<DependentUpon>frmGameProcesses.vb</DependentUpon>
|
||||||
|
</Compile>
|
||||||
|
<Compile Include="Forms\frmGameProcesses.vb">
|
||||||
|
<SubType>Form</SubType>
|
||||||
|
</Compile>
|
||||||
<Compile Include="Forms\frmGameTags.Designer.vb">
|
<Compile Include="Forms\frmGameTags.Designer.vb">
|
||||||
<DependentUpon>frmGameTags.vb</DependentUpon>
|
<DependentUpon>frmGameTags.vb</DependentUpon>
|
||||||
</Compile>
|
</Compile>
|
||||||
@@ -171,6 +179,12 @@
|
|||||||
<Compile Include="Forms\frmIncludeExclude.vb">
|
<Compile Include="Forms\frmIncludeExclude.vb">
|
||||||
<SubType>Form</SubType>
|
<SubType>Form</SubType>
|
||||||
</Compile>
|
</Compile>
|
||||||
|
<Compile Include="Forms\frmProcessManager.Designer.vb">
|
||||||
|
<DependentUpon>frmProcessManager.vb</DependentUpon>
|
||||||
|
</Compile>
|
||||||
|
<Compile Include="Forms\frmProcessManager.vb">
|
||||||
|
<SubType>Form</SubType>
|
||||||
|
</Compile>
|
||||||
<Compile Include="Forms\frmSessionExport.Designer.vb">
|
<Compile Include="Forms\frmSessionExport.Designer.vb">
|
||||||
<DependentUpon>frmSessionExport.vb</DependentUpon>
|
<DependentUpon>frmSessionExport.vb</DependentUpon>
|
||||||
</Compile>
|
</Compile>
|
||||||
@@ -232,6 +246,8 @@
|
|||||||
<Compile Include="Forms\frmVariableManager.vb">
|
<Compile Include="Forms\frmVariableManager.vb">
|
||||||
<SubType>Form</SubType>
|
<SubType>Form</SubType>
|
||||||
</Compile>
|
</Compile>
|
||||||
|
<Compile Include="Managers\mgrGameProcesses.vb" />
|
||||||
|
<Compile Include="Managers\mgrProcess.vb" />
|
||||||
<Compile Include="Managers\mgrCommon.vb" />
|
<Compile Include="Managers\mgrCommon.vb" />
|
||||||
<Compile Include="Managers\mgrGameTags.vb" />
|
<Compile Include="Managers\mgrGameTags.vb" />
|
||||||
<Compile Include="Managers\mgrHash.vb" />
|
<Compile Include="Managers\mgrHash.vb" />
|
||||||
@@ -247,7 +263,7 @@
|
|||||||
<Compile Include="Managers\mgrTags.vb" />
|
<Compile Include="Managers\mgrTags.vb" />
|
||||||
<Compile Include="Managers\mgrVariables.vb" />
|
<Compile Include="Managers\mgrVariables.vb" />
|
||||||
<Compile Include="Managers\mgrXML.vb" />
|
<Compile Include="Managers\mgrXML.vb" />
|
||||||
<Compile Include="Managers\mgrProcesses.vb" />
|
<Compile Include="Managers\mgrProcessDetection.vb" />
|
||||||
<Compile Include="My Project\AssemblyInfo.vb" />
|
<Compile Include="My Project\AssemblyInfo.vb" />
|
||||||
<Compile Include="My Project\Application.Designer.vb">
|
<Compile Include="My Project\Application.Designer.vb">
|
||||||
<AutoGen>True</AutoGen>
|
<AutoGen>True</AutoGen>
|
||||||
@@ -277,12 +293,18 @@
|
|||||||
<EmbeddedResource Include="Forms\frmFileFolderSearch.resx">
|
<EmbeddedResource Include="Forms\frmFileFolderSearch.resx">
|
||||||
<DependentUpon>frmFileFolderSearch.vb</DependentUpon>
|
<DependentUpon>frmFileFolderSearch.vb</DependentUpon>
|
||||||
</EmbeddedResource>
|
</EmbeddedResource>
|
||||||
|
<EmbeddedResource Include="Forms\frmGameProcesses.resx">
|
||||||
|
<DependentUpon>frmGameProcesses.vb</DependentUpon>
|
||||||
|
</EmbeddedResource>
|
||||||
<EmbeddedResource Include="Forms\frmGameTags.resx">
|
<EmbeddedResource Include="Forms\frmGameTags.resx">
|
||||||
<DependentUpon>frmGameTags.vb</DependentUpon>
|
<DependentUpon>frmGameTags.vb</DependentUpon>
|
||||||
</EmbeddedResource>
|
</EmbeddedResource>
|
||||||
<EmbeddedResource Include="Forms\frmIncludeExclude.resx">
|
<EmbeddedResource Include="Forms\frmIncludeExclude.resx">
|
||||||
<DependentUpon>frmIncludeExclude.vb</DependentUpon>
|
<DependentUpon>frmIncludeExclude.vb</DependentUpon>
|
||||||
</EmbeddedResource>
|
</EmbeddedResource>
|
||||||
|
<EmbeddedResource Include="Forms\frmProcessManager.resx">
|
||||||
|
<DependentUpon>frmProcessManager.vb</DependentUpon>
|
||||||
|
</EmbeddedResource>
|
||||||
<EmbeddedResource Include="Forms\frmSessionExport.resx">
|
<EmbeddedResource Include="Forms\frmSessionExport.resx">
|
||||||
<DependentUpon>frmSessionExport.vb</DependentUpon>
|
<DependentUpon>frmSessionExport.vb</DependentUpon>
|
||||||
</EmbeddedResource>
|
</EmbeddedResource>
|
||||||
@@ -365,6 +387,8 @@
|
|||||||
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
||||||
</Content>
|
</Content>
|
||||||
<Content Include="References\Mono.Data.Sqlite.dll" />
|
<Content Include="References\Mono.Data.Sqlite.dll" />
|
||||||
|
<Content Include="Resources\New.png" />
|
||||||
|
<Content Include="Resources\Update.png" />
|
||||||
<Content Include="Utilities\x64\7za.exe">
|
<Content Include="Utilities\x64\7za.exe">
|
||||||
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
||||||
</Content>
|
</Content>
|
||||||
|
|||||||
+28
-16
@@ -40,25 +40,25 @@ Public Class mgrBackup
|
|||||||
Dim oItem As New clsBackup
|
Dim oItem As New clsBackup
|
||||||
|
|
||||||
'Create manifest item
|
'Create manifest item
|
||||||
oItem.Name = oGameInfo.Name
|
oItem.MonitorID = oGameInfo.ID
|
||||||
'Keep the path relative to the manifest location
|
'Keep the path relative to the manifest location
|
||||||
oItem.FileName = sBackupFile.Replace(Path.GetDirectoryName(mgrPath.RemoteDatabaseLocation) & Path.DirectorySeparatorChar, "")
|
oItem.FileName = sBackupFile.Replace(Path.GetDirectoryName(mgrPath.RemoteDatabaseLocation) & Path.DirectorySeparatorChar, "")
|
||||||
oItem.RestorePath = oGameInfo.TruePath
|
|
||||||
oItem.AbsolutePath = oGameInfo.AbsolutePath
|
|
||||||
oItem.DateUpdated = dTimeStamp
|
oItem.DateUpdated = dTimeStamp
|
||||||
oItem.UpdatedBy = My.Computer.Name
|
oItem.UpdatedBy = My.Computer.Name
|
||||||
oItem.CheckSum = sCheckSum
|
oItem.CheckSum = sCheckSum
|
||||||
|
|
||||||
'Save Remote Manifest
|
'Save Remote Manifest
|
||||||
If mgrManifest.DoSpecificManifestCheck(oItem, mgrSQLite.Database.Remote) Then
|
If Not oGameInfo.AppendTimeStamp Then
|
||||||
mgrManifest.DoManifestUpdateByID(oItem, mgrSQLite.Database.Remote)
|
If Not mgrManifest.DoUpdateLatestManifest(oItem, mgrSQLite.Database.Remote) Then
|
||||||
|
mgrManifest.DoManifestAdd(oItem, mgrSQLite.Database.Remote)
|
||||||
|
End If
|
||||||
Else
|
Else
|
||||||
mgrManifest.DoManifestAdd(oItem, mgrSQLite.Database.Remote)
|
mgrManifest.DoManifestAdd(oItem, mgrSQLite.Database.Remote)
|
||||||
End If
|
End If
|
||||||
|
|
||||||
'Save Local Manifest
|
'Save Local Manifest
|
||||||
If mgrManifest.DoGlobalManifestCheck(oItem.Name, mgrSQLite.Database.Local) Then
|
If mgrManifest.DoManifestCheck(oItem.MonitorID, mgrSQLite.Database.Local) Then
|
||||||
mgrManifest.DoManifestUpdateByName(oItem, mgrSQLite.Database.Local)
|
mgrManifest.DoManifestUpdateByMonitorID(oItem, mgrSQLite.Database.Local)
|
||||||
Else
|
Else
|
||||||
mgrManifest.DoManifestAdd(oItem, mgrSQLite.Database.Local)
|
mgrManifest.DoManifestAdd(oItem, mgrSQLite.Database.Local)
|
||||||
End If
|
End If
|
||||||
@@ -101,14 +101,26 @@ Public Class mgrBackup
|
|||||||
Return sSavePath
|
Return sSavePath
|
||||||
End Function
|
End Function
|
||||||
|
|
||||||
|
Private Function GetFileName(ByVal oGame As clsGame) As String
|
||||||
|
Dim sName As String
|
||||||
|
|
||||||
|
If oSettings.UseGameID Then
|
||||||
|
sName = oGame.ID
|
||||||
|
Else
|
||||||
|
sName = oGame.FileSafeName
|
||||||
|
End If
|
||||||
|
|
||||||
|
Return sName
|
||||||
|
End Function
|
||||||
|
|
||||||
Public Function CheckBackupPrereq(ByVal oGame As clsGame) As Boolean
|
Public Function CheckBackupPrereq(ByVal oGame As clsGame) As Boolean
|
||||||
Dim sBackupFile As String = oSettings.BackupFolder
|
Dim sBackupFile As String = oSettings.BackupFolder
|
||||||
Dim sSavePath As String
|
Dim sSavePath As String
|
||||||
Dim lAvailableSpace As Long
|
Dim lAvailableSpace As Long
|
||||||
Dim lFolderSize As Long
|
Dim lFolderSize As Long
|
||||||
|
|
||||||
If oSettings.CreateSubFolder Then sBackupFile = sBackupFile & Path.DirectorySeparatorChar & oGame.FileSafeName
|
If oSettings.CreateSubFolder Then sBackupFile = sBackupFile & Path.DirectorySeparatorChar & GetFileName(oGame)
|
||||||
sBackupFile = sBackupFile & Path.DirectorySeparatorChar & oGame.FileSafeName & ".7z"
|
sBackupFile = sBackupFile & Path.DirectorySeparatorChar & GetFileName(oGame) & ".7z"
|
||||||
|
|
||||||
'Verify saved game path
|
'Verify saved game path
|
||||||
sSavePath = VerifySavePath(oGame)
|
sSavePath = VerifySavePath(oGame)
|
||||||
@@ -130,7 +142,7 @@ Public Class mgrBackup
|
|||||||
End If
|
End If
|
||||||
End If
|
End If
|
||||||
|
|
||||||
If mgrRestore.CheckManifest(oGame.Name) Then
|
If mgrRestore.CheckManifest(oGame.ID) Then
|
||||||
If mgrCommon.ShowMessage(mgrBackup_ConfirmManifestConflict, oGame.Name, MsgBoxStyle.YesNo) = MsgBoxResult.No Then
|
If mgrCommon.ShowMessage(mgrBackup_ConfirmManifestConflict, oGame.Name, MsgBoxStyle.YesNo) = MsgBoxResult.No Then
|
||||||
RaiseEvent UpdateLog(mgrBackup_ErrorManifestConflict, False, ToolTipIcon.Error, True)
|
RaiseEvent UpdateLog(mgrBackup_ErrorManifestConflict, False, ToolTipIcon.Error, True)
|
||||||
Return False
|
Return False
|
||||||
@@ -148,7 +160,7 @@ Public Class mgrBackup
|
|||||||
End Function
|
End Function
|
||||||
|
|
||||||
Private Sub CheckOldBackups(ByVal oGame As clsGame)
|
Private Sub CheckOldBackups(ByVal oGame As clsGame)
|
||||||
Dim oGameBackups As List(Of clsBackup) = mgrManifest.DoManifestGetByName(oGame.Name, mgrSQLite.Database.Remote)
|
Dim oGameBackups As List(Of clsBackup) = mgrManifest.DoManifestGetByMonitorID(oGame.ID, mgrSQLite.Database.Remote)
|
||||||
Dim oGameBackup As clsBackup
|
Dim oGameBackup As clsBackup
|
||||||
Dim sOldBackup As String
|
Dim sOldBackup As String
|
||||||
Dim iBackupCount As Integer = oGameBackups.Count
|
Dim iBackupCount As Integer = oGameBackups.Count
|
||||||
@@ -164,8 +176,8 @@ Public Class mgrBackup
|
|||||||
oGameBackup = oGameBackups(oGameBackups.Count - i)
|
oGameBackup = oGameBackups(oGameBackups.Count - i)
|
||||||
sOldBackup = Settings.BackupFolder & Path.DirectorySeparatorChar & oGameBackup.FileName
|
sOldBackup = Settings.BackupFolder & Path.DirectorySeparatorChar & oGameBackup.FileName
|
||||||
|
|
||||||
mgrManifest.DoManifestDeletebyID(oGameBackup, mgrSQLite.Database.Remote)
|
mgrManifest.DoManifestDeleteByManifestID(oGameBackup, mgrSQLite.Database.Remote)
|
||||||
mgrManifest.DoManifestDeletebyID(oGameBackup, mgrSQLite.Database.Local)
|
mgrManifest.DoManifestDeleteByManifestID(oGameBackup, mgrSQLite.Database.Local)
|
||||||
mgrCommon.DeleteFile(sOldBackup)
|
mgrCommon.DeleteFile(sOldBackup)
|
||||||
mgrCommon.DeleteDirectoryByBackup(Settings.BackupFolder & Path.DirectorySeparatorChar, oGameBackup)
|
mgrCommon.DeleteDirectoryByBackup(Settings.BackupFolder & Path.DirectorySeparatorChar, oGameBackup)
|
||||||
|
|
||||||
@@ -199,7 +211,7 @@ Public Class mgrBackup
|
|||||||
RaiseEvent UpdateBackupInfo(oGame)
|
RaiseEvent UpdateBackupInfo(oGame)
|
||||||
|
|
||||||
If oSettings.CreateSubFolder Then
|
If oSettings.CreateSubFolder Then
|
||||||
sBackupFile = sBackupFile & Path.DirectorySeparatorChar & oGame.FileSafeName
|
sBackupFile = sBackupFile & Path.DirectorySeparatorChar & GetFileName(oGame)
|
||||||
Try
|
Try
|
||||||
If Not Directory.Exists(sBackupFile) Then
|
If Not Directory.Exists(sBackupFile) Then
|
||||||
Directory.CreateDirectory(sBackupFile)
|
Directory.CreateDirectory(sBackupFile)
|
||||||
@@ -212,9 +224,9 @@ Public Class mgrBackup
|
|||||||
|
|
||||||
If oGame.AppendTimeStamp Then
|
If oGame.AppendTimeStamp Then
|
||||||
CheckOldBackups(oGame)
|
CheckOldBackups(oGame)
|
||||||
sBackupFile = sBackupFile & Path.DirectorySeparatorChar & oGame.FileSafeName & sTimeStamp & ".7z"
|
sBackupFile = sBackupFile & Path.DirectorySeparatorChar & GetFileName(oGame) & sTimeStamp & ".7z"
|
||||||
Else
|
Else
|
||||||
sBackupFile = sBackupFile & Path.DirectorySeparatorChar & oGame.FileSafeName & ".7z"
|
sBackupFile = sBackupFile & Path.DirectorySeparatorChar & GetFileName(oGame) & ".7z"
|
||||||
End If
|
End If
|
||||||
|
|
||||||
If bDoBackup Then
|
If bDoBackup Then
|
||||||
|
|||||||
@@ -65,9 +65,16 @@ Public Class mgrCommon
|
|||||||
Return oFormatter.Deserialize(oStream)
|
Return oFormatter.Deserialize(oStream)
|
||||||
End Function
|
End Function
|
||||||
|
|
||||||
Public Shared Function CheckAddress(ByVal URL As String) As Boolean
|
Public Shared Function IsAddress(ByVal sURL As String) As Boolean
|
||||||
|
If (sURL.IndexOf("http://", 0, StringComparison.CurrentCultureIgnoreCase) > -1) Or (sURL.IndexOf("https://", 0, StringComparison.CurrentCultureIgnoreCase) > -1) Then
|
||||||
|
Return True
|
||||||
|
End If
|
||||||
|
Return False
|
||||||
|
End Function
|
||||||
|
|
||||||
|
Public Shared Function CheckAddress(ByVal sURL As String) As Boolean
|
||||||
Try
|
Try
|
||||||
Dim request As WebRequest = WebRequest.Create(URL)
|
Dim request As WebRequest = WebRequest.Create(sURL)
|
||||||
Dim response As WebResponse = request.GetResponse()
|
Dim response As WebResponse = request.GetResponse()
|
||||||
response.Close()
|
response.Close()
|
||||||
Catch ex As Exception
|
Catch ex As Exception
|
||||||
@@ -202,11 +209,6 @@ Public Class mgrCommon
|
|||||||
Dim sExemptList As String() = {"dosbox", "scummvm"}
|
Dim sExemptList As String() = {"dosbox", "scummvm"}
|
||||||
Dim bFound As Boolean = False
|
Dim bFound As Boolean = False
|
||||||
|
|
||||||
'We can't search if we don't have a configuration
|
|
||||||
If oGame.Temporary Then
|
|
||||||
Return True
|
|
||||||
End If
|
|
||||||
|
|
||||||
For Each s As String In sExemptList
|
For Each s As String In sExemptList
|
||||||
If oGame.ProcessName.ToLower.Contains(s) Then bFound = True
|
If oGame.ProcessName.ToLower.Contains(s) Then bFound = True
|
||||||
Next
|
Next
|
||||||
@@ -430,10 +432,10 @@ Public Class mgrCommon
|
|||||||
'Delete a sub-folder based on the provided backup information
|
'Delete a sub-folder based on the provided backup information
|
||||||
Public Shared Sub DeleteDirectoryByBackup(ByVal sBackupFolder As String, ByVal oBackup As clsBackup)
|
Public Shared Sub DeleteDirectoryByBackup(ByVal sBackupFolder As String, ByVal oBackup As clsBackup)
|
||||||
Dim oDir As DirectoryInfo
|
Dim oDir As DirectoryInfo
|
||||||
Dim sDir As String = sBackupFolder & oBackup.SafeName
|
Dim sDir As String = sBackupFolder & oBackup.MonitorID
|
||||||
|
|
||||||
'Delete sub directory if it's empty
|
'Delete sub directory if it's empty
|
||||||
If oBackup.FileName.StartsWith(oBackup.SafeName & Path.DirectorySeparatorChar) Then
|
If oBackup.FileName.StartsWith(oBackup.MonitorID & Path.DirectorySeparatorChar) Then
|
||||||
If Directory.Exists(sDir) Then
|
If Directory.Exists(sDir) Then
|
||||||
'Check if there's any sub-directories or files remaining
|
'Check if there's any sub-directories or files remaining
|
||||||
oDir = New DirectoryInfo(sDir)
|
oDir = New DirectoryInfo(sDir)
|
||||||
|
|||||||
@@ -0,0 +1,163 @@
|
|||||||
|
Public Class mgrGameProcesses
|
||||||
|
|
||||||
|
Public Shared Sub DoGameProcessAdd(ByVal oGameProcess As clsGameProcess)
|
||||||
|
Dim oDatabase As New mgrSQLite(mgrSQLite.Database.Local)
|
||||||
|
Dim sSQL As String
|
||||||
|
Dim hshParams As New Hashtable
|
||||||
|
|
||||||
|
sSQL = "INSERT INTO gameprocesses VALUES (@ProcessID, @MonitorID)"
|
||||||
|
hshParams.Add("ProcessID", oGameProcess.ProcessID)
|
||||||
|
hshParams.Add("MonitorID", oGameProcess.MonitorID)
|
||||||
|
oDatabase.RunParamQuery(sSQL, hshParams)
|
||||||
|
End Sub
|
||||||
|
|
||||||
|
Public Shared Sub DoGameProcessAddBatch(ByVal oGameProcesss As List(Of clsGameProcess))
|
||||||
|
Dim oDatabase As New mgrSQLite(mgrSQLite.Database.Local)
|
||||||
|
Dim sSQL As String
|
||||||
|
Dim hshParams As Hashtable
|
||||||
|
Dim oParamList As New List(Of Hashtable)
|
||||||
|
|
||||||
|
sSQL = "INSERT INTO gameprocesses VALUES (@ProcessID, @MonitorID);"
|
||||||
|
|
||||||
|
For Each oGameProcess As clsGameProcess In oGameProcesss
|
||||||
|
hshParams = New Hashtable
|
||||||
|
hshParams.Add("ProcessID", oGameProcess.ProcessID)
|
||||||
|
hshParams.Add("MonitorID", oGameProcess.MonitorID)
|
||||||
|
oParamList.Add(hshParams)
|
||||||
|
Next
|
||||||
|
|
||||||
|
oDatabase.RunMassParamQuery(sSQL, oParamList)
|
||||||
|
End Sub
|
||||||
|
|
||||||
|
Public Shared Sub DoGameProcessDelete(ByVal oGameProcesss As List(Of clsGameProcess))
|
||||||
|
Dim oDatabase As New mgrSQLite(mgrSQLite.Database.Local)
|
||||||
|
Dim sSQL As String
|
||||||
|
Dim hshParams As Hashtable
|
||||||
|
Dim oParamList As New List(Of Hashtable)
|
||||||
|
|
||||||
|
sSQL = "DELETE FROM gameprocesses "
|
||||||
|
sSQL &= "WHERE ProcessID = @ProcessID AND MonitorID = @MonitorID;"
|
||||||
|
|
||||||
|
For Each oGameProcess As clsGameProcess In oGameProcesss
|
||||||
|
hshParams = New Hashtable
|
||||||
|
hshParams.Add("ProcessID", oGameProcess.ProcessID)
|
||||||
|
hshParams.Add("MonitorID", oGameProcess.MonitorID)
|
||||||
|
oParamList.Add(hshParams)
|
||||||
|
Next
|
||||||
|
|
||||||
|
oDatabase.RunMassParamQuery(sSQL, oParamList)
|
||||||
|
End Sub
|
||||||
|
|
||||||
|
Public Shared Sub DoGameProcessDeleteByGame(ByVal sMonitorID As String)
|
||||||
|
Dim oDatabase As New mgrSQLite(mgrSQLite.Database.Local)
|
||||||
|
Dim sSQL As String
|
||||||
|
Dim hshParams As New Hashtable
|
||||||
|
|
||||||
|
sSQL = "DELETE FROM gameprocesses "
|
||||||
|
sSQL &= "WHERE MonitorID = @ID;"
|
||||||
|
|
||||||
|
hshParams.Add("ID", sMonitorID)
|
||||||
|
|
||||||
|
oDatabase.RunParamQuery(sSQL, hshParams)
|
||||||
|
End Sub
|
||||||
|
|
||||||
|
|
||||||
|
Public Shared Sub DoGameProcessDeleteByProcess(ByVal sProcessID As String)
|
||||||
|
Dim oDatabase As New mgrSQLite(mgrSQLite.Database.Local)
|
||||||
|
Dim sSQL As String
|
||||||
|
Dim hshParams As New Hashtable
|
||||||
|
|
||||||
|
sSQL = "DELETE FROM gameprocesses "
|
||||||
|
sSQL &= "WHERE ProcessID = @ID;"
|
||||||
|
|
||||||
|
hshParams.Add("ID", sProcessID)
|
||||||
|
|
||||||
|
oDatabase.RunParamQuery(sSQL, hshParams)
|
||||||
|
|
||||||
|
End Sub
|
||||||
|
|
||||||
|
Public Shared Function GetProcessesByGame(ByVal sMonitorID As String) As Hashtable
|
||||||
|
Dim oDatabase As New mgrSQLite(mgrSQLite.Database.Local)
|
||||||
|
Dim oData As DataSet
|
||||||
|
Dim sSQL As String
|
||||||
|
Dim hshList As New Hashtable
|
||||||
|
Dim hshParams As New Hashtable
|
||||||
|
Dim oProcess As clsProcess
|
||||||
|
|
||||||
|
sSQL = "SELECT ProcessID, processes.Name, processes.Path, processes.Args, processes.Kill FROM gameprocesses NATURAL JOIN processes WHERE MonitorID = @ID"
|
||||||
|
|
||||||
|
hshParams.Add("ID", sMonitorID)
|
||||||
|
|
||||||
|
oData = oDatabase.ReadParamData(sSQL, hshParams)
|
||||||
|
|
||||||
|
For Each dr As DataRow In oData.Tables(0).Rows
|
||||||
|
oProcess = New clsProcess
|
||||||
|
oProcess.ID = CStr(dr("ProcessID"))
|
||||||
|
oProcess.Name = CStr(dr("Name"))
|
||||||
|
oProcess.Path = CStr(dr("Path"))
|
||||||
|
If Not IsDBNull(dr("Args")) Then oProcess.Args = CStr(dr("Args"))
|
||||||
|
oProcess.Kill = CBool(dr("Kill"))
|
||||||
|
|
||||||
|
hshList.Add(oProcess.ID, oProcess)
|
||||||
|
Next
|
||||||
|
|
||||||
|
Return hshList
|
||||||
|
End Function
|
||||||
|
|
||||||
|
Public Shared Function GetProcessesByGameMulti(ByVal sMonitorIDs As List(Of String)) As Hashtable
|
||||||
|
Dim oDatabase As New mgrSQLite(mgrSQLite.Database.Local)
|
||||||
|
Dim oData As DataSet
|
||||||
|
Dim sSQL As String
|
||||||
|
Dim hshList As New Hashtable
|
||||||
|
Dim hshParams As New Hashtable
|
||||||
|
Dim oProcess As clsProcess
|
||||||
|
Dim iCounter As Integer
|
||||||
|
|
||||||
|
sSQL = "SELECT DISTINCT ProcessID, processes.Name, processes.Path, processes.Args, processes.Kill FROM gameprocesses NATURAL JOIN processes WHERE MonitorID IN ("
|
||||||
|
|
||||||
|
For Each s As String In sMonitorIDs
|
||||||
|
sSQL &= "@MonitorID" & iCounter & ","
|
||||||
|
hshParams.Add("MonitorID" & iCounter, s)
|
||||||
|
iCounter += 1
|
||||||
|
Next
|
||||||
|
|
||||||
|
sSQL = sSQL.TrimEnd(",")
|
||||||
|
sSQL &= ")"
|
||||||
|
|
||||||
|
oData = oDatabase.ReadParamData(sSQL, hshParams)
|
||||||
|
|
||||||
|
For Each dr As DataRow In oData.Tables(0).Rows
|
||||||
|
oProcess = New clsProcess
|
||||||
|
oProcess.ID = CStr(dr("ProcessID"))
|
||||||
|
oProcess.Name = CStr(dr("Name"))
|
||||||
|
oProcess.Path = CStr(dr("Path"))
|
||||||
|
If Not IsDBNull(dr("Args")) Then oProcess.Args = CStr(dr("Args"))
|
||||||
|
oProcess.Kill = CBool(dr("Kill"))
|
||||||
|
hshList.Add(oProcess.ID, oProcess)
|
||||||
|
Next
|
||||||
|
|
||||||
|
Return hshList
|
||||||
|
End Function
|
||||||
|
|
||||||
|
Public Shared Function ReadGameProcesss() As Hashtable
|
||||||
|
Dim oDatabase As New mgrSQLite(mgrSQLite.Database.Local)
|
||||||
|
Dim oData As DataSet
|
||||||
|
Dim sSQL As String
|
||||||
|
Dim sCompoundKey As String
|
||||||
|
Dim hshList As New Hashtable
|
||||||
|
Dim oGameProcess As clsGameProcess
|
||||||
|
|
||||||
|
sSQL = "SELECT * from gameprocesses"
|
||||||
|
oData = oDatabase.ReadParamData(sSQL, New Hashtable)
|
||||||
|
|
||||||
|
For Each dr As DataRow In oData.Tables(0).Rows
|
||||||
|
oGameProcess = New clsGameProcess
|
||||||
|
oGameProcess.ProcessID = CStr(dr("ProcessID"))
|
||||||
|
oGameProcess.MonitorID = CStr(dr("MonitorID"))
|
||||||
|
sCompoundKey = oGameProcess.ProcessID & ":" & oGameProcess.MonitorID
|
||||||
|
hshList.Add(sCompoundKey, oGameProcess)
|
||||||
|
Next
|
||||||
|
|
||||||
|
Return hshList
|
||||||
|
End Function
|
||||||
|
End Class
|
||||||
+45
-71
@@ -4,10 +4,11 @@
|
|||||||
Dim oBackupItem As clsBackup
|
Dim oBackupItem As clsBackup
|
||||||
|
|
||||||
oBackupItem = New clsBackup
|
oBackupItem = New clsBackup
|
||||||
oBackupItem.ID = CStr(dr("ManifestID"))
|
oBackupItem.ManifestID = CStr(dr("ManifestID"))
|
||||||
|
oBackupItem.MonitorID = CStr(dr("MonitorID"))
|
||||||
oBackupItem.Name = CStr(dr("Name"))
|
oBackupItem.Name = CStr(dr("Name"))
|
||||||
oBackupItem.FileName = CStr(dr("FileName"))
|
oBackupItem.FileName = CStr(dr("FileName"))
|
||||||
oBackupItem.RestorePath = CStr(dr("RestorePath"))
|
oBackupItem.RestorePath = CStr(dr("Path"))
|
||||||
oBackupItem.AbsolutePath = CBool(dr("AbsolutePath"))
|
oBackupItem.AbsolutePath = CBool(dr("AbsolutePath"))
|
||||||
oBackupItem.DateUpdated = mgrCommon.UnixToDate(dr("DateUpdated"))
|
oBackupItem.DateUpdated = mgrCommon.UnixToDate(dr("DateUpdated"))
|
||||||
oBackupItem.UpdatedBy = CStr(dr("UpdatedBy"))
|
oBackupItem.UpdatedBy = CStr(dr("UpdatedBy"))
|
||||||
@@ -19,11 +20,9 @@
|
|||||||
Private Shared Function SetCoreParameters(ByVal oBackupItem As clsBackup) As Hashtable
|
Private Shared Function SetCoreParameters(ByVal oBackupItem As clsBackup) As Hashtable
|
||||||
Dim hshParams As New Hashtable
|
Dim hshParams As New Hashtable
|
||||||
|
|
||||||
hshParams.Add("ID", oBackupItem.ID)
|
hshParams.Add("ManifestID", oBackupItem.ManifestID)
|
||||||
hshParams.Add("Name", oBackupItem.Name)
|
hshParams.Add("MonitorID", oBackupItem.MonitorID)
|
||||||
hshParams.Add("FileName", oBackupItem.FileName)
|
hshParams.Add("FileName", oBackupItem.FileName)
|
||||||
hshParams.Add("Path", oBackupItem.TruePath)
|
|
||||||
hshParams.Add("AbsolutePath", oBackupItem.AbsolutePath)
|
|
||||||
hshParams.Add("DateUpdated", oBackupItem.DateUpdatedUnix)
|
hshParams.Add("DateUpdated", oBackupItem.DateUpdatedUnix)
|
||||||
hshParams.Add("UpdatedBy", oBackupItem.UpdatedBy)
|
hshParams.Add("UpdatedBy", oBackupItem.UpdatedBy)
|
||||||
hshParams.Add("CheckSum", oBackupItem.CheckSum)
|
hshParams.Add("CheckSum", oBackupItem.CheckSum)
|
||||||
@@ -38,12 +37,12 @@
|
|||||||
Dim oBackupItem As clsBackup
|
Dim oBackupItem As clsBackup
|
||||||
Dim slList As New SortedList
|
Dim slList As New SortedList
|
||||||
|
|
||||||
sSQL = "SELECT * from manifest ORDER BY Name Asc"
|
sSQL = "SELECT * from manifest NATURAL JOIN monitorlist ORDER BY Name Asc"
|
||||||
oData = oDatabase.ReadParamData(sSQL, New Hashtable)
|
oData = oDatabase.ReadParamData(sSQL, New Hashtable)
|
||||||
|
|
||||||
For Each dr As DataRow In oData.Tables(0).Rows
|
For Each dr As DataRow In oData.Tables(0).Rows
|
||||||
oBackupItem = MapToObject(dr)
|
oBackupItem = MapToObject(dr)
|
||||||
slList.Add(oBackupItem.ID, oBackupItem)
|
slList.Add(oBackupItem.ManifestID, oBackupItem)
|
||||||
Next
|
Next
|
||||||
|
|
||||||
Return slList
|
Return slList
|
||||||
@@ -57,19 +56,19 @@
|
|||||||
Dim oBackupItem As clsBackup
|
Dim oBackupItem As clsBackup
|
||||||
Dim slList As New SortedList
|
Dim slList As New SortedList
|
||||||
|
|
||||||
sSQL = "SELECT ManifestID, Name, FileName, RestorePath, AbsolutePath, Max(DateUpdated) As DateUpdated, UpdatedBy, CheckSum FROM manifest GROUP BY Name ORDER By Name ASC"
|
sSQL = "SELECT ManifestID, MonitorID, Name, FileName, Path, AbsolutePath, Max(DateUpdated) As DateUpdated, UpdatedBy, CheckSum FROM manifest NATURAL JOIN monitorlist GROUP BY Name ORDER By Name ASC"
|
||||||
oData = oDatabase.ReadParamData(sSQL, New Hashtable)
|
oData = oDatabase.ReadParamData(sSQL, New Hashtable)
|
||||||
|
|
||||||
For Each dr As DataRow In oData.Tables(0).Rows
|
For Each dr As DataRow In oData.Tables(0).Rows
|
||||||
oBackupItem = MapToObject(dr)
|
oBackupItem = MapToObject(dr)
|
||||||
slList.Add(oBackupItem.Name, oBackupItem)
|
slList.Add(oBackupItem.MonitorID, oBackupItem)
|
||||||
Next
|
Next
|
||||||
|
|
||||||
Return slList
|
Return slList
|
||||||
|
|
||||||
End Function
|
End Function
|
||||||
|
|
||||||
Public Shared Function DoManifestGetByName(ByVal sName As String, ByVal iSelectDB As mgrSQLite.Database) As List(Of clsBackup)
|
Public Shared Function DoManifestGetByMonitorID(ByVal sMonitorID As String, ByVal iSelectDB As mgrSQLite.Database) As List(Of clsBackup)
|
||||||
Dim oDatabase As New mgrSQLite(iSelectDB)
|
Dim oDatabase As New mgrSQLite(iSelectDB)
|
||||||
Dim oData As DataSet
|
Dim oData As DataSet
|
||||||
Dim sSQL As String
|
Dim sSQL As String
|
||||||
@@ -78,10 +77,10 @@
|
|||||||
Dim oList As New List(Of clsBackup)
|
Dim oList As New List(Of clsBackup)
|
||||||
|
|
||||||
|
|
||||||
sSQL = "SELECT * from manifest "
|
sSQL = "SELECT * FROM manifest NATURAL JOIN monitorlist "
|
||||||
sSQL &= "WHERE Name = @Name ORDER BY DateUpdated Desc"
|
sSQL &= "WHERE MonitorID = @MonitorID ORDER BY DateUpdated Desc"
|
||||||
|
|
||||||
hshParams.Add("Name", sName)
|
hshParams.Add("MonitorID", sMonitorID)
|
||||||
|
|
||||||
oData = oDatabase.ReadParamData(sSQL, hshParams)
|
oData = oDatabase.ReadParamData(sSQL, hshParams)
|
||||||
|
|
||||||
@@ -93,7 +92,7 @@
|
|||||||
Return oList
|
Return oList
|
||||||
End Function
|
End Function
|
||||||
|
|
||||||
Public Shared Function DoManifestGetByID(ByVal sID As String, ByVal iSelectDB As mgrSQLite.Database) As clsBackup
|
Public Shared Function DoManifestGetByManifestID(ByVal sManifestID As String, ByVal iSelectDB As mgrSQLite.Database) As clsBackup
|
||||||
Dim oDatabase As New mgrSQLite(iSelectDB)
|
Dim oDatabase As New mgrSQLite(iSelectDB)
|
||||||
Dim oData As DataSet
|
Dim oData As DataSet
|
||||||
Dim sSQL As String
|
Dim sSQL As String
|
||||||
@@ -101,10 +100,10 @@
|
|||||||
Dim oBackupItem As New clsBackup
|
Dim oBackupItem As New clsBackup
|
||||||
Dim oList As New List(Of clsBackup)
|
Dim oList As New List(Of clsBackup)
|
||||||
|
|
||||||
sSQL = "SELECT * from manifest "
|
sSQL = "SELECT * FROM manifest NATURAL JOIN monitorlist "
|
||||||
sSQL &= "WHERE ManifestID = @ID ORDER BY DateUpdated Desc"
|
sSQL &= "WHERE ManifestID = @ManifestID ORDER BY DateUpdated Desc"
|
||||||
|
|
||||||
hshParams.Add("ID", sID)
|
hshParams.Add("ManifestID", sManifestID)
|
||||||
|
|
||||||
oData = oDatabase.ReadParamData(sSQL, hshParams)
|
oData = oDatabase.ReadParamData(sSQL, hshParams)
|
||||||
|
|
||||||
@@ -115,25 +114,22 @@
|
|||||||
Return oBackupItem
|
Return oBackupItem
|
||||||
End Function
|
End Function
|
||||||
|
|
||||||
'This should only be used to update specific entries in the remote manifest
|
Public Shared Function DoUpdateLatestManifest(ByRef oItem As clsBackup, ByVal iSelectDB As mgrSQLite.Database) As Boolean
|
||||||
Public Shared Function DoSpecificManifestCheck(ByRef oItem As clsBackup, ByVal iSelectDB As mgrSQLite.Database) As Boolean
|
|
||||||
Dim oDatabase As New mgrSQLite(iSelectDB)
|
Dim oDatabase As New mgrSQLite(iSelectDB)
|
||||||
Dim oData As DataSet
|
Dim oData As Object
|
||||||
Dim sSQL As String
|
Dim sSQL As String
|
||||||
Dim hshParams As New Hashtable
|
Dim hshParams As New Hashtable
|
||||||
|
|
||||||
sSQL = "SELECT * from manifest "
|
sSQL = "SELECT ManifestID FROM manifest NATURAL JOIN monitorlist "
|
||||||
sSQL &= "WHERE Name = @Name AND FileName = @FileName"
|
sSQL &= "WHERE MonitorID = @MonitorID ORDER BY DateUpdated DESC LIMIT 1"
|
||||||
|
|
||||||
hshParams.Add("Name", oItem.Name)
|
hshParams.Add("MonitorID", oItem.MonitorID)
|
||||||
hshParams.Add("FileName", oItem.FileName)
|
|
||||||
|
|
||||||
oData = oDatabase.ReadParamData(sSQL, hshParams)
|
oData = oDatabase.ReadSingleValue(sSQL, hshParams)
|
||||||
|
|
||||||
If oData.Tables(0).Rows.Count > 0 Then
|
If Not oData Is Nothing Then
|
||||||
For Each dr As DataRow In oData.Tables(0).Rows
|
oItem.ManifestID = CStr(oData)
|
||||||
oItem.ID = CStr(dr("ManifestID"))
|
DoManifestUpdateByManifestID(oItem, mgrSQLite.Database.Remote)
|
||||||
Next
|
|
||||||
Return True
|
Return True
|
||||||
Else
|
Else
|
||||||
Return False
|
Return False
|
||||||
@@ -141,38 +137,16 @@
|
|||||||
|
|
||||||
End Function
|
End Function
|
||||||
|
|
||||||
'This should only be used to update entries in the local manifest
|
Public Shared Function DoManifestCheck(ByVal sMonitorID As String, ByVal iSelectDB As mgrSQLite.Database) As Boolean
|
||||||
Public Shared Function DoGlobalManifestCheck(ByVal sName As String, ByVal iSelectDB As mgrSQLite.Database) As Boolean
|
|
||||||
Dim oDatabase As New mgrSQLite(iSelectDB)
|
Dim oDatabase As New mgrSQLite(iSelectDB)
|
||||||
Dim oData As DataSet
|
Dim oData As DataSet
|
||||||
Dim sSQL As String
|
Dim sSQL As String
|
||||||
Dim hshParams As New Hashtable
|
Dim hshParams As New Hashtable
|
||||||
|
|
||||||
sSQL = "SELECT * from manifest "
|
sSQL = "SELECT * FROM manifest "
|
||||||
sSQL &= "WHERE Name = @Name"
|
sSQL &= "WHERE MonitorID = @MonitorID"
|
||||||
|
|
||||||
hshParams.Add("Name", sName)
|
hshParams.Add("MonitorID", sMonitorID)
|
||||||
|
|
||||||
oData = oDatabase.ReadParamData(sSQL, hshParams)
|
|
||||||
|
|
||||||
If oData.Tables(0).Rows.Count > 0 Then
|
|
||||||
Return True
|
|
||||||
Else
|
|
||||||
Return False
|
|
||||||
End If
|
|
||||||
|
|
||||||
End Function
|
|
||||||
|
|
||||||
Public Shared Function DoManifestNameCheck(ByVal sName As String, ByVal iSelectDB As mgrSQLite.Database) As Boolean
|
|
||||||
Dim oDatabase As New mgrSQLite(iSelectDB)
|
|
||||||
Dim oData As DataSet
|
|
||||||
Dim sSQL As String
|
|
||||||
Dim hshParams As New Hashtable
|
|
||||||
|
|
||||||
sSQL = "SELECT * from manifest "
|
|
||||||
sSQL &= "WHERE Name = @Name"
|
|
||||||
|
|
||||||
hshParams.Add("Name", sName)
|
|
||||||
|
|
||||||
oData = oDatabase.ReadParamData(sSQL, hshParams)
|
oData = oDatabase.ReadParamData(sSQL, hshParams)
|
||||||
|
|
||||||
@@ -189,63 +163,63 @@
|
|||||||
Dim sSQL As String
|
Dim sSQL As String
|
||||||
Dim hshParams As Hashtable
|
Dim hshParams As Hashtable
|
||||||
|
|
||||||
sSQL = "INSERT INTO manifest VALUES (@ID, @Name, @FileName, @Path, @AbsolutePath, @DateUpdated, @UpdatedBy, @CheckSum)"
|
sSQL = "INSERT INTO manifest VALUES (@ManifestID, @MonitorID, @FileName, @DateUpdated, @UpdatedBy, @CheckSum)"
|
||||||
|
|
||||||
hshParams = SetCoreParameters(oBackupItem)
|
hshParams = SetCoreParameters(oBackupItem)
|
||||||
|
|
||||||
oDatabase.RunParamQuery(sSQL, hshParams)
|
oDatabase.RunParamQuery(sSQL, hshParams)
|
||||||
End Sub
|
End Sub
|
||||||
|
|
||||||
Public Shared Sub DoManifestUpdateByName(ByVal oBackupItem As clsBackup, ByVal iSelectDB As mgrSQLite.Database)
|
Public Shared Sub DoManifestUpdateByMonitorID(ByVal oBackupItem As clsBackup, ByVal iSelectDB As mgrSQLite.Database)
|
||||||
Dim oDatabase As New mgrSQLite(iSelectDB)
|
Dim oDatabase As New mgrSQLite(iSelectDB)
|
||||||
Dim sSQL As String
|
Dim sSQL As String
|
||||||
Dim hshParams As Hashtable
|
Dim hshParams As Hashtable
|
||||||
|
|
||||||
sSQL = "UPDATE manifest SET Name = @Name, FileName = @FileName, RestorePath = @Path, AbsolutePath = @AbsolutePath, "
|
sSQL = "UPDATE manifest SET MonitorID = @MonitorID, FileName = @FileName, DateUpdated = @DateUpdated, "
|
||||||
sSQL &= "DateUpdated = @DateUpdated, UpdatedBy = @UpdatedBy, CheckSum = @CheckSum WHERE Name = @QueryName"
|
sSQL &= "UpdatedBy = @UpdatedBy, CheckSum = @CheckSum WHERE MonitorID = @QueryID"
|
||||||
|
|
||||||
hshParams = SetCoreParameters(oBackupItem)
|
hshParams = SetCoreParameters(oBackupItem)
|
||||||
hshParams.Add("QueryName", oBackupItem.Name)
|
hshParams.Add("QueryID", oBackupItem.MonitorID)
|
||||||
|
|
||||||
oDatabase.RunParamQuery(sSQL, hshParams)
|
oDatabase.RunParamQuery(sSQL, hshParams)
|
||||||
End Sub
|
End Sub
|
||||||
|
|
||||||
Public Shared Sub DoManifestUpdateByID(ByVal oBackupItem As clsBackup, ByVal iSelectDB As mgrSQLite.Database)
|
Public Shared Sub DoManifestUpdateByManifestID(ByVal oBackupItem As clsBackup, ByVal iSelectDB As mgrSQLite.Database)
|
||||||
Dim oDatabase As New mgrSQLite(iSelectDB)
|
Dim oDatabase As New mgrSQLite(iSelectDB)
|
||||||
Dim sSQL As String
|
Dim sSQL As String
|
||||||
Dim hshParams As Hashtable
|
Dim hshParams As Hashtable
|
||||||
|
|
||||||
sSQL = "UPDATE manifest SET Name = @Name, FileName = @FileName, RestorePath = @Path, AbsolutePath = @AbsolutePath, "
|
sSQL = "UPDATE manifest SET MonitorID = @MonitorID, FileName = @FileName, DateUpdated = @DateUpdated, "
|
||||||
sSQL &= "DateUpdated = @DateUpdated, UpdatedBy = @UpdatedBy, CheckSum = @CheckSum WHERE ManifestID = @QueryID"
|
sSQL &= "UpdatedBy = @UpdatedBy, CheckSum = @CheckSum WHERE ManifestID = @QueryID"
|
||||||
|
|
||||||
hshParams = SetCoreParameters(oBackupItem)
|
hshParams = SetCoreParameters(oBackupItem)
|
||||||
hshParams.Add("QueryID", oBackupItem.ID)
|
hshParams.Add("QueryID", oBackupItem.ManifestID)
|
||||||
|
|
||||||
oDatabase.RunParamQuery(sSQL, hshParams)
|
oDatabase.RunParamQuery(sSQL, hshParams)
|
||||||
End Sub
|
End Sub
|
||||||
|
|
||||||
Public Shared Sub DoManifestDeletebyName(ByVal oBackupItem As clsBackup, ByVal iSelectDB As mgrSQLite.Database)
|
Public Shared Sub DoManifestDeleteByMonitorID(ByVal oBackupItem As clsBackup, ByVal iSelectDB As mgrSQLite.Database)
|
||||||
Dim oDatabase As New mgrSQLite(iSelectDB)
|
Dim oDatabase As New mgrSQLite(iSelectDB)
|
||||||
Dim sSQL As String
|
Dim sSQL As String
|
||||||
Dim hshParams As New Hashtable
|
Dim hshParams As New Hashtable
|
||||||
|
|
||||||
sSQL = "DELETE FROM manifest "
|
sSQL = "DELETE FROM manifest "
|
||||||
sSQL &= "WHERE Name = @Name"
|
sSQL &= "WHERE MonitorID = @MonitorID"
|
||||||
|
|
||||||
hshParams.Add("Name", oBackupItem.Name)
|
hshParams.Add("MonitorID", oBackupItem.MonitorID)
|
||||||
|
|
||||||
oDatabase.RunParamQuery(sSQL, hshParams)
|
oDatabase.RunParamQuery(sSQL, hshParams)
|
||||||
End Sub
|
End Sub
|
||||||
|
|
||||||
Public Shared Sub DoManifestDeletebyID(ByVal oBackupItem As clsBackup, ByVal iSelectDB As mgrSQLite.Database)
|
Public Shared Sub DoManifestDeleteByManifestID(ByVal oBackupItem As clsBackup, ByVal iSelectDB As mgrSQLite.Database)
|
||||||
Dim oDatabase As New mgrSQLite(iSelectDB)
|
Dim oDatabase As New mgrSQLite(iSelectDB)
|
||||||
Dim sSQL As String
|
Dim sSQL As String
|
||||||
Dim hshParams As New Hashtable
|
Dim hshParams As New Hashtable
|
||||||
|
|
||||||
sSQL = "DELETE FROM manifest "
|
sSQL = "DELETE FROM manifest "
|
||||||
sSQL &= "WHERE ManifestID = @ID"
|
sSQL &= "WHERE ManifestID = @ManifestID"
|
||||||
|
|
||||||
hshParams.Add("ID", oBackupItem.ID)
|
hshParams.Add("ManifestID", oBackupItem.ManifestID)
|
||||||
|
|
||||||
oDatabase.RunParamQuery(sSQL, hshParams)
|
oDatabase.RunParamQuery(sSQL, hshParams)
|
||||||
End Sub
|
End Sub
|
||||||
|
|||||||
+196
-67
@@ -78,15 +78,14 @@ Public Class mgrMonitorList
|
|||||||
Dim oCompareGame As clsGame
|
Dim oCompareGame As clsGame
|
||||||
Dim bIsDupe As Boolean
|
Dim bIsDupe As Boolean
|
||||||
|
|
||||||
sSQL = "Select * from monitorlist ORDER BY Name Asc"
|
sSQL = "Select * FROM monitorlist ORDER BY Name Asc"
|
||||||
oData = oDatabase.ReadParamData(sSQL, New Hashtable)
|
oData = oDatabase.ReadParamData(sSQL, New Hashtable)
|
||||||
|
|
||||||
For Each dr As DataRow In oData.Tables(0).Rows
|
For Each dr As DataRow In oData.Tables(0).Rows
|
||||||
oGame = MapToObject(dr)
|
oGame = MapToObject(dr)
|
||||||
Select Case eListType
|
Select Case eListType
|
||||||
Case eListTypes.FullList
|
Case eListTypes.FullList
|
||||||
'Don't wrap this, if it fails there's a problem with the database
|
hshList.Add(oGame.ID, oGame)
|
||||||
hshList.Add(oGame.ProcessName & ":" & oGame.KeySafeName, oGame)
|
|
||||||
Case eListTypes.ScanList
|
Case eListTypes.ScanList
|
||||||
For Each de As DictionaryEntry In hshList
|
For Each de As DictionaryEntry In hshList
|
||||||
bIsDupe = False
|
bIsDupe = False
|
||||||
@@ -116,7 +115,7 @@ Public Class mgrMonitorList
|
|||||||
|
|
||||||
If bIsDupe Then
|
If bIsDupe Then
|
||||||
DirectCast(hshList.Item(oCompareGame.ProcessName), clsGame).Duplicate = True
|
DirectCast(hshList.Item(oCompareGame.ProcessName), clsGame).Duplicate = True
|
||||||
oGame.ProcessName = oGame.ProcessName & ":" & oGame.KeySafeName
|
oGame.ProcessName = oGame.CompoundKey
|
||||||
oGame.Duplicate = True
|
oGame.Duplicate = True
|
||||||
End If
|
End If
|
||||||
Next
|
Next
|
||||||
@@ -143,21 +142,31 @@ Public Class mgrMonitorList
|
|||||||
|
|
||||||
End Sub
|
End Sub
|
||||||
|
|
||||||
Public Shared Sub DoListUpdate(ByVal oGame As clsGame, Optional ByVal iSelectDB As mgrSQLite.Database = mgrSQLite.Database.Local)
|
Public Shared Sub DoListUpdate(ByVal oGame As clsGame, Optional ByVal sQueryID As String = "", Optional ByVal iSelectDB As mgrSQLite.Database = mgrSQLite.Database.Local)
|
||||||
Dim oDatabase As New mgrSQLite(iSelectDB)
|
Dim oDatabase As New mgrSQLite(iSelectDB)
|
||||||
Dim sSQL As String
|
Dim sSQL As String
|
||||||
Dim hshParams As Hashtable
|
Dim hshParams As Hashtable
|
||||||
|
|
||||||
sSQL = "UPDATE monitorlist SET Name=@Name, Process=@Process, Path=@Path, AbsolutePath=@AbsolutePath, FolderSave=@FolderSave, "
|
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 &= "FileType=@FileType, TimeStamp=@TimeStamp, ExcludeList=@ExcludeList, ProcessPath=@ProcessPath, Icon=@Icon, "
|
||||||
sSQL &= "Hours=@Hours, Version=@Version, Company=@Company, Enabled=@Enabled, MonitorOnly=@MonitorOnly, BackupLimit=@BackupLimit, "
|
sSQL &= "Hours=@Hours, Version=@Version, Company=@Company, Enabled=@Enabled, MonitorOnly=@MonitorOnly, BackupLimit=@BackupLimit, "
|
||||||
sSQL &= "CleanFolder=@CleanFolder, Parameter=@Parameter, Comments=@Comments, IsRegEx=@IsRegEx WHERE MonitorID=@ID"
|
sSQL &= "CleanFolder=@CleanFolder, Parameter=@Parameter, Comments=@Comments, IsRegEx=@IsRegEx WHERE MonitorID=@QueryID;"
|
||||||
|
sSQL &= "UPDATE gametags SET MonitorID=@ID WHERE MonitorID=@QueryID;"
|
||||||
|
|
||||||
|
If iSelectDB = mgrSQLite.Database.Local Then
|
||||||
|
sSQL &= "UPDATE gameprocesses SET MonitorID=@ID WHERE MonitorID=@QueryID;"
|
||||||
|
sSQL &= "UPDATE sessions SET MonitorID=@ID WHERE MonitorID=@QueryID;"
|
||||||
|
End If
|
||||||
|
|
||||||
'Parameters
|
'Parameters
|
||||||
hshParams = SetCoreParameters(oGame)
|
hshParams = SetCoreParameters(oGame)
|
||||||
|
If sQueryID <> String.Empty Then
|
||||||
|
hshParams.Add("QueryID", sQueryID)
|
||||||
|
Else
|
||||||
|
hshParams.Add("QueryID", oGame.ID)
|
||||||
|
End If
|
||||||
|
|
||||||
oDatabase.RunParamQuery(sSQL, hshParams)
|
oDatabase.RunParamQuery(sSQL, hshParams)
|
||||||
|
|
||||||
End Sub
|
End Sub
|
||||||
|
|
||||||
Public Shared Sub DoListUpdateMulti(ByVal sMonitorIDs As List(Of String), ByVal oGame As clsGame, Optional ByVal iSelectDB As mgrSQLite.Database = mgrSQLite.Database.Local)
|
Public Shared Sub DoListUpdateMulti(ByVal sMonitorIDs As List(Of String), ByVal oGame As clsGame, Optional ByVal iSelectDB As mgrSQLite.Database = mgrSQLite.Database.Local)
|
||||||
@@ -190,9 +199,13 @@ Public Class mgrMonitorList
|
|||||||
Dim sSQL As String
|
Dim sSQL As String
|
||||||
Dim hshParams As New Hashtable
|
Dim hshParams As New Hashtable
|
||||||
|
|
||||||
sSQL = "DELETE FROM gametags "
|
sSQL = "DELETE FROM manifest "
|
||||||
|
sSQL &= "WHERE MonitorID = @MonitorID;"
|
||||||
|
sSQL &= "DELETE FROM gametags "
|
||||||
sSQL &= "WHERE MonitorID = @MonitorID;"
|
sSQL &= "WHERE MonitorID = @MonitorID;"
|
||||||
If iSelectDB = mgrSQLite.Database.Local Then
|
If iSelectDB = mgrSQLite.Database.Local Then
|
||||||
|
sSQL &= "DELETE FROM gameprocesses "
|
||||||
|
sSQL &= "WHERE MonitorID = @MonitorID;"
|
||||||
sSQL &= "DELETE FROM sessions "
|
sSQL &= "DELETE FROM sessions "
|
||||||
sSQL &= "WHERE MonitorID = @MonitorID;"
|
sSQL &= "WHERE MonitorID = @MonitorID;"
|
||||||
End If
|
End If
|
||||||
@@ -211,7 +224,19 @@ Public Class mgrMonitorList
|
|||||||
Dim hshParams As New Hashtable
|
Dim hshParams As New Hashtable
|
||||||
Dim iCounter As Integer
|
Dim iCounter As Integer
|
||||||
|
|
||||||
sSQL = "DELETE FROM gametags "
|
sSQL = "DELETE FROM manifest "
|
||||||
|
sSQL &= "WHERE MonitorID IN ("
|
||||||
|
|
||||||
|
For Each s As String In sMonitorIDs
|
||||||
|
sSQL &= "@MonitorID" & iCounter & ","
|
||||||
|
hshParams.Add("MonitorID" & iCounter, s)
|
||||||
|
iCounter += 1
|
||||||
|
Next
|
||||||
|
|
||||||
|
sSQL = sSQL.TrimEnd(",")
|
||||||
|
sSQL &= ");"
|
||||||
|
|
||||||
|
sSQL &= "DELETE FROM gametags "
|
||||||
sSQL &= "WHERE MonitorID IN ("
|
sSQL &= "WHERE MonitorID IN ("
|
||||||
|
|
||||||
For Each s As String In sMonitorIDs
|
For Each s As String In sMonitorIDs
|
||||||
@@ -224,6 +249,18 @@ Public Class mgrMonitorList
|
|||||||
sSQL &= ");"
|
sSQL &= ");"
|
||||||
|
|
||||||
If iSelectDB = mgrSQLite.Database.Local Then
|
If iSelectDB = mgrSQLite.Database.Local Then
|
||||||
|
sSQL &= "DELETE FROM gameprocesses "
|
||||||
|
sSQL &= "WHERE MonitorID IN ("
|
||||||
|
|
||||||
|
For Each s As String In sMonitorIDs
|
||||||
|
sSQL &= "@MonitorID" & iCounter & ","
|
||||||
|
hshParams.Add("MonitorID" & iCounter, s)
|
||||||
|
iCounter += 1
|
||||||
|
Next
|
||||||
|
|
||||||
|
sSQL = sSQL.TrimEnd(",")
|
||||||
|
sSQL &= ");"
|
||||||
|
|
||||||
sSQL &= "DELETE FROM sessions "
|
sSQL &= "DELETE FROM sessions "
|
||||||
sSQL &= "WHERE MonitorID IN ("
|
sSQL &= "WHERE MonitorID IN ("
|
||||||
|
|
||||||
@@ -273,7 +310,7 @@ Public Class mgrMonitorList
|
|||||||
Return oGame
|
Return oGame
|
||||||
End Function
|
End Function
|
||||||
|
|
||||||
Public Shared Function DoListGetbyName(ByVal sName As String, Optional ByVal iSelectDB As mgrSQLite.Database = mgrSQLite.Database.Local) As Hashtable
|
Public Shared Function DoListGetbyMonitorID(ByVal sMonitorID As String, Optional ByVal iSelectDB As mgrSQLite.Database = mgrSQLite.Database.Local) As Hashtable
|
||||||
Dim oDatabase As New mgrSQLite(iSelectDB)
|
Dim oDatabase As New mgrSQLite(iSelectDB)
|
||||||
Dim sSQL As String
|
Dim sSQL As String
|
||||||
Dim oData As DataSet
|
Dim oData As DataSet
|
||||||
@@ -282,10 +319,10 @@ Public Class mgrMonitorList
|
|||||||
Dim hshParams As New Hashtable
|
Dim hshParams As New Hashtable
|
||||||
Dim iCounter As Integer = 0
|
Dim iCounter As Integer = 0
|
||||||
|
|
||||||
sSQL = "SELECT * from monitorlist "
|
sSQL = "SELECT * FROM monitorlist "
|
||||||
sSQL &= "WHERE Name = @Name"
|
sSQL &= "WHERE MonitorID = @MonitorID"
|
||||||
|
|
||||||
hshParams.Add("Name", sName)
|
hshParams.Add("MonitorID", sMonitorID)
|
||||||
|
|
||||||
oData = oDatabase.ReadParamData(sSQL, hshParams)
|
oData = oDatabase.ReadParamData(sSQL, hshParams)
|
||||||
|
|
||||||
@@ -298,45 +335,19 @@ Public Class mgrMonitorList
|
|||||||
Return hshGames
|
Return hshGames
|
||||||
End Function
|
End Function
|
||||||
|
|
||||||
Public Shared Function DoDuplicateListCheck(ByVal sName As String, ByVal sProcess As String, Optional ByVal iSelectDB As mgrSQLite.Database = mgrSQLite.Database.Local, Optional ByVal sExcludeID As String = "") As Boolean
|
Public Shared Function DoDuplicateListCheck(ByVal sMonitorID As String, Optional ByVal iSelectDB As mgrSQLite.Database = mgrSQLite.Database.Local, Optional ByVal sExcludeID As String = "") As Boolean
|
||||||
Dim oDatabase As New mgrSQLite(iSelectDB)
|
Dim oDatabase As New mgrSQLite(iSelectDB)
|
||||||
Dim sSQL As String
|
Dim sSQL As String
|
||||||
Dim oData As DataSet
|
Dim oData As DataSet
|
||||||
Dim hshParams As New Hashtable
|
Dim hshParams As New Hashtable
|
||||||
|
|
||||||
sSQL = "SELECT * FROM monitorlist WHERE Name = @Name AND Process= @Process"
|
sSQL = "SELECT * FROM monitorlist WHERE MonitorID = @MonitorID"
|
||||||
|
|
||||||
hshParams.Add("Name", sName)
|
hshParams.Add("MonitorID", sMonitorID)
|
||||||
hshParams.Add("Process", sProcess)
|
|
||||||
|
|
||||||
If sExcludeID <> String.Empty Then
|
If sExcludeID <> String.Empty Then
|
||||||
sSQL &= " AND MonitorID <> @MonitorID"
|
sSQL &= " AND MonitorID <> @QueryID"
|
||||||
hshParams.Add("MonitorID", sExcludeID)
|
hshParams.Add("QueryID", sExcludeID)
|
||||||
End If
|
|
||||||
|
|
||||||
oData = oDatabase.ReadParamData(sSQL, hshParams)
|
|
||||||
|
|
||||||
If oData.Tables(0).Rows.Count > 0 Then
|
|
||||||
Return True
|
|
||||||
Else
|
|
||||||
Return False
|
|
||||||
End If
|
|
||||||
End Function
|
|
||||||
|
|
||||||
Public Shared Function DoDuplicateParameterCheck(ByVal sProcess As String, ByVal sParameter As String, Optional ByVal iSelectDB As mgrSQLite.Database = mgrSQLite.Database.Local, Optional ByVal sExcludeID As String = "") As Boolean
|
|
||||||
Dim oDatabase As New mgrSQLite(iSelectDB)
|
|
||||||
Dim sSQL As String
|
|
||||||
Dim oData As DataSet
|
|
||||||
Dim hshParams As New Hashtable
|
|
||||||
|
|
||||||
sSQL = "SELECT * FROM monitorlist WHERE Process = @Process AND Parameter = @Parameter"
|
|
||||||
|
|
||||||
hshParams.Add("Process", sProcess)
|
|
||||||
hshParams.Add("Parameter", sParameter)
|
|
||||||
|
|
||||||
If sExcludeID <> String.Empty Then
|
|
||||||
sSQL &= " AND MonitorID <> @MonitorID"
|
|
||||||
hshParams.Add("MonitorID", sExcludeID)
|
|
||||||
End If
|
End If
|
||||||
|
|
||||||
oData = oDatabase.ReadParamData(sSQL, hshParams)
|
oData = oDatabase.ReadParamData(sSQL, hshParams)
|
||||||
@@ -458,20 +469,22 @@ Public Class mgrMonitorList
|
|||||||
Dim hshParams As Hashtable
|
Dim hshParams As Hashtable
|
||||||
Dim oParamList As New List(Of Hashtable)
|
Dim oParamList As New List(Of Hashtable)
|
||||||
|
|
||||||
sSQL = "DELETE FROM gametags "
|
sSQL = "DELETE FROM manifest "
|
||||||
|
sSQL &= "WHERE MonitorID = @MonitorID;"
|
||||||
|
sSQL &= "DELETE FROM gametags "
|
||||||
sSQL &= "WHERE MonitorID = @MonitorID;"
|
sSQL &= "WHERE MonitorID = @MonitorID;"
|
||||||
If iSelectDB = mgrSQLite.Database.Local Then
|
If iSelectDB = mgrSQLite.Database.Local Then
|
||||||
|
sSQL &= "DELETE FROM gameprocesses "
|
||||||
|
sSQL &= "WHERE MonitorID = @MonitorID;"
|
||||||
sSQL &= "DELETE FROM sessions "
|
sSQL &= "DELETE FROM sessions "
|
||||||
sSQL &= "WHERE MonitorID = @MonitorID;"
|
sSQL &= "WHERE MonitorID = @MonitorID;"
|
||||||
End If
|
End If
|
||||||
sSQL &= "DELETE FROM monitorlist "
|
sSQL &= "DELETE FROM monitorlist "
|
||||||
sSQL &= "WHERE Name = @Name AND Process= @Process;"
|
sSQL &= "WHERE MonitorID = @MonitorID;"
|
||||||
|
|
||||||
For Each oGame As clsGame In hshGames.Values
|
For Each oGame As clsGame In hshGames.Values
|
||||||
hshParams = New Hashtable
|
hshParams = New Hashtable
|
||||||
hshParams.Add("MonitorID", oGame.ID)
|
hshParams.Add("MonitorID", oGame.ID)
|
||||||
hshParams.Add("Name", oGame.Name)
|
|
||||||
hshParams.Add("Process", oGame.TrueProcess)
|
|
||||||
oParamList.Add(hshParams)
|
oParamList.Add(hshParams)
|
||||||
Next
|
Next
|
||||||
|
|
||||||
@@ -507,10 +520,10 @@ Public Class mgrMonitorList
|
|||||||
hshSyncItems = hshCompareFrom.Clone
|
hshSyncItems = hshCompareFrom.Clone
|
||||||
|
|
||||||
For Each oFromItem In hshCompareFrom.Values
|
For Each oFromItem In hshCompareFrom.Values
|
||||||
If hshCompareTo.Contains(oFromItem.CompoundKey) Then
|
If hshCompareTo.Contains(oFromItem.ID) Then
|
||||||
oToItem = DirectCast(hshCompareTo(oFromItem.CompoundKey), clsGame)
|
oToItem = DirectCast(hshCompareTo(oFromItem.ID), clsGame)
|
||||||
If oFromItem.SyncEquals(oToItem, eSyncFields) Then
|
If oFromItem.SyncEquals(oToItem, eSyncFields) Then
|
||||||
hshSyncItems.Remove(oFromItem.CompoundKey)
|
hshSyncItems.Remove(oFromItem.ID)
|
||||||
End If
|
End If
|
||||||
End If
|
End If
|
||||||
Next
|
Next
|
||||||
@@ -537,10 +550,10 @@ Public Class mgrMonitorList
|
|||||||
hshDeleteItems = hshCompareTo.Clone
|
hshDeleteItems = hshCompareTo.Clone
|
||||||
|
|
||||||
For Each oToItem In hshCompareTo.Values
|
For Each oToItem In hshCompareTo.Values
|
||||||
If hshCompareFrom.Contains(oToItem.CompoundKey) Then
|
If hshCompareFrom.Contains(oToItem.ID) Then
|
||||||
oFromItem = DirectCast(hshCompareFrom(oToItem.CompoundKey), clsGame)
|
oFromItem = DirectCast(hshCompareFrom(oToItem.ID), clsGame)
|
||||||
If oToItem.MinimalEquals(oFromItem) Then
|
If oToItem.MinimalEquals(oFromItem) Then
|
||||||
hshDeleteItems.Remove(oToItem.CompoundKey)
|
hshDeleteItems.Remove(oToItem.ID)
|
||||||
End If
|
End If
|
||||||
End If
|
End If
|
||||||
Next
|
Next
|
||||||
@@ -735,7 +748,6 @@ Public Class mgrMonitorList
|
|||||||
Dim oDatabase As New mgrSQLite(iSelectDB)
|
Dim oDatabase As New mgrSQLite(iSelectDB)
|
||||||
Dim oData As DataSet
|
Dim oData As DataSet
|
||||||
Dim sSQL As String = String.Empty
|
Dim sSQL As String = String.Empty
|
||||||
Dim sID As String
|
|
||||||
Dim oList As New List(Of Game)
|
Dim oList As New List(Of Game)
|
||||||
Dim oGame As Game
|
Dim oGame As Game
|
||||||
Dim hshParams As New Hashtable
|
Dim hshParams As New Hashtable
|
||||||
@@ -746,7 +758,7 @@ Public Class mgrMonitorList
|
|||||||
|
|
||||||
For Each dr As DataRow In oData.Tables(0).Rows
|
For Each dr As DataRow In oData.Tables(0).Rows
|
||||||
oGame = New Game
|
oGame = New Game
|
||||||
sID = CStr(dr("MonitorID"))
|
oGame.ID = CStr(dr("MonitorID"))
|
||||||
oGame.Name = CStr(dr("Name"))
|
oGame.Name = CStr(dr("Name"))
|
||||||
oGame.ProcessName = CStr(dr("Process"))
|
oGame.ProcessName = CStr(dr("Process"))
|
||||||
If Not IsDBNull(dr("Path")) Then oGame.Path = CStr(dr("Path"))
|
If Not IsDBNull(dr("Path")) Then oGame.Path = CStr(dr("Path"))
|
||||||
@@ -758,17 +770,55 @@ Public Class mgrMonitorList
|
|||||||
If Not IsDBNull(dr("Parameter")) Then oGame.Parameter = CStr(dr("Parameter"))
|
If Not IsDBNull(dr("Parameter")) Then oGame.Parameter = CStr(dr("Parameter"))
|
||||||
If Not IsDBNull(dr("Comments")) Then oGame.Comments = CStr(dr("Comments"))
|
If Not IsDBNull(dr("Comments")) Then oGame.Comments = CStr(dr("Comments"))
|
||||||
oGame.IsRegEx = CBool(dr("IsRegEx"))
|
oGame.IsRegEx = CBool(dr("IsRegEx"))
|
||||||
oGame.Tags = mgrGameTags.GetTagsByGameForExport(sID)
|
oGame.Tags = mgrGameTags.GetTagsByGameForExport(oGame.ID)
|
||||||
oList.Add(oGame)
|
oList.Add(oGame)
|
||||||
Next
|
Next
|
||||||
|
|
||||||
Return oList
|
Return oList
|
||||||
End Function
|
End Function
|
||||||
|
|
||||||
Public Shared Function DoImport(ByVal sPath As String) As Boolean
|
Public Shared Function SyncGameIDs(ByVal sPath As String, ByRef oSettings As mgrSettings, ByVal bOfficial As Boolean) As Boolean
|
||||||
If (sPath.IndexOf("http://", 0, StringComparison.CurrentCultureIgnoreCase) > -1) Or
|
Dim sWarning As String
|
||||||
(sPath.IndexOf("https://", 0, StringComparison.CurrentCultureIgnoreCase) > -1) Then
|
|
||||||
|
If bOfficial Then
|
||||||
|
If (oSettings.SupressMessages And mgrSettings.eSupressMessages.GameIDSync) = mgrSettings.eSupressMessages.GameIDSync Then
|
||||||
|
sWarning = mgrMonitorList_ConfirmOfficialGameIDSync
|
||||||
|
Else
|
||||||
|
sWarning = mgrMonitorList_ConfirmInitialOfficialGameIDSync
|
||||||
|
oSettings.SupressMessages = oSettings.SetMessageField(oSettings.SupressMessages, mgrSettings.eSupressMessages.GameIDSync)
|
||||||
|
oSettings.SaveSettings()
|
||||||
|
End If
|
||||||
|
Else
|
||||||
|
sWarning = mgrMonitorList_ConfirmFileGameIDSync
|
||||||
|
End If
|
||||||
|
|
||||||
|
If mgrCommon.ShowMessage(sWarning, MsgBoxStyle.YesNo) = MsgBoxResult.Yes Then
|
||||||
|
If mgrCommon.IsAddress(sPath) Then
|
||||||
If mgrCommon.CheckAddress(sPath) Then
|
If mgrCommon.CheckAddress(sPath) Then
|
||||||
|
DoGameIDSync(sPath, True)
|
||||||
|
Else
|
||||||
|
mgrCommon.ShowMessage(mgrMonitorList_WebNoReponse, sPath, MsgBoxStyle.Exclamation)
|
||||||
|
Return False
|
||||||
|
End If
|
||||||
|
Else
|
||||||
|
If File.Exists(sPath) Then
|
||||||
|
DoGameIDSync(sPath)
|
||||||
|
Else
|
||||||
|
mgrCommon.ShowMessage(mgrMonitorList_FileNotFound, sPath, MsgBoxStyle.Exclamation)
|
||||||
|
Return False
|
||||||
|
End If
|
||||||
|
End If
|
||||||
|
End If
|
||||||
|
|
||||||
|
Return True
|
||||||
|
End Function
|
||||||
|
|
||||||
|
Public Shared Function DoImport(ByVal sPath As String, ByVal bOfficial As Boolean, ByRef oSettings As mgrSettings, Optional ByVal bStartUpWizard As Boolean = False) As Boolean
|
||||||
|
If mgrCommon.IsAddress(sPath) Then
|
||||||
|
If mgrCommon.CheckAddress(sPath) Then
|
||||||
|
If bOfficial And Not bStartUpWizard And Not ((oSettings.SupressMessages And mgrSettings.eSupressMessages.GameIDSync) = mgrSettings.eSupressMessages.GameIDSync) Then
|
||||||
|
SyncGameIDs(sPath, oSettings, True)
|
||||||
|
End If
|
||||||
ImportMonitorList(sPath, True)
|
ImportMonitorList(sPath, True)
|
||||||
Return True
|
Return True
|
||||||
Else
|
Else
|
||||||
@@ -788,7 +838,7 @@ Public Class mgrMonitorList
|
|||||||
End Function
|
End Function
|
||||||
|
|
||||||
Private Shared Sub ImportMonitorList(ByVal sLocation As String, Optional ByVal bWebRead As Boolean = False)
|
Private Shared Sub ImportMonitorList(ByVal sLocation As String, Optional ByVal bWebRead As Boolean = False)
|
||||||
Dim hshCompareFrom As Hashtable
|
Dim hshCompareFrom As New Hashtable
|
||||||
Dim hshCompareTo As Hashtable
|
Dim hshCompareTo As Hashtable
|
||||||
Dim hshSyncItems As Hashtable
|
Dim hshSyncItems As Hashtable
|
||||||
Dim oFromItem As clsGame
|
Dim oFromItem As clsGame
|
||||||
@@ -797,17 +847,33 @@ Public Class mgrMonitorList
|
|||||||
|
|
||||||
Cursor.Current = Cursors.WaitCursor
|
Cursor.Current = Cursors.WaitCursor
|
||||||
|
|
||||||
'Add / Update Sync
|
If Not mgrXML.ReadMonitorList(sLocation, oExportInfo, hshCompareFrom, bWebRead) Then
|
||||||
hshCompareFrom = mgrXML.ReadMonitorList(sLocation, oExportInfo, bWebRead)
|
Exit Sub
|
||||||
|
End If
|
||||||
|
|
||||||
|
If oExportInfo.AppVer < 110 Then
|
||||||
|
If mgrCommon.ShowMessage(mgrMonitorList_ImportVersionWarning, MsgBoxStyle.YesNo) = MsgBoxResult.No Then
|
||||||
|
Exit Sub
|
||||||
|
End If
|
||||||
|
End If
|
||||||
|
|
||||||
hshCompareTo = ReadList(eListTypes.FullList, mgrSQLite.Database.Local)
|
hshCompareTo = ReadList(eListTypes.FullList, mgrSQLite.Database.Local)
|
||||||
|
|
||||||
hshSyncItems = hshCompareFrom.Clone
|
hshSyncItems = hshCompareFrom.Clone
|
||||||
|
|
||||||
For Each oFromItem In hshCompareFrom.Values
|
For Each oFromItem In hshCompareFrom.Values
|
||||||
If hshCompareTo.Contains(oFromItem.CompoundKey) Then
|
If hshCompareTo.Contains(oFromItem.ID) Then
|
||||||
oToItem = DirectCast(hshCompareTo(oFromItem.CompoundKey), clsGame)
|
oToItem = DirectCast(hshCompareTo(oFromItem.ID), clsGame)
|
||||||
|
If oFromItem.MinimalEquals(oToItem) Then
|
||||||
If oFromItem.CoreEquals(oToItem) Then
|
If oFromItem.CoreEquals(oToItem) Then
|
||||||
hshSyncItems.Remove(oFromItem.CompoundKey)
|
hshSyncItems.Remove(oFromItem.ID)
|
||||||
|
Else
|
||||||
|
DirectCast(hshSyncItems(oFromItem.ID), clsGame).ImportUpdate = True
|
||||||
|
'These fields need to be set via the object or they will be lost when the configuration is updated
|
||||||
|
DirectCast(hshSyncItems(oFromItem.ID), clsGame).Hours = oToItem.Hours
|
||||||
|
DirectCast(hshSyncItems(oFromItem.ID), clsGame).CleanFolder = oToItem.CleanFolder
|
||||||
|
End If
|
||||||
|
|
||||||
End If
|
End If
|
||||||
End If
|
End If
|
||||||
Next
|
Next
|
||||||
@@ -834,6 +900,69 @@ Public Class mgrMonitorList
|
|||||||
Application.DoEvents()
|
Application.DoEvents()
|
||||||
End Sub
|
End Sub
|
||||||
|
|
||||||
|
Private Shared Sub DoGameIDSync(ByVal sLocation As String, Optional ByVal bWebRead As Boolean = False)
|
||||||
|
Dim oLocalDatabase As New mgrSQLite(mgrSQLite.Database.Local)
|
||||||
|
Dim oRemoteDatabase As New mgrSQLite(mgrSQLite.Database.Remote)
|
||||||
|
Dim sSQL As String
|
||||||
|
Dim hshParams As Hashtable
|
||||||
|
Dim oParamList As New List(Of Hashtable)
|
||||||
|
Dim hshCompareFrom As New Hashtable
|
||||||
|
Dim hshCompareTo As Hashtable
|
||||||
|
Dim hshSyncIDs As New Hashtable
|
||||||
|
Dim oFromItem As clsGame
|
||||||
|
Dim oToItem As clsGame
|
||||||
|
Dim oExportInfo As New ExportData
|
||||||
|
|
||||||
|
Cursor.Current = Cursors.WaitCursor
|
||||||
|
|
||||||
|
If Not mgrXML.ReadMonitorList(sLocation, oExportInfo, hshCompareFrom, bWebRead) Then
|
||||||
|
Exit Sub
|
||||||
|
End If
|
||||||
|
|
||||||
|
If oExportInfo.AppVer < 110 Then
|
||||||
|
mgrCommon.ShowMessage(mgrMonitorList_ErrorGameIDVerFailure, MsgBoxStyle.Exclamation)
|
||||||
|
Exit Sub
|
||||||
|
End If
|
||||||
|
|
||||||
|
hshCompareTo = ReadList(eListTypes.FullList, mgrSQLite.Database.Local)
|
||||||
|
|
||||||
|
For Each oFromItem In hshCompareFrom.Values
|
||||||
|
If Not hshCompareTo.Contains(oFromItem.ID) Then
|
||||||
|
For Each oToItem In hshCompareTo.Values
|
||||||
|
'Strip all special characters and compare names
|
||||||
|
If Regex.Replace(oToItem.Name, "[^\w]+", "").ToLower = Regex.Replace(oFromItem.Name, "[^\w]+", "").ToLower Then
|
||||||
|
'Ignore games with duplicate names
|
||||||
|
If Not hshSyncIDs.Contains(oFromItem.ID) Then
|
||||||
|
hshSyncIDs.Add(oFromItem.ID, oToItem.ID)
|
||||||
|
End If
|
||||||
|
End If
|
||||||
|
Next
|
||||||
|
End If
|
||||||
|
Next
|
||||||
|
|
||||||
|
For Each de As DictionaryEntry In hshSyncIDs
|
||||||
|
hshParams = New Hashtable
|
||||||
|
hshParams.Add("MonitorID", CStr(de.Key))
|
||||||
|
hshParams.Add("QueryID", CStr(de.Value))
|
||||||
|
oParamList.Add(hshParams)
|
||||||
|
Next
|
||||||
|
|
||||||
|
sSQL = "UPDATE monitorlist SET MonitorID=@MonitorID WHERE MonitorID=@QueryID;"
|
||||||
|
sSQL &= "UPDATE gametags SET MonitorID=@MonitorID WHERE MonitorID=@QueryID;"
|
||||||
|
sSQL &= "UPDATE manifest SET MonitorID=@MonitorID WHERE MonitorID=@QueryID;"
|
||||||
|
|
||||||
|
oRemoteDatabase.RunMassParamQuery(sSQL, oParamList)
|
||||||
|
|
||||||
|
sSQL &= "UPDATE sessions SET MonitorID=@MonitorID WHERE MonitorID=@QueryID;"
|
||||||
|
|
||||||
|
oLocalDatabase.RunMassParamQuery(sSQL, oParamList)
|
||||||
|
|
||||||
|
Cursor.Current = Cursors.Default
|
||||||
|
|
||||||
|
mgrCommon.ShowMessage(mgrMonitorList_GameIDSyncCompleted, hshSyncIDs.Count.ToString, MsgBoxStyle.Information)
|
||||||
|
|
||||||
|
End Sub
|
||||||
|
|
||||||
Public Shared Sub ExportMonitorList(ByVal sLocation As String)
|
Public Shared Sub ExportMonitorList(ByVal sLocation As String)
|
||||||
Dim oList As List(Of Game)
|
Dim oList As List(Of Game)
|
||||||
Dim bSuccess As Boolean = False
|
Dim bSuccess As Boolean = False
|
||||||
|
|||||||
@@ -0,0 +1,152 @@
|
|||||||
|
Public Class mgrProcess
|
||||||
|
|
||||||
|
Private Shared Function MapToObject(ByVal dr As DataRow) As clsProcess
|
||||||
|
Dim oProcess As New clsProcess
|
||||||
|
|
||||||
|
oProcess.ID = CStr(dr("ProcessID"))
|
||||||
|
oProcess.Name = CStr(dr("Name"))
|
||||||
|
oProcess.Path = CStr(dr("Path"))
|
||||||
|
If Not IsDBNull(dr("Args")) Then oProcess.Args = CStr(dr("Args"))
|
||||||
|
oProcess.Kill = CBool(dr("Kill"))
|
||||||
|
|
||||||
|
Return oProcess
|
||||||
|
End Function
|
||||||
|
|
||||||
|
Private Shared Function SetCoreParameters(ByVal oProcess As clsProcess) As Hashtable
|
||||||
|
Dim hshParams As New Hashtable
|
||||||
|
|
||||||
|
hshParams.Add("ProcessID", oProcess.ID)
|
||||||
|
hshParams.Add("Name", oProcess.Name)
|
||||||
|
hshParams.Add("Path", oProcess.Path)
|
||||||
|
hshParams.Add("Args", oProcess.Args)
|
||||||
|
hshParams.Add("Kill", oProcess.Kill)
|
||||||
|
|
||||||
|
Return hshParams
|
||||||
|
End Function
|
||||||
|
|
||||||
|
Public Shared Sub DoProcessAdd(ByVal oProcess As clsProcess)
|
||||||
|
Dim oDatabase As New mgrSQLite(mgrSQLite.Database.Local)
|
||||||
|
Dim sSQL As String
|
||||||
|
Dim hshParams As Hashtable
|
||||||
|
|
||||||
|
sSQL = "INSERT INTO processes VALUES (@ProcessID, @Name, @Path, @Args, @Kill)"
|
||||||
|
hshParams = SetCoreParameters(oProcess)
|
||||||
|
oDatabase.RunParamQuery(sSQL, hshParams)
|
||||||
|
End Sub
|
||||||
|
|
||||||
|
Public Shared Sub DoProcessUpdate(ByVal oProcess As clsProcess)
|
||||||
|
Dim oDatabase As New mgrSQLite(mgrSQLite.Database.Local)
|
||||||
|
Dim sSQL As String
|
||||||
|
Dim hshParams As Hashtable
|
||||||
|
|
||||||
|
sSQL = "UPDATE processes SET Name=@Name, Path=@Path, Args=@Args, Kill=@Kill "
|
||||||
|
sSQL &= "WHERE ProcessID = @ProcessID"
|
||||||
|
|
||||||
|
hshParams = SetCoreParameters(oProcess)
|
||||||
|
|
||||||
|
oDatabase.RunParamQuery(sSQL, hshParams)
|
||||||
|
|
||||||
|
End Sub
|
||||||
|
|
||||||
|
Public Shared Sub DoProcessDelete(ByVal sProcessID As String)
|
||||||
|
Dim oDatabase As New mgrSQLite(mgrSQLite.Database.Local)
|
||||||
|
Dim sSQL As String
|
||||||
|
Dim hshParams As New Hashtable
|
||||||
|
|
||||||
|
sSQL = "DELETE FROM gameprocesses "
|
||||||
|
sSQL &= "WHERE ProcessID = @ProcessID;"
|
||||||
|
sSQL &= "DELETE FROM processes "
|
||||||
|
sSQL &= "WHERE ProcessID = @ProcessID;"
|
||||||
|
|
||||||
|
hshParams.Add("ProcessID", sProcessID)
|
||||||
|
|
||||||
|
oDatabase.RunParamQuery(sSQL, hshParams)
|
||||||
|
|
||||||
|
End Sub
|
||||||
|
|
||||||
|
Public Shared Function DoProcessGetbyID(ByVal sProcessID As String) As clsProcess
|
||||||
|
Dim oDatabase As New mgrSQLite(mgrSQLite.Database.Local)
|
||||||
|
Dim sSQL As String
|
||||||
|
Dim oData As DataSet
|
||||||
|
Dim oProcess As New clsProcess
|
||||||
|
Dim hshParams As New Hashtable
|
||||||
|
|
||||||
|
sSQL = "SELECT * FROM processes "
|
||||||
|
sSQL &= "WHERE ProcessID = @ProcessID"
|
||||||
|
|
||||||
|
hshParams.Add("ProcessID", sProcessID)
|
||||||
|
|
||||||
|
oData = oDatabase.ReadParamData(sSQL, hshParams)
|
||||||
|
|
||||||
|
For Each dr As DataRow In oData.Tables(0).Rows
|
||||||
|
oProcess = MapToObject(dr)
|
||||||
|
Next
|
||||||
|
|
||||||
|
Return oProcess
|
||||||
|
End Function
|
||||||
|
|
||||||
|
Public Shared Function DoProcessGetbyName(ByVal sProcessName As String) As clsProcess
|
||||||
|
Dim oDatabase As New mgrSQLite(mgrSQLite.Database.Local)
|
||||||
|
Dim sSQL As String
|
||||||
|
Dim oData As DataSet
|
||||||
|
Dim oProcess As New clsProcess
|
||||||
|
Dim hshParams As New Hashtable
|
||||||
|
|
||||||
|
sSQL = "SELECT * FROM processes "
|
||||||
|
sSQL &= "WHERE Name = @Name"
|
||||||
|
|
||||||
|
hshParams.Add("Name", sProcessName)
|
||||||
|
|
||||||
|
oData = oDatabase.ReadParamData(sSQL, hshParams)
|
||||||
|
|
||||||
|
For Each dr As DataRow In oData.Tables(0).Rows
|
||||||
|
oProcess = MapToObject(dr)
|
||||||
|
Next
|
||||||
|
|
||||||
|
Return oProcess
|
||||||
|
End Function
|
||||||
|
|
||||||
|
Public Shared Function DoCheckDuplicate(ByVal sName As String, Optional ByVal sExcludeID As String = "") As Boolean
|
||||||
|
Dim oDatabase As New mgrSQLite(mgrSQLite.Database.Local)
|
||||||
|
Dim sSQL As String
|
||||||
|
Dim oData As DataSet
|
||||||
|
Dim hshParams As New Hashtable
|
||||||
|
|
||||||
|
sSQL = "SELECT * FROM processes "
|
||||||
|
sSQL &= "WHERE Name = @Name"
|
||||||
|
|
||||||
|
hshParams.Add("Name", sName)
|
||||||
|
|
||||||
|
If sExcludeID <> String.Empty Then
|
||||||
|
sSQL &= " AND ProcessID <> @ProcessID"
|
||||||
|
hshParams.Add("ProcessID", sExcludeID)
|
||||||
|
End If
|
||||||
|
|
||||||
|
oData = oDatabase.ReadParamData(sSQL, hshParams)
|
||||||
|
|
||||||
|
If oData.Tables(0).Rows.Count > 0 Then
|
||||||
|
Return True
|
||||||
|
Else
|
||||||
|
Return False
|
||||||
|
End If
|
||||||
|
End Function
|
||||||
|
|
||||||
|
Public Shared Function ReadProcesses() As Hashtable
|
||||||
|
Dim oDatabase As New mgrSQLite(mgrSQLite.Database.Local)
|
||||||
|
Dim oData As DataSet
|
||||||
|
Dim sSQL As String
|
||||||
|
Dim hshList As New Hashtable
|
||||||
|
Dim oProcess As clsProcess
|
||||||
|
|
||||||
|
sSQL = "SELECT * from processes"
|
||||||
|
oData = oDatabase.ReadParamData(sSQL, New Hashtable)
|
||||||
|
|
||||||
|
For Each dr As DataRow In oData.Tables(0).Rows
|
||||||
|
oProcess = MapToObject(dr)
|
||||||
|
hshList.Add(oProcess.Name, oProcess)
|
||||||
|
Next
|
||||||
|
|
||||||
|
Return hshList
|
||||||
|
End Function
|
||||||
|
|
||||||
|
End Class
|
||||||
@@ -2,7 +2,7 @@
|
|||||||
Imports System.Management
|
Imports System.Management
|
||||||
Imports System.Text.RegularExpressions
|
Imports System.Text.RegularExpressions
|
||||||
|
|
||||||
Public Class mgrProcesses
|
Public Class mgrProcessDetection
|
||||||
|
|
||||||
Private prsFoundProcess As Process
|
Private prsFoundProcess As Process
|
||||||
Private dStartTime As DateTime = Now, dEndTime As DateTime = Now
|
Private dStartTime As DateTime = Now, dEndTime As DateTime = Now
|
||||||
+11
-43
@@ -28,25 +28,11 @@ Public Class mgrRestore
|
|||||||
Public Event UpdateRestoreInfo(oRestoreInfo As clsBackup)
|
Public Event UpdateRestoreInfo(oRestoreInfo As clsBackup)
|
||||||
Public Event SetLastAction(sMessage As String)
|
Public Event SetLastAction(sMessage As String)
|
||||||
|
|
||||||
Public Shared Sub DoPathOverride(ByRef oCheckBackup As clsBackup, ByVal oCheckGame As clsGame)
|
|
||||||
'Always override the manifest restore path with the current configuration path if possible
|
|
||||||
If Not oCheckGame.Temporary Then
|
|
||||||
If Path.IsPathRooted(oCheckGame.Path) Then
|
|
||||||
oCheckBackup.AbsolutePath = True
|
|
||||||
Else
|
|
||||||
oCheckBackup.AbsolutePath = False
|
|
||||||
End If
|
|
||||||
oCheckBackup.RestorePath = oCheckGame.Path
|
|
||||||
End If
|
|
||||||
End Sub
|
|
||||||
|
|
||||||
Public Shared Function CheckPath(ByRef oRestoreInfo As clsBackup, ByVal oGame As clsGame, ByRef bTriggerReload As Boolean) As Boolean
|
Public Shared Function CheckPath(ByRef oRestoreInfo As clsBackup, ByVal oGame As clsGame, ByRef bTriggerReload As Boolean) As Boolean
|
||||||
Dim sProcess As String
|
Dim sProcess As String
|
||||||
Dim sRestorePath As String
|
Dim sRestorePath As String
|
||||||
Dim bNoAuto As Boolean
|
Dim bNoAuto As Boolean
|
||||||
|
|
||||||
DoPathOverride(oRestoreInfo, oGame)
|
|
||||||
|
|
||||||
If Not oRestoreInfo.AbsolutePath Then
|
If Not oRestoreInfo.AbsolutePath Then
|
||||||
If oGame.ProcessPath <> String.Empty Then
|
If oGame.ProcessPath <> String.Empty Then
|
||||||
oRestoreInfo.RelativeRestorePath = oGame.ProcessPath & Path.DirectorySeparatorChar & oRestoreInfo.RestorePath
|
oRestoreInfo.RelativeRestorePath = oGame.ProcessPath & Path.DirectorySeparatorChar & oRestoreInfo.RestorePath
|
||||||
@@ -72,7 +58,7 @@ Public Class mgrRestore
|
|||||||
Return True
|
Return True
|
||||||
End Function
|
End Function
|
||||||
|
|
||||||
Public Shared Function CheckManifest(ByVal sAppName As String) As Boolean
|
Public Shared Function CheckManifest(ByVal sMonitorID As String) As Boolean
|
||||||
Dim slLocalManifest As SortedList
|
Dim slLocalManifest As SortedList
|
||||||
Dim slRemoteManifest As SortedList
|
Dim slRemoteManifest As SortedList
|
||||||
Dim oLocalItem As New clsBackup
|
Dim oLocalItem As New clsBackup
|
||||||
@@ -83,13 +69,13 @@ Public Class mgrRestore
|
|||||||
slLocalManifest = mgrManifest.ReadLatestManifest(mgrSQLite.Database.Local)
|
slLocalManifest = mgrManifest.ReadLatestManifest(mgrSQLite.Database.Local)
|
||||||
slRemoteManifest = mgrManifest.ReadLatestManifest(mgrSQLite.Database.Remote)
|
slRemoteManifest = mgrManifest.ReadLatestManifest(mgrSQLite.Database.Remote)
|
||||||
|
|
||||||
If slLocalManifest.Contains(sAppName) Then
|
If slLocalManifest.Contains(sMonitorID) Then
|
||||||
oLocalItem = DirectCast(slLocalManifest(sAppName), clsBackup)
|
oLocalItem = DirectCast(slLocalManifest(sMonitorID), clsBackup)
|
||||||
bLocal = True
|
bLocal = True
|
||||||
End If
|
End If
|
||||||
|
|
||||||
If slRemoteManifest.Contains(sAppName) Then
|
If slRemoteManifest.Contains(sMonitorID) Then
|
||||||
oRemoteItem = DirectCast(slRemoteManifest(sAppName), clsBackup)
|
oRemoteItem = DirectCast(slRemoteManifest(sMonitorID), clsBackup)
|
||||||
bRemote = True
|
bRemote = True
|
||||||
End If
|
End If
|
||||||
|
|
||||||
@@ -119,38 +105,20 @@ Public Class mgrRestore
|
|||||||
slRemoteManifest = mgrManifest.ReadLatestManifest(mgrSQLite.Database.Remote)
|
slRemoteManifest = mgrManifest.ReadLatestManifest(mgrSQLite.Database.Remote)
|
||||||
|
|
||||||
For Each oItem As clsBackup In slRemoteManifest.Values
|
For Each oItem As clsBackup In slRemoteManifest.Values
|
||||||
If slLocalManifest.Contains(oItem.Name) Then
|
If slLocalManifest.Contains(oItem.MonitorID) Then
|
||||||
oLocalItem = DirectCast(slLocalManifest(oItem.Name), clsBackup)
|
oLocalItem = DirectCast(slLocalManifest(oItem.MonitorID), clsBackup)
|
||||||
|
|
||||||
If oItem.DateUpdated > oLocalItem.DateUpdated Then
|
If oItem.DateUpdated > oLocalItem.DateUpdated Then
|
||||||
slRestoreItems.Add(oItem.Name, oItem)
|
slRestoreItems.Add(oItem.MonitorID, oItem)
|
||||||
End If
|
End If
|
||||||
Else
|
Else
|
||||||
slRestoreItems.Add(oItem.Name, oItem)
|
slRestoreItems.Add(oItem.MonitorID, oItem)
|
||||||
End If
|
End If
|
||||||
Next
|
Next
|
||||||
|
|
||||||
Return slRestoreItems
|
Return slRestoreItems
|
||||||
End Function
|
End Function
|
||||||
|
|
||||||
Public Shared Function SyncLocalManifest() As SortedList
|
|
||||||
Dim slLocalManifest As SortedList
|
|
||||||
Dim slRemoteManifest As SortedList
|
|
||||||
Dim slRemovedItems As New SortedList
|
|
||||||
|
|
||||||
slLocalManifest = mgrManifest.ReadLatestManifest(mgrSQLite.Database.Local)
|
|
||||||
slRemoteManifest = mgrManifest.ReadLatestManifest(mgrSQLite.Database.Remote)
|
|
||||||
|
|
||||||
For Each oItem As clsBackup In slLocalManifest.Values
|
|
||||||
If Not slRemoteManifest.Contains(oItem.Name) Then
|
|
||||||
slRemovedItems.Add(oItem.Name, oItem)
|
|
||||||
mgrManifest.DoManifestDeletebyName(oItem, mgrSQLite.Database.Local)
|
|
||||||
End If
|
|
||||||
Next
|
|
||||||
|
|
||||||
Return slRemovedItems
|
|
||||||
End Function
|
|
||||||
|
|
||||||
Public Function CheckRestorePrereq(ByVal oBackupInfo As clsBackup, ByVal bCleanFolder As Boolean) As Boolean
|
Public Function CheckRestorePrereq(ByVal oBackupInfo As clsBackup, ByVal bCleanFolder As Boolean) As Boolean
|
||||||
Dim sHash As String
|
Dim sHash As String
|
||||||
Dim sExtractPath As String
|
Dim sExtractPath As String
|
||||||
@@ -262,8 +230,8 @@ Public Class mgrRestore
|
|||||||
|
|
||||||
If bRestoreCompleted Then
|
If bRestoreCompleted Then
|
||||||
'Save Local Manifest
|
'Save Local Manifest
|
||||||
If mgrManifest.DoGlobalManifestCheck(oBackupInfo.Name, mgrSQLite.Database.Local) Then
|
If mgrManifest.DoManifestCheck(oBackupInfo.MonitorID, mgrSQLite.Database.Local) Then
|
||||||
mgrManifest.DoManifestUpdateByName(oBackupInfo, mgrSQLite.Database.Local)
|
mgrManifest.DoManifestUpdateByMonitorID(oBackupInfo, mgrSQLite.Database.Local)
|
||||||
Else
|
Else
|
||||||
mgrManifest.DoManifestAdd(oBackupInfo, mgrSQLite.Database.Local)
|
mgrManifest.DoManifestAdd(oBackupInfo, mgrSQLite.Database.Local)
|
||||||
End If
|
End If
|
||||||
|
|||||||
+98
-16
@@ -27,17 +27,17 @@ Public Class mgrSQLite
|
|||||||
End Select
|
End Select
|
||||||
End Sub
|
End Sub
|
||||||
|
|
||||||
Private Sub BackupDB(ByVal sLastVer As String)
|
Public Sub BackupDB(ByVal sDescription As String, Optional ByVal bOverwrite As Boolean = False)
|
||||||
Dim sNewFile As String = String.Empty
|
Dim sNewFile As String = String.Empty
|
||||||
|
|
||||||
Try
|
Try
|
||||||
Select Case eDatabase
|
Select Case eDatabase
|
||||||
Case Database.Local
|
Case Database.Local
|
||||||
sNewFile = mgrPath.DatabaseLocation & "." & sLastVer & ".bak"
|
sNewFile = mgrPath.DatabaseLocation & "." & sDescription & ".bak"
|
||||||
File.Copy(mgrPath.DatabaseLocation, sNewFile, False)
|
File.Copy(mgrPath.DatabaseLocation, sNewFile, bOverwrite)
|
||||||
Case Database.Remote
|
Case Database.Remote
|
||||||
sNewFile = mgrPath.RemoteDatabaseLocation & "." & sLastVer & ".bak"
|
sNewFile = mgrPath.RemoteDatabaseLocation & "." & sDescription & ".bak"
|
||||||
File.Copy(mgrPath.RemoteDatabaseLocation, sNewFile, False)
|
File.Copy(mgrPath.RemoteDatabaseLocation, sNewFile, bOverwrite)
|
||||||
End Select
|
End Select
|
||||||
Catch ex As Exception
|
Catch ex As Exception
|
||||||
mgrCommon.ShowMessage(mgrSQLite_ErrorBackupFailure, New String() {sNewFile, ex.Message}, MsgBoxStyle.Exclamation)
|
mgrCommon.ShowMessage(mgrSQLite_ErrorBackupFailure, New String() {sNewFile, ex.Message}, MsgBoxStyle.Exclamation)
|
||||||
@@ -72,18 +72,19 @@ Public Class mgrSQLite
|
|||||||
'Add Tables (Settings)
|
'Add Tables (Settings)
|
||||||
sSql = "CREATE TABLE settings (SettingsID INTEGER NOT NULL PRIMARY KEY, MonitorOnStartup BOOLEAN NOT NULL, StartToTray BOOLEAN NOT NULL, ShowDetectionToolTips BOOLEAN NOT NULL, " &
|
sSql = "CREATE TABLE settings (SettingsID INTEGER NOT NULL PRIMARY KEY, MonitorOnStartup BOOLEAN NOT NULL, StartToTray BOOLEAN NOT NULL, ShowDetectionToolTips BOOLEAN NOT NULL, " &
|
||||||
"DisableConfirmation BOOLEAN NOT NULL, CreateSubFolder BOOLEAN NOT NULL, ShowOverwriteWarning BOOLEAN NOT NULL, RestoreOnLaunch BOOLEAN NOT NULL, " &
|
"DisableConfirmation BOOLEAN NOT NULL, CreateSubFolder BOOLEAN NOT NULL, ShowOverwriteWarning BOOLEAN NOT NULL, RestoreOnLaunch BOOLEAN NOT NULL, " &
|
||||||
"BackupFolder TEXT NOT NULL, Sync BOOLEAN NOT NULL, StartWithWindows BOOLEAN NOT NULL, TimeTracking BOOLEAN NOT NULL, " &
|
"BackupFolder TEXT NOT NULL, StartWithWindows BOOLEAN NOT NULL, TimeTracking BOOLEAN NOT NULL, " &
|
||||||
"SupressBackup BOOLEAN NOT NULL, SupressBackupThreshold INTEGER NOT NULL, CompressionLevel INTEGER NOT NULL, Custom7zArguments TEXT, " &
|
"SupressBackup BOOLEAN NOT NULL, SupressBackupThreshold INTEGER NOT NULL, CompressionLevel INTEGER NOT NULL, Custom7zArguments TEXT, " &
|
||||||
"Custom7zLocation TEXT, SyncFields INTEGER NOT NULL, AutoSaveLog BOOLEAN NOT NULL, AutoRestore BOOLEAN NOT NULL, AutoMark BOOLEAN NOT NULL, SessionTracking BOOLEAN NOT NULL);"
|
"Custom7zLocation TEXT, SyncFields INTEGER NOT NULL, AutoSaveLog BOOLEAN NOT NULL, AutoRestore BOOLEAN NOT NULL, AutoMark BOOLEAN NOT NULL, SessionTracking BOOLEAN NOT NULL, " &
|
||||||
|
"SupressMessages INTEGER NOT NULL, BackupOnLaunch BOOLEAN NOT NULL, UseGameID BOOLEAN NOT NULL);"
|
||||||
|
|
||||||
'Add Tables (SavedPath)
|
'Add Tables (SavedPath)
|
||||||
sSql &= "CREATE TABLE savedpath (PathName TEXT NOT NULL PRIMARY KEY, Path TEXT NOT NULL);"
|
sSql &= "CREATE TABLE savedpath (PathName TEXT NOT NULL PRIMARY KEY, Path TEXT NOT NULL);"
|
||||||
|
|
||||||
'Add Tables (Monitor List)
|
'Add Tables (Monitor List)
|
||||||
sSql &= "CREATE TABLE monitorlist (MonitorID TEXT NOT NULL UNIQUE, Name TEXT NOT NULL, Process TEXT NOT NULL, Path TEXT, " &
|
sSql &= "CREATE TABLE monitorlist (MonitorID TEXT NOT NULL PRIMARY KEY, Name TEXT NOT NULL, Process TEXT NOT NULL, Path TEXT, " &
|
||||||
"AbsolutePath BOOLEAN NOT NULL, FolderSave BOOLEAN NOT NULL, FileType TEXT, TimeStamp BOOLEAN NOT NULL, ExcludeList TEXT NOT NULL, " &
|
"AbsolutePath BOOLEAN NOT NULL, FolderSave BOOLEAN NOT NULL, FileType TEXT, TimeStamp BOOLEAN NOT NULL, ExcludeList TEXT NOT NULL, " &
|
||||||
"ProcessPath TEXT, Icon TEXT, Hours REAL, Version TEXT, Company TEXT, Enabled BOOLEAN NOT NULL, MonitorOnly BOOLEAN NOT NULL, " &
|
"ProcessPath TEXT, Icon TEXT, Hours REAL, Version TEXT, Company TEXT, Enabled BOOLEAN NOT NULL, MonitorOnly BOOLEAN NOT NULL, " &
|
||||||
"BackupLimit INTEGER NOT NULL, CleanFolder BOOLEAN NOT NULL, Parameter TEXT, Comments TEXT, IsRegEx BOOLEAN NOT NULL, PRIMARY KEY(Name, Process));"
|
"BackupLimit INTEGER NOT NULL, CleanFolder BOOLEAN NOT NULL, Parameter TEXT, Comments TEXT, IsRegEx BOOLEAN NOT NULL);"
|
||||||
|
|
||||||
'Add Tables (Tags)
|
'Add Tables (Tags)
|
||||||
sSql &= "CREATE TABLE tags (TagID TEXT NOT NULL UNIQUE, Name TEXT NOT NULL PRIMARY KEY); "
|
sSql &= "CREATE TABLE tags (TagID TEXT NOT NULL UNIQUE, Name TEXT NOT NULL PRIMARY KEY); "
|
||||||
@@ -95,12 +96,18 @@ Public Class mgrSQLite
|
|||||||
sSql &= "CREATE TABLE variables (VariableID TEXT NOT NULL UNIQUE, Name TEXT NOT NULL PRIMARY KEY, Path TEXT NOT NULL);"
|
sSql &= "CREATE TABLE variables (VariableID TEXT NOT NULL UNIQUE, Name TEXT NOT NULL PRIMARY KEY, Path TEXT NOT NULL);"
|
||||||
|
|
||||||
'Add Tables (Local Manifest)
|
'Add Tables (Local Manifest)
|
||||||
sSql &= "CREATE TABLE manifest (ManifestID TEXT NOT NULL PRIMARY KEY, Name TEXT NOT NULL, FileName TEXT NOT NULL, RestorePath TEXT NOT NULL, " &
|
sSql &= "CREATE TABLE manifest (ManifestID TEXT NOT NULL PRIMARY KEY, MonitorID TEXT NOT NULL, FileName TEXT NOT NULL, " &
|
||||||
"AbsolutePath BOOLEAN NOT NULL, DateUpdated TEXT NOT NULL, UpdatedBy TEXT NOT NULL, CheckSum TEXT);"
|
"DateUpdated TEXT NOT NULL, UpdatedBy TEXT NOT NULL, CheckSum TEXT);"
|
||||||
|
|
||||||
'Add Tables (Sessions)
|
'Add Tables (Sessions)
|
||||||
sSql &= "CREATE TABLE sessions (MonitorID TEXT NOT NULL, Start INTEGER NOT NULL, End INTEGER NOT NULL, PRIMARY KEY(MonitorID, Start));"
|
sSql &= "CREATE TABLE sessions (MonitorID TEXT NOT NULL, Start INTEGER NOT NULL, End INTEGER NOT NULL, PRIMARY KEY(MonitorID, Start));"
|
||||||
|
|
||||||
|
'Add Tables (Processes)
|
||||||
|
sSql &= "CREATE TABLE processes (ProcessID TEXT NOT NULL PRIMARY KEY, Name Text NOT NULL, Path TEXT NOT NULL, Args TEXT, Kill BOOLEAN NOT NULL);"
|
||||||
|
|
||||||
|
'Add Tables (Game Processes)
|
||||||
|
sSql &= "CREATE TABLE gameprocesses (ProcessID TEXT NOT NULL, MonitorID TEXT NOT NULL, PRIMARY KEY(ProcessID, MonitorID));"
|
||||||
|
|
||||||
'Set Version
|
'Set Version
|
||||||
sSql &= "PRAGMA user_version=" & mgrCommon.AppVersion
|
sSql &= "PRAGMA user_version=" & mgrCommon.AppVersion
|
||||||
|
|
||||||
@@ -120,14 +127,14 @@ Public Class mgrSQLite
|
|||||||
SqliteConnection.CreateFile(sDatabaseLocation)
|
SqliteConnection.CreateFile(sDatabaseLocation)
|
||||||
|
|
||||||
'Add Tables (Remote Monitor List)
|
'Add Tables (Remote Monitor List)
|
||||||
sSql = "CREATE TABLE monitorlist (MonitorID TEXT NOT NULL UNIQUE, Name TEXT NOT NULL, Process TEXT NOT NULL, Path TEXT, " &
|
sSql = "CREATE TABLE monitorlist (MonitorID TEXT NOT NULL PRIMARY KEY, Name TEXT NOT NULL, Process TEXT NOT NULL, Path TEXT, " &
|
||||||
"AbsolutePath BOOLEAN NOT NULL, FolderSave BOOLEAN NOT NULL, FileType TEXT, TimeStamp BOOLEAN NOT NULL, ExcludeList TEXT NOT NULL, " &
|
"AbsolutePath BOOLEAN NOT NULL, FolderSave BOOLEAN NOT NULL, FileType TEXT, TimeStamp BOOLEAN NOT NULL, ExcludeList TEXT NOT NULL, " &
|
||||||
"ProcessPath TEXT, Icon TEXT, Hours REAL, Version TEXT, Company TEXT, Enabled BOOLEAN NOT NULL, MonitorOnly BOOLEAN NOT NULL, " &
|
"ProcessPath TEXT, Icon TEXT, Hours REAL, Version TEXT, Company TEXT, Enabled BOOLEAN NOT NULL, MonitorOnly BOOLEAN NOT NULL, " &
|
||||||
"BackupLimit INTEGER NOT NULL, CleanFolder BOOLEAN NOT NULL, Parameter TEXT, Comments TEXT, IsRegEx BOOLEAN NOT NULL, PRIMARY KEY(Name, Process));"
|
"BackupLimit INTEGER NOT NULL, CleanFolder BOOLEAN NOT NULL, Parameter TEXT, Comments TEXT, IsRegEx BOOLEAN NOT NULL);"
|
||||||
|
|
||||||
'Add Tables (Remote Manifest)
|
'Add Tables (Remote Manifest)
|
||||||
sSql &= "CREATE TABLE manifest (ManifestID TEXT NOT NULL PRIMARY KEY, Name TEXT NOT NULL, FileName TEXT NOT NULL, RestorePath TEXT NOT NULL, " &
|
sSql &= "CREATE TABLE manifest (ManifestID TEXT NOT NULL PRIMARY KEY, MonitorID TEXT NOT NULL, FileName TEXT NOT NULL, " &
|
||||||
"AbsolutePath BOOLEAN NOT NULL, DateUpdated TEXT NOT NULL, UpdatedBy TEXT NOT NULL, CheckSum TEXT);"
|
"DateUpdated TEXT NOT NULL, UpdatedBy TEXT NOT NULL, CheckSum TEXT);"
|
||||||
|
|
||||||
'Add Tables (Remote Tags)
|
'Add Tables (Remote Tags)
|
||||||
sSql &= "CREATE TABLE tags (TagID TEXT NOT NULL UNIQUE, Name TEXT NOT NULL PRIMARY KEY); "
|
sSql &= "CREATE TABLE tags (TagID TEXT NOT NULL UNIQUE, Name TEXT NOT NULL PRIMARY KEY); "
|
||||||
@@ -267,7 +274,7 @@ Public Class mgrSQLite
|
|||||||
Dim oResult As New Object
|
Dim oResult As New Object
|
||||||
|
|
||||||
Connect()
|
Connect()
|
||||||
Command = New SqliteCommand(sSQL, db)
|
command = New SqliteCommand(sSQL, db)
|
||||||
BuildParams(command, hshParams)
|
BuildParams(command, hshParams)
|
||||||
|
|
||||||
Try
|
Try
|
||||||
@@ -759,6 +766,81 @@ Public Class mgrSQLite
|
|||||||
RunParamQuery(sSQL, New Hashtable)
|
RunParamQuery(sSQL, New Hashtable)
|
||||||
End If
|
End If
|
||||||
End If
|
End If
|
||||||
|
|
||||||
|
'1.10 Upgrade
|
||||||
|
If GetDatabaseVersion() < 110 Then
|
||||||
|
If eDatabase = Database.Local Then
|
||||||
|
'Backup DB before starting
|
||||||
|
BackupDB("v108")
|
||||||
|
|
||||||
|
'Add Tables
|
||||||
|
sSQL = "CREATE TABLE processes (ProcessID TEXT NOT NULL PRIMARY KEY, Name Text NOT NULL, Path TEXT NOT NULL, Args TEXT, Kill BOOLEAN NOT NULL);"
|
||||||
|
sSQL &= "CREATE TABLE gameprocesses (ProcessID TEXT NOT NULL, MonitorID TEXT NOT NULL, PRIMARY KEY(ProcessID, MonitorID));"
|
||||||
|
|
||||||
|
'Overhaul Tables
|
||||||
|
sSQL &= "CREATE TABLE settings_new (SettingsID INTEGER NOT NULL PRIMARY KEY, MonitorOnStartup BOOLEAN NOT NULL, StartToTray BOOLEAN NOT NULL, ShowDetectionToolTips BOOLEAN NOT NULL, " &
|
||||||
|
"DisableConfirmation BOOLEAN NOT NULL, CreateSubFolder BOOLEAN NOT NULL, ShowOverwriteWarning BOOLEAN NOT NULL, RestoreOnLaunch BOOLEAN NOT NULL, " &
|
||||||
|
"BackupFolder TEXT NOT NULL, StartWithWindows BOOLEAN NOT NULL, TimeTracking BOOLEAN NOT NULL, " &
|
||||||
|
"SupressBackup BOOLEAN NOT NULL, SupressBackupThreshold INTEGER NOT NULL, CompressionLevel INTEGER NOT NULL, Custom7zArguments TEXT, " &
|
||||||
|
"Custom7zLocation TEXT, SyncFields INTEGER NOT NULL, AutoSaveLog BOOLEAN NOT NULL, AutoRestore BOOLEAN NOT NULL, AutoMark BOOLEAN NOT NULL, SessionTracking BOOLEAN NOT NULL, " &
|
||||||
|
"SupressMessages INTEGER NOT NULL, BackupOnLaunch BOOLEAN NOT NULL, UseGameID BOOLEAN NOT NULL);"
|
||||||
|
sSQL &= "INSERT INTO settings_new(SettingsID, MonitorOnStartup, StartToTray, ShowDetectionToolTips, DisableConfirmation, CreateSubFolder, ShowOverwriteWarning, RestoreOnLaunch, " &
|
||||||
|
"BackupFolder, StartWithWindows, TimeTracking, SupressBackup, SupressBackupThreshold, CompressionLevel, Custom7zArguments, Custom7zLocation, SyncFields, AutoSaveLog, " &
|
||||||
|
"AutoRestore, AutoMark, SessionTracking, SupressMessages, BackupOnLaunch, UseGameID) SELECT SettingsID, MonitorOnStartup, StartToTray, ShowDetectionToolTips, DisableConfirmation, CreateSubFolder, ShowOverwriteWarning, RestoreOnLaunch, " &
|
||||||
|
"BackupFolder, StartWithWindows, TimeTracking, SupressBackup, SupressBackupThreshold, CompressionLevel, Custom7zArguments, Custom7zLocation, SyncFields, AutoSaveLog, " &
|
||||||
|
"AutoRestore, AutoMark, SessionTracking, 0, 1, 0 FROM settings;" &
|
||||||
|
"DROP TABLE settings; ALTER TABLE settings_new RENAME TO settings;"
|
||||||
|
sSQL &= "CREATE TABLE monitorlist_new (MonitorID TEXT NOT NULL PRIMARY KEY, Name TEXT NOT NULL, Process TEXT NOT NULL, Path TEXT, " &
|
||||||
|
"AbsolutePath BOOLEAN NOT NULL, FolderSave BOOLEAN NOT NULL, FileType TEXT, TimeStamp BOOLEAN NOT NULL, ExcludeList TEXT NOT NULL, " &
|
||||||
|
"ProcessPath TEXT, Icon TEXT, Hours REAL, Version TEXT, Company TEXT, Enabled BOOLEAN NOT NULL, MonitorOnly BOOLEAN NOT NULL, " &
|
||||||
|
"BackupLimit INTEGER NOT NULL, CleanFolder BOOLEAN NOT NULL, Parameter TEXT, Comments TEXT, IsRegEx BOOLEAN NOT NULL);"
|
||||||
|
sSQL &= "INSERT INTO monitorlist_new (MonitorID, Name, Process, Path, AbsolutePath, FolderSave, FileType, TimeStamp, ExcludeList, " &
|
||||||
|
"ProcessPath, Icon, Hours, Version, Company, Enabled, MonitorOnly, BackupLimit, CleanFolder, Parameter, Comments, IsRegEx)" &
|
||||||
|
"SELECT MonitorID, Name, Process, Path, AbsolutePath, FolderSave, FileType, TimeStamp, ExcludeList, " &
|
||||||
|
"ProcessPath, Icon, Hours, Version, Company, Enabled, MonitorOnly, BackupLimit, CleanFolder, Parameter, Comments, IsRegEx FROM monitorlist;" &
|
||||||
|
"DROP TABLE monitorlist; ALTER TABLE monitorlist_new RENAME TO monitorlist;"
|
||||||
|
sSQL &= "CREATE TABLE manifest_new (ManifestID TEXT NOT NULL PRIMARY KEY, MonitorID TEXT NOT NULL, FileName TEXT NOT NULL, " &
|
||||||
|
"DateUpdated TEXT NOT NULL, UpdatedBy TEXT NOT NULL, CheckSum TEXT);"
|
||||||
|
sSQL &= "INSERT INTO manifest_new (ManifestID, MonitorID, FileName, DateUpdated, UpdatedBy, CheckSum) " &
|
||||||
|
"SELECT ManifestID, MonitorID, FileName, DateUpdated, UpdatedBy, CheckSum FROM manifest NATURAL JOIN monitorlist;" &
|
||||||
|
"DROP TABLE manifest; ALTER TABLE manifest_new RENAME TO manifest;"
|
||||||
|
|
||||||
|
sSQL &= "PRAGMA user_version=110"
|
||||||
|
|
||||||
|
RunParamQuery(sSQL, New Hashtable)
|
||||||
|
End If
|
||||||
|
If eDatabase = Database.Remote Then
|
||||||
|
'Backup DB before starting
|
||||||
|
BackupDB("v108")
|
||||||
|
|
||||||
|
'Overhaul Tables
|
||||||
|
sSQL = "CREATE TABLE monitorlist_new (MonitorID TEXT NOT NULL PRIMARY KEY, Name TEXT NOT NULL, Process TEXT NOT NULL, Path TEXT, " &
|
||||||
|
"AbsolutePath BOOLEAN NOT NULL, FolderSave BOOLEAN NOT NULL, FileType TEXT, TimeStamp BOOLEAN NOT NULL, ExcludeList TEXT NOT NULL, " &
|
||||||
|
"ProcessPath TEXT, Icon TEXT, Hours REAL, Version TEXT, Company TEXT, Enabled BOOLEAN NOT NULL, MonitorOnly BOOLEAN NOT NULL, " &
|
||||||
|
"BackupLimit INTEGER NOT NULL, CleanFolder BOOLEAN NOT NULL, Parameter TEXT, Comments TEXT, IsRegEx BOOLEAN NOT NULL);"
|
||||||
|
sSQL &= "INSERT INTO monitorlist_new (MonitorID, Name, Process, Path, AbsolutePath, FolderSave, FileType, TimeStamp, ExcludeList, " &
|
||||||
|
"ProcessPath, Icon, Hours, Version, Company, Enabled, MonitorOnly, BackupLimit, CleanFolder, Parameter, Comments, IsRegEx)" &
|
||||||
|
"SELECT MonitorID, Name, Process, Path, AbsolutePath, FolderSave, FileType, TimeStamp, ExcludeList, " &
|
||||||
|
"ProcessPath, Icon, Hours, Version, Company, Enabled, MonitorOnly, BackupLimit, CleanFolder, Parameter, Comments, IsRegEx FROM monitorlist;" &
|
||||||
|
"DROP TABLE monitorlist; ALTER TABLE monitorlist_new RENAME TO monitorlist;"
|
||||||
|
|
||||||
|
'We need to push the local database game list against the remote database in case they had syncing disabled
|
||||||
|
Dim hshMonitorList As Hashtable = mgrMonitorList.ReadList(mgrMonitorList.eListTypes.FullList, mgrSQLite.Database.Local)
|
||||||
|
Dim oSettings As New mgrSettings
|
||||||
|
oSettings.LoadSettings()
|
||||||
|
mgrMonitorList.DoListAddUpdateSync(hshMonitorList, Database.Remote, oSettings.SyncFields)
|
||||||
|
|
||||||
|
sSQL &= "CREATE TABLE manifest_new (ManifestID TEXT NOT NULL PRIMARY KEY, MonitorID TEXT NOT NULL, FileName TEXT NOT NULL, " &
|
||||||
|
"DateUpdated TEXT NOT NULL, UpdatedBy TEXT NOT NULL, CheckSum TEXT);"
|
||||||
|
sSQL &= "INSERT INTO manifest_new (ManifestID, MonitorID, FileName, DateUpdated, UpdatedBy, CheckSum) " &
|
||||||
|
"SELECT ManifestID, MonitorID, FileName, DateUpdated, UpdatedBy, CheckSum FROM manifest NATURAL JOIN monitorlist;" &
|
||||||
|
"DROP TABLE manifest; ALTER TABLE manifest_new RENAME TO manifest;"
|
||||||
|
|
||||||
|
sSQL &= "PRAGMA user_version=110"
|
||||||
|
|
||||||
|
RunParamQuery(sSQL, New Hashtable)
|
||||||
|
End If
|
||||||
|
End If
|
||||||
End Sub
|
End Sub
|
||||||
|
|
||||||
Public Function GetDBSize() As Long
|
Public Function GetDBSize() As Long
|
||||||
|
|||||||
+57
-14
@@ -11,7 +11,6 @@ Public Class mgrSettings
|
|||||||
Private bRestoreOnLaunch As Boolean = False
|
Private bRestoreOnLaunch As Boolean = False
|
||||||
Private bAutoRestore As Boolean = False
|
Private bAutoRestore As Boolean = False
|
||||||
Private bAutoMark As Boolean = False
|
Private bAutoMark As Boolean = False
|
||||||
Private bSync As Boolean = True
|
|
||||||
Private bTimeTracking As Boolean = True
|
Private bTimeTracking As Boolean = True
|
||||||
Private bSessionTracking As Boolean = False
|
Private bSessionTracking As Boolean = False
|
||||||
Private bSupressBackup As Boolean = False
|
Private bSupressBackup As Boolean = False
|
||||||
@@ -21,7 +20,15 @@ Public Class mgrSettings
|
|||||||
Private s7zLocation As String = String.Empty
|
Private s7zLocation As String = String.Empty
|
||||||
Private sBackupFolder As String = Environment.GetFolderPath(Environment.SpecialFolder.MyDocuments).TrimEnd(New Char() {"\", "/"})
|
Private sBackupFolder As String = Environment.GetFolderPath(Environment.SpecialFolder.MyDocuments).TrimEnd(New Char() {"\", "/"})
|
||||||
Private eSyncFields As clsGame.eOptionalSyncFields = clsGame.eOptionalSyncFields.None Or clsGame.eOptionalSyncFields.TimeStamp
|
Private eSyncFields As clsGame.eOptionalSyncFields = clsGame.eOptionalSyncFields.None Or clsGame.eOptionalSyncFields.TimeStamp
|
||||||
|
Private eMessages As eSupressMessages = eSupressMessages.None
|
||||||
Private bAutoSaveLog As Boolean = False
|
Private bAutoSaveLog As Boolean = False
|
||||||
|
Private bBackupOnLaunch As Boolean = True
|
||||||
|
Private bUseGameID As Boolean = False
|
||||||
|
|
||||||
|
<Flags()> Public Enum eSupressMessages
|
||||||
|
None = 0
|
||||||
|
GameIDSync = 1
|
||||||
|
End Enum
|
||||||
|
|
||||||
Property StartWithWindows As Boolean
|
Property StartWithWindows As Boolean
|
||||||
Get
|
Get
|
||||||
@@ -113,15 +120,6 @@ Public Class mgrSettings
|
|||||||
End Set
|
End Set
|
||||||
End Property
|
End Property
|
||||||
|
|
||||||
Property Sync As Boolean
|
|
||||||
Get
|
|
||||||
Return bSync
|
|
||||||
End Get
|
|
||||||
Set(value As Boolean)
|
|
||||||
bSync = value
|
|
||||||
End Set
|
|
||||||
End Property
|
|
||||||
|
|
||||||
Property TimeTracking As Boolean
|
Property TimeTracking As Boolean
|
||||||
Get
|
Get
|
||||||
Return bTimeTracking
|
Return bTimeTracking
|
||||||
@@ -260,6 +258,38 @@ Public Class mgrSettings
|
|||||||
End Set
|
End Set
|
||||||
End Property
|
End Property
|
||||||
|
|
||||||
|
Property SupressMessages As eSupressMessages
|
||||||
|
Get
|
||||||
|
Return eMessages
|
||||||
|
End Get
|
||||||
|
Set(value As eSupressMessages)
|
||||||
|
eMessages = value
|
||||||
|
End Set
|
||||||
|
End Property
|
||||||
|
|
||||||
|
Property BackupOnLaunch As Boolean
|
||||||
|
Get
|
||||||
|
Return bBackupOnLaunch
|
||||||
|
End Get
|
||||||
|
Set(value As Boolean)
|
||||||
|
bBackupOnLaunch = value
|
||||||
|
End Set
|
||||||
|
End Property
|
||||||
|
|
||||||
|
Property UseGameID As Boolean
|
||||||
|
Get
|
||||||
|
Return bUseGameID
|
||||||
|
End Get
|
||||||
|
Set(value As Boolean)
|
||||||
|
bUseGameID = value
|
||||||
|
End Set
|
||||||
|
End Property
|
||||||
|
|
||||||
|
Sub New()
|
||||||
|
'The GameIDsync message should be supressed on all new databases
|
||||||
|
SupressMessages = SetMessageField(SupressMessages, eSupressMessages.GameIDSync)
|
||||||
|
End Sub
|
||||||
|
|
||||||
Private Sub SaveFromClass()
|
Private Sub SaveFromClass()
|
||||||
Dim oDatabase As New mgrSQLite(mgrSQLite.Database.Local)
|
Dim oDatabase As New mgrSQLite(mgrSQLite.Database.Local)
|
||||||
Dim sSQL As String
|
Dim sSQL As String
|
||||||
@@ -269,9 +299,9 @@ Public Class mgrSettings
|
|||||||
oDatabase.RunParamQuery(sSQL, New Hashtable)
|
oDatabase.RunParamQuery(sSQL, New Hashtable)
|
||||||
|
|
||||||
sSQL = "INSERT INTO settings VALUES (1, @MonitorOnStartup, @StartToTray, @ShowDetectionToolTips, @DisableConfirmation, "
|
sSQL = "INSERT INTO settings VALUES (1, @MonitorOnStartup, @StartToTray, @ShowDetectionToolTips, @DisableConfirmation, "
|
||||||
sSQL &= "@CreateSubFolder, @ShowOverwriteWarning, @RestoreOnLaunch, @BackupFolder, @Sync, @StartWithWindows, "
|
sSQL &= "@CreateSubFolder, @ShowOverwriteWarning, @RestoreOnLaunch, @BackupFolder, @StartWithWindows, "
|
||||||
sSQL &= "@TimeTracking, @SupressBackup, @SupressBackupThreshold, @CompressionLevel, @Custom7zArguments, @Custom7zLocation, "
|
sSQL &= "@TimeTracking, @SupressBackup, @SupressBackupThreshold, @CompressionLevel, @Custom7zArguments, @Custom7zLocation, "
|
||||||
sSQL &= "@SyncFields, @AutoSaveLog, @AutoRestore, @AutoMark, @SessionTracking)"
|
sSQL &= "@SyncFields, @AutoSaveLog, @AutoRestore, @AutoMark, @SessionTracking, @SupressMessages, @BackupOnLaunch, @UseGameID)"
|
||||||
|
|
||||||
hshParams.Add("MonitorOnStartup", MonitorOnStartup)
|
hshParams.Add("MonitorOnStartup", MonitorOnStartup)
|
||||||
hshParams.Add("StartToTray", StartToTray)
|
hshParams.Add("StartToTray", StartToTray)
|
||||||
@@ -281,7 +311,6 @@ Public Class mgrSettings
|
|||||||
hshParams.Add("ShowOverwriteWarning", ShowOverwriteWarning)
|
hshParams.Add("ShowOverwriteWarning", ShowOverwriteWarning)
|
||||||
hshParams.Add("RestoreOnLaunch", RestoreOnLaunch)
|
hshParams.Add("RestoreOnLaunch", RestoreOnLaunch)
|
||||||
hshParams.Add("BackupFolder", BackupFolder)
|
hshParams.Add("BackupFolder", BackupFolder)
|
||||||
hshParams.Add("Sync", Sync)
|
|
||||||
hshParams.Add("StartWithWindows", StartWithWindows)
|
hshParams.Add("StartWithWindows", StartWithWindows)
|
||||||
hshParams.Add("TimeTracking", TimeTracking)
|
hshParams.Add("TimeTracking", TimeTracking)
|
||||||
hshParams.Add("SupressBackup", SupressBackup)
|
hshParams.Add("SupressBackup", SupressBackup)
|
||||||
@@ -294,6 +323,9 @@ Public Class mgrSettings
|
|||||||
hshParams.Add("AutoRestore", AutoRestore)
|
hshParams.Add("AutoRestore", AutoRestore)
|
||||||
hshParams.Add("AutoMark", AutoMark)
|
hshParams.Add("AutoMark", AutoMark)
|
||||||
hshParams.Add("SessionTracking", SessionTracking)
|
hshParams.Add("SessionTracking", SessionTracking)
|
||||||
|
hshParams.Add("SupressMessages", SupressMessages)
|
||||||
|
hshParams.Add("BackupOnLaunch", BackupOnLaunch)
|
||||||
|
hshParams.Add("UseGameID", UseGameID)
|
||||||
oDatabase.RunParamQuery(sSQL, hshParams)
|
oDatabase.RunParamQuery(sSQL, hshParams)
|
||||||
End Sub
|
End Sub
|
||||||
|
|
||||||
@@ -316,7 +348,6 @@ Public Class mgrSettings
|
|||||||
ShowOverwriteWarning = CBool(dr("ShowOverwriteWarning"))
|
ShowOverwriteWarning = CBool(dr("ShowOverwriteWarning"))
|
||||||
RestoreOnLaunch = CBool(dr("RestoreOnLaunch"))
|
RestoreOnLaunch = CBool(dr("RestoreOnLaunch"))
|
||||||
BackupFolder = CStr(dr("BackupFolder"))
|
BackupFolder = CStr(dr("BackupFolder"))
|
||||||
Sync = CBool(dr("Sync"))
|
|
||||||
StartWithWindows = CBool(dr("StartWithWindows"))
|
StartWithWindows = CBool(dr("StartWithWindows"))
|
||||||
TimeTracking = CBool(dr("TimeTracking"))
|
TimeTracking = CBool(dr("TimeTracking"))
|
||||||
SupressBackup = CBool(dr("SupressBackup"))
|
SupressBackup = CBool(dr("SupressBackup"))
|
||||||
@@ -329,6 +360,9 @@ Public Class mgrSettings
|
|||||||
AutoRestore = CBool(dr("AutoRestore"))
|
AutoRestore = CBool(dr("AutoRestore"))
|
||||||
AutoMark = CBool(dr("AutoMark"))
|
AutoMark = CBool(dr("AutoMark"))
|
||||||
SessionTracking = CBool(dr("SessionTracking"))
|
SessionTracking = CBool(dr("SessionTracking"))
|
||||||
|
SupressMessages = CInt(dr("SupressMessages"))
|
||||||
|
BackupOnLaunch = CBool(dr("BackupOnLaunch"))
|
||||||
|
UseGameID = CBool(dr("UseGameID"))
|
||||||
Next
|
Next
|
||||||
|
|
||||||
oDatabase.Disconnect()
|
oDatabase.Disconnect()
|
||||||
@@ -347,4 +381,13 @@ Public Class mgrSettings
|
|||||||
'Set Remote Manifest Location
|
'Set Remote Manifest Location
|
||||||
mgrPath.RemoteDatabaseLocation = Me.BackupFolder
|
mgrPath.RemoteDatabaseLocation = Me.BackupFolder
|
||||||
End Sub
|
End Sub
|
||||||
|
|
||||||
|
Public Function SetMessageField(ByVal eMessages As eSupressMessages, ByVal eMessage As eSupressMessages) As eSupressMessages
|
||||||
|
Return eMessages Or eMessage
|
||||||
|
End Function
|
||||||
|
|
||||||
|
Public Function RemoveMessageField(ByVal eMessages As eSupressMessages, ByVal eMessage As eSupressMessages) As eSupressMessages
|
||||||
|
Return eMessages And (Not eMessage)
|
||||||
|
End Function
|
||||||
|
|
||||||
End Class
|
End Class
|
||||||
|
|||||||
@@ -153,7 +153,7 @@
|
|||||||
Dim hshParams As Hashtable
|
Dim hshParams As Hashtable
|
||||||
Dim oParamList As New List(Of Hashtable)
|
Dim oParamList As New List(Of Hashtable)
|
||||||
|
|
||||||
sSQL = "INSERT OR REPLACE INTO tags VALUES (COALESCE((SELECT TagID FROM tags WHERE Name = @Name), @ID), @Name); INSERT INTO gametags VALUES ((SELECT TagID from tags WHERE Name=@Name), @MonitorID);"
|
sSQL = "INSERT OR REPLACE INTO tags VALUES (COALESCE((SELECT TagID FROM tags WHERE Name = @Name), @ID), @Name); INSERT OR REPLACE INTO gametags VALUES ((SELECT TagID from tags WHERE Name=@Name), @MonitorID);"
|
||||||
For Each oGame As clsGame In hshTags.Values
|
For Each oGame As clsGame In hshTags.Values
|
||||||
sMonitorID = oGame.ID
|
sMonitorID = oGame.ID
|
||||||
For Each t As Tag In oGame.ImportTags
|
For Each t As Tag In oGame.ImportTags
|
||||||
|
|||||||
+13
-11
@@ -6,25 +6,28 @@ Imports System.Net
|
|||||||
|
|
||||||
Public Class mgrXML
|
Public Class mgrXML
|
||||||
|
|
||||||
Public Shared Function ReadMonitorList(ByVal sLocation As String, ByRef oExportInfo As ExportData, Optional ByVal bWebRead As Boolean = False) As Hashtable
|
Public Shared Function ReadMonitorList(ByVal sLocation As String, ByRef oExportInfo As ExportData, ByRef hshList As Hashtable, Optional ByVal bWebRead As Boolean = False) As Boolean
|
||||||
Dim oList As List(Of Game)
|
Dim oList As List(Of Game)
|
||||||
Dim hshList As New Hashtable
|
|
||||||
Dim hshDupeList As New Hashtable
|
Dim hshDupeList As New Hashtable
|
||||||
Dim oExportData As ExportData
|
Dim oExportData As New ExportData
|
||||||
Dim oGame As clsGame
|
Dim oGame As clsGame
|
||||||
|
|
||||||
|
|
||||||
'If the file doesn't exist return an empty list
|
'If the file doesn't exist return an empty list
|
||||||
If Not File.Exists(sLocation) And Not bWebRead Then
|
If Not File.Exists(sLocation) And Not bWebRead Then
|
||||||
Return hshList
|
Return False
|
||||||
|
End If
|
||||||
|
|
||||||
|
If Not ImportandDeserialize(sLocation, oExportData, bWebRead) Then
|
||||||
|
Return False
|
||||||
End If
|
End If
|
||||||
|
|
||||||
oExportData = ImportandDeserialize(sLocation, bWebRead)
|
|
||||||
oList = oExportData.Configurations
|
oList = oExportData.Configurations
|
||||||
oExportInfo = oExportData
|
oExportInfo = oExportData
|
||||||
|
|
||||||
For Each g As Game In oList
|
For Each g As Game In oList
|
||||||
oGame = New clsGame
|
oGame = New clsGame
|
||||||
|
oGame.ID = g.ID
|
||||||
oGame.Name = g.Name
|
oGame.Name = g.Name
|
||||||
oGame.ProcessName = g.ProcessName
|
oGame.ProcessName = g.ProcessName
|
||||||
oGame.AbsolutePath = g.AbsolutePath
|
oGame.AbsolutePath = g.AbsolutePath
|
||||||
@@ -42,13 +45,13 @@ Public Class mgrXML
|
|||||||
|
|
||||||
'This should be wrapped just in case we get some bad data
|
'This should be wrapped just in case we get some bad data
|
||||||
Try
|
Try
|
||||||
hshList.Add(oGame.ProcessName & ":" & oGame.KeySafeName, oGame)
|
hshList.Add(oGame.ID, oGame)
|
||||||
Catch e As Exception
|
Catch e As Exception
|
||||||
'Do Nothing
|
'Do Nothing
|
||||||
End Try
|
End Try
|
||||||
Next
|
Next
|
||||||
|
|
||||||
Return hshList
|
Return True
|
||||||
End Function
|
End Function
|
||||||
|
|
||||||
Private Shared Function ReadImportData(ByVal sLocation As String, ByVal bWebRead As Boolean)
|
Private Shared Function ReadImportData(ByVal sLocation As String, ByVal bWebRead As Boolean)
|
||||||
@@ -65,10 +68,9 @@ Public Class mgrXML
|
|||||||
Return oReader
|
Return oReader
|
||||||
End Function
|
End Function
|
||||||
|
|
||||||
Public Shared Function ImportandDeserialize(ByVal sLocation As String, Optional ByVal bWebRead As Boolean = False) As ExportData
|
Public Shared Function ImportandDeserialize(ByVal sLocation As String, ByRef oExportData As ExportData, Optional ByVal bWebRead As Boolean = False) As Boolean
|
||||||
Dim oReader As StreamReader
|
Dim oReader As StreamReader
|
||||||
Dim oSerializer As XmlSerializer
|
Dim oSerializer As XmlSerializer
|
||||||
Dim oExportData As New ExportData
|
|
||||||
|
|
||||||
Try
|
Try
|
||||||
oReader = ReadImportData(sLocation, bWebRead)
|
oReader = ReadImportData(sLocation, bWebRead)
|
||||||
@@ -83,12 +85,12 @@ Public Class mgrXML
|
|||||||
oExportData.Configurations = oSerializer.Deserialize(oReader)
|
oExportData.Configurations = oSerializer.Deserialize(oReader)
|
||||||
oReader.Close()
|
oReader.Close()
|
||||||
End If
|
End If
|
||||||
|
Return True
|
||||||
Catch ex As Exception
|
Catch ex As Exception
|
||||||
mgrCommon.ShowMessage(mgrXML_ErrorImportFailure, ex.Message, MsgBoxStyle.Exclamation)
|
mgrCommon.ShowMessage(mgrXML_ErrorImportFailure, ex.Message, MsgBoxStyle.Exclamation)
|
||||||
|
Return False
|
||||||
End Try
|
End Try
|
||||||
|
|
||||||
Return oExportData
|
|
||||||
End Function
|
End Function
|
||||||
|
|
||||||
Public Shared Function SerializeAndExport(ByVal oList As List(Of Game), ByVal sLocation As String) As Boolean
|
Public Shared Function SerializeAndExport(ByVal oList As List(Of Game), ByVal sLocation As String) As Boolean
|
||||||
|
|||||||
@@ -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.0.8.*")>
|
<Assembly: AssemblyVersion("1.1.0.*")>
|
||||||
<Assembly: AssemblyFileVersion("1.0.8.0")>
|
<Assembly: AssemblyFileVersion("1.1.0.0")>
|
||||||
|
|
||||||
<Assembly: NeutralResourcesLanguageAttribute("en")>
|
<Assembly: NeutralResourcesLanguageAttribute("en")>
|
||||||
Generated
+478
-44
@@ -60,6 +60,15 @@ Namespace My.Resources
|
|||||||
End Set
|
End Set
|
||||||
End Property
|
End Property
|
||||||
|
|
||||||
|
'''<summary>
|
||||||
|
''' Looks up a localized string similar to launch.
|
||||||
|
'''</summary>
|
||||||
|
Friend ReadOnly Property App_BackupOnLaunchFileDescription() As String
|
||||||
|
Get
|
||||||
|
Return ResourceManager.GetString("App_BackupOnLaunchFileDescription", resourceCulture)
|
||||||
|
End Get
|
||||||
|
End Property
|
||||||
|
|
||||||
'''<summary>
|
'''<summary>
|
||||||
''' Looks up a localized string similar to There are unsaved changes on this form. Do you want to save?.
|
''' Looks up a localized string similar to There are unsaved changes on this form. Do you want to save?.
|
||||||
'''</summary>
|
'''</summary>
|
||||||
@@ -96,6 +105,15 @@ Namespace My.Resources
|
|||||||
End Get
|
End Get
|
||||||
End Property
|
End Property
|
||||||
|
|
||||||
|
'''<summary>
|
||||||
|
''' Looks up a localized string similar to Error: [PARAM].
|
||||||
|
'''</summary>
|
||||||
|
Friend ReadOnly Property App_GenericError() As String
|
||||||
|
Get
|
||||||
|
Return ResourceManager.GetString("App_GenericError", resourceCulture)
|
||||||
|
End Get
|
||||||
|
End Property
|
||||||
|
|
||||||
'''<summary>
|
'''<summary>
|
||||||
''' Looks up a localized string similar to 7-Zip (7za.exe) is invalid and has been prevented from running..
|
''' Looks up a localized string similar to 7-Zip (7za.exe) is invalid and has been prevented from running..
|
||||||
'''</summary>
|
'''</summary>
|
||||||
@@ -1095,6 +1113,15 @@ Namespace My.Resources
|
|||||||
End Get
|
End Get
|
||||||
End Property
|
End Property
|
||||||
|
|
||||||
|
'''<summary>
|
||||||
|
''' Looks up a localized string similar to Game ID.
|
||||||
|
'''</summary>
|
||||||
|
Friend ReadOnly Property frmFilter_FieldGameID() As String
|
||||||
|
Get
|
||||||
|
Return ResourceManager.GetString("frmFilter_FieldGameID", resourceCulture)
|
||||||
|
End Get
|
||||||
|
End Property
|
||||||
|
|
||||||
'''<summary>
|
'''<summary>
|
||||||
''' Looks up a localized string similar to Hours.
|
''' Looks up a localized string similar to Hours.
|
||||||
'''</summary>
|
'''</summary>
|
||||||
@@ -1500,6 +1527,15 @@ Namespace My.Resources
|
|||||||
End Get
|
End Get
|
||||||
End Property
|
End Property
|
||||||
|
|
||||||
|
'''<summary>
|
||||||
|
''' Looks up a localized string similar to &Game ID....
|
||||||
|
'''</summary>
|
||||||
|
Friend ReadOnly Property frmGameManager_btnGameID() As String
|
||||||
|
Get
|
||||||
|
Return ResourceManager.GetString("frmGameManager_btnGameID", resourceCulture)
|
||||||
|
End Get
|
||||||
|
End Property
|
||||||
|
|
||||||
'''<summary>
|
'''<summary>
|
||||||
''' Looks up a localized string similar to ....
|
''' Looks up a localized string similar to ....
|
||||||
'''</summary>
|
'''</summary>
|
||||||
@@ -1906,7 +1942,7 @@ Namespace My.Resources
|
|||||||
End Property
|
End Property
|
||||||
|
|
||||||
'''<summary>
|
'''<summary>
|
||||||
''' Looks up a localized string similar to A game with this exact name and process already exists..
|
''' Looks up a localized string similar to A game with the same ID ([PARAM]) already exists..
|
||||||
'''</summary>
|
'''</summary>
|
||||||
Friend ReadOnly Property frmGameManager_ErrorGameDupe() As String
|
Friend ReadOnly Property frmGameManager_ErrorGameDupe() As String
|
||||||
Get
|
Get
|
||||||
@@ -1968,15 +2004,6 @@ Namespace My.Resources
|
|||||||
End Get
|
End Get
|
||||||
End Property
|
End Property
|
||||||
|
|
||||||
'''<summary>
|
|
||||||
''' Looks up a localized string similar to A game with this exact process and parameter already exists..
|
|
||||||
'''</summary>
|
|
||||||
Friend ReadOnly Property frmGameManager_ErrorProcessParameterDupe() As String
|
|
||||||
Get
|
|
||||||
Return ResourceManager.GetString("frmGameManager_ErrorProcessParameterDupe", resourceCulture)
|
|
||||||
End Get
|
|
||||||
End Property
|
|
||||||
|
|
||||||
'''<summary>
|
'''<summary>
|
||||||
''' Looks up a localized string similar to The process is not a a valid regular expression.[BR][BR]Would you like help validating and testing your regular expression? [BR][BR]This will open your web browser and requires the internet..
|
''' Looks up a localized string similar to The process is not a a valid regular expression.[BR][BR]Would you like help validating and testing your regular expression? [BR][BR]This will open your web browser and requires the internet..
|
||||||
'''</summary>
|
'''</summary>
|
||||||
@@ -2040,6 +2067,24 @@ Namespace My.Resources
|
|||||||
End Get
|
End Get
|
||||||
End Property
|
End Property
|
||||||
|
|
||||||
|
'''<summary>
|
||||||
|
''' Looks up a localized string similar to The unique Game ID is generated by GBM. Changing this value is not recommended..
|
||||||
|
'''</summary>
|
||||||
|
Friend ReadOnly Property frmGameManager_GameIDEditInfo() As String
|
||||||
|
Get
|
||||||
|
Return ResourceManager.GetString("frmGameManager_GameIDEditInfo", resourceCulture)
|
||||||
|
End Get
|
||||||
|
End Property
|
||||||
|
|
||||||
|
'''<summary>
|
||||||
|
''' Looks up a localized string similar to Edit Game ID.
|
||||||
|
'''</summary>
|
||||||
|
Friend ReadOnly Property frmGameManager_GameIDEditTitle() As String
|
||||||
|
Get
|
||||||
|
Return ResourceManager.GetString("frmGameManager_GameIDEditTitle", resourceCulture)
|
||||||
|
End Get
|
||||||
|
End Property
|
||||||
|
|
||||||
'''<summary>
|
'''<summary>
|
||||||
''' Looks up a localized string similar to Configuration.
|
''' Looks up a localized string similar to Configuration.
|
||||||
'''</summary>
|
'''</summary>
|
||||||
@@ -2346,6 +2391,78 @@ Namespace My.Resources
|
|||||||
End Get
|
End Get
|
||||||
End Property
|
End Property
|
||||||
|
|
||||||
|
'''<summary>
|
||||||
|
''' Looks up a localized string similar to >.
|
||||||
|
'''</summary>
|
||||||
|
Friend ReadOnly Property frmGameProcesses_btnAdd() As String
|
||||||
|
Get
|
||||||
|
Return ResourceManager.GetString("frmGameProcesses_btnAdd", resourceCulture)
|
||||||
|
End Get
|
||||||
|
End Property
|
||||||
|
|
||||||
|
'''<summary>
|
||||||
|
''' Looks up a localized string similar to &Close.
|
||||||
|
'''</summary>
|
||||||
|
Friend ReadOnly Property frmGameProcesses_btnClose() As String
|
||||||
|
Get
|
||||||
|
Return ResourceManager.GetString("frmGameProcesses_btnClose", resourceCulture)
|
||||||
|
End Get
|
||||||
|
End Property
|
||||||
|
|
||||||
|
'''<summary>
|
||||||
|
''' Looks up a localized string similar to &Process Manager....
|
||||||
|
'''</summary>
|
||||||
|
Friend ReadOnly Property frmGameProcesses_btnOpenProcesses() As String
|
||||||
|
Get
|
||||||
|
Return ResourceManager.GetString("frmGameProcesses_btnOpenProcesses", resourceCulture)
|
||||||
|
End Get
|
||||||
|
End Property
|
||||||
|
|
||||||
|
'''<summary>
|
||||||
|
''' Looks up a localized string similar to <.
|
||||||
|
'''</summary>
|
||||||
|
Friend ReadOnly Property frmGameProcesses_btnRemove() As String
|
||||||
|
Get
|
||||||
|
Return ResourceManager.GetString("frmGameProcesses_btnRemove", resourceCulture)
|
||||||
|
End Get
|
||||||
|
End Property
|
||||||
|
|
||||||
|
'''<summary>
|
||||||
|
''' Looks up a localized string similar to Edit Processes for Multiple Games.
|
||||||
|
'''</summary>
|
||||||
|
Friend ReadOnly Property frmGameProcesses_FormNameMulti() As String
|
||||||
|
Get
|
||||||
|
Return ResourceManager.GetString("frmGameProcesses_FormNameMulti", resourceCulture)
|
||||||
|
End Get
|
||||||
|
End Property
|
||||||
|
|
||||||
|
'''<summary>
|
||||||
|
''' Looks up a localized string similar to Edit Processes for [PARAM].
|
||||||
|
'''</summary>
|
||||||
|
Friend ReadOnly Property frmGameProcesses_FormNameSingle() As String
|
||||||
|
Get
|
||||||
|
Return ResourceManager.GetString("frmGameProcesses_FormNameSingle", resourceCulture)
|
||||||
|
End Get
|
||||||
|
End Property
|
||||||
|
|
||||||
|
'''<summary>
|
||||||
|
''' Looks up a localized string similar to Current Processes.
|
||||||
|
'''</summary>
|
||||||
|
Friend ReadOnly Property frmGameProcesses_lblGameProccesses() As String
|
||||||
|
Get
|
||||||
|
Return ResourceManager.GetString("frmGameProcesses_lblGameProccesses", resourceCulture)
|
||||||
|
End Get
|
||||||
|
End Property
|
||||||
|
|
||||||
|
'''<summary>
|
||||||
|
''' Looks up a localized string similar to Available Processes.
|
||||||
|
'''</summary>
|
||||||
|
Friend ReadOnly Property frmGameProcesses_lblProcesses() As String
|
||||||
|
Get
|
||||||
|
Return ResourceManager.GetString("frmGameProcesses_lblProcesses", resourceCulture)
|
||||||
|
End Get
|
||||||
|
End Property
|
||||||
|
|
||||||
'''<summary>
|
'''<summary>
|
||||||
''' Looks up a localized string similar to >.
|
''' Looks up a localized string similar to >.
|
||||||
'''</summary>
|
'''</summary>
|
||||||
@@ -2365,7 +2482,7 @@ Namespace My.Resources
|
|||||||
End Property
|
End Property
|
||||||
|
|
||||||
'''<summary>
|
'''<summary>
|
||||||
''' Looks up a localized string similar to Setup &Tags....
|
''' Looks up a localized string similar to &Tag Manager....
|
||||||
'''</summary>
|
'''</summary>
|
||||||
Friend ReadOnly Property frmGameTags_btnOpenTags() As String
|
Friend ReadOnly Property frmGameTags_btnOpenTags() As String
|
||||||
Get
|
Get
|
||||||
@@ -2958,6 +3075,15 @@ Namespace My.Resources
|
|||||||
End Get
|
End Get
|
||||||
End Property
|
End Property
|
||||||
|
|
||||||
|
'''<summary>
|
||||||
|
''' Looks up a localized string similar to An error occured when attempting to end a process associated with [PARAM]..
|
||||||
|
'''</summary>
|
||||||
|
Friend ReadOnly Property frmMain_ErrorEndChildProcess() As String
|
||||||
|
Get
|
||||||
|
Return ResourceManager.GetString("frmMain_ErrorEndChildProcess", resourceCulture)
|
||||||
|
End Get
|
||||||
|
End Property
|
||||||
|
|
||||||
'''<summary>
|
'''<summary>
|
||||||
''' Looks up a localized string similar to An unexpected error occured while initializing GBM.[BR][BR][PARAM][BR][BR]Do you wish to continue anyway? (Not Recommended).
|
''' Looks up a localized string similar to An unexpected error occured while initializing GBM.[BR][BR][PARAM][BR][BR]Do you wish to continue anyway? (Not Recommended).
|
||||||
'''</summary>
|
'''</summary>
|
||||||
@@ -3030,6 +3156,15 @@ Namespace My.Resources
|
|||||||
End Get
|
End Get
|
||||||
End Property
|
End Property
|
||||||
|
|
||||||
|
'''<summary>
|
||||||
|
''' Looks up a localized string similar to An error occured when attempting to start a process associated with [PARAM]..
|
||||||
|
'''</summary>
|
||||||
|
Friend ReadOnly Property frmMain_ErrorStartChildProcess() As String
|
||||||
|
Get
|
||||||
|
Return ResourceManager.GetString("frmMain_ErrorStartChildProcess", resourceCulture)
|
||||||
|
End Get
|
||||||
|
End Property
|
||||||
|
|
||||||
'''<summary>
|
'''<summary>
|
||||||
''' Looks up a localized string similar to [PARAM] (Executable Path).
|
''' Looks up a localized string similar to [PARAM] (Executable Path).
|
||||||
'''</summary>
|
'''</summary>
|
||||||
@@ -3211,7 +3346,7 @@ Namespace My.Resources
|
|||||||
End Property
|
End Property
|
||||||
|
|
||||||
'''<summary>
|
'''<summary>
|
||||||
''' Looks up a localized string similar to Custom &Path Variables....
|
''' Looks up a localized string similar to Custom Path &Variables....
|
||||||
'''</summary>
|
'''</summary>
|
||||||
Friend ReadOnly Property frmMain_gMonSetupCustomVariables() As String
|
Friend ReadOnly Property frmMain_gMonSetupCustomVariables() As String
|
||||||
Get
|
Get
|
||||||
@@ -3229,7 +3364,16 @@ Namespace My.Resources
|
|||||||
End Property
|
End Property
|
||||||
|
|
||||||
'''<summary>
|
'''<summary>
|
||||||
''' Looks up a localized string similar to &Tags....
|
''' Looks up a localized string similar to &Process Manager....
|
||||||
|
'''</summary>
|
||||||
|
Friend ReadOnly Property frmMain_gMonSetupProcessManager() As String
|
||||||
|
Get
|
||||||
|
Return ResourceManager.GetString("frmMain_gMonSetupProcessManager", resourceCulture)
|
||||||
|
End Get
|
||||||
|
End Property
|
||||||
|
|
||||||
|
'''<summary>
|
||||||
|
''' Looks up a localized string similar to &Tag Manager....
|
||||||
'''</summary>
|
'''</summary>
|
||||||
Friend ReadOnly Property frmMain_gMonSetupTags() As String
|
Friend ReadOnly Property frmMain_gMonSetupTags() As String
|
||||||
Get
|
Get
|
||||||
@@ -3264,15 +3408,6 @@ Namespace My.Resources
|
|||||||
End Get
|
End Get
|
||||||
End Property
|
End Property
|
||||||
|
|
||||||
'''<summary>
|
|
||||||
''' Looks up a localized string similar to Clea&n Local Manifest.
|
|
||||||
'''</summary>
|
|
||||||
Friend ReadOnly Property frmMain_gMonToolsCleanMan() As String
|
|
||||||
Get
|
|
||||||
Return ResourceManager.GetString("frmMain_gMonToolsCleanMan", resourceCulture)
|
|
||||||
End Get
|
|
||||||
End Property
|
|
||||||
|
|
||||||
'''<summary>
|
'''<summary>
|
||||||
''' Looks up a localized string similar to &Compact Databases.
|
''' Looks up a localized string similar to &Compact Databases.
|
||||||
'''</summary>
|
'''</summary>
|
||||||
@@ -3300,6 +3435,33 @@ Namespace My.Resources
|
|||||||
End Get
|
End Get
|
||||||
End Property
|
End Property
|
||||||
|
|
||||||
|
'''<summary>
|
||||||
|
''' Looks up a localized string similar to S&ync Game IDs.
|
||||||
|
'''</summary>
|
||||||
|
Friend ReadOnly Property frmMain_gMonToolsSyncGameID() As String
|
||||||
|
Get
|
||||||
|
Return ResourceManager.GetString("frmMain_gMonToolsSyncGameID", resourceCulture)
|
||||||
|
End Get
|
||||||
|
End Property
|
||||||
|
|
||||||
|
'''<summary>
|
||||||
|
''' Looks up a localized string similar to &File....
|
||||||
|
'''</summary>
|
||||||
|
Friend ReadOnly Property frmMain_gMonToolsSyncGameIDFile() As String
|
||||||
|
Get
|
||||||
|
Return ResourceManager.GetString("frmMain_gMonToolsSyncGameIDFile", resourceCulture)
|
||||||
|
End Get
|
||||||
|
End Property
|
||||||
|
|
||||||
|
'''<summary>
|
||||||
|
''' Looks up a localized string similar to &Official List....
|
||||||
|
'''</summary>
|
||||||
|
Friend ReadOnly Property frmMain_gMonToolsSyncGameIDOfficial() As String
|
||||||
|
Get
|
||||||
|
Return ResourceManager.GetString("frmMain_gMonToolsSyncGameIDOfficial", resourceCulture)
|
||||||
|
End Get
|
||||||
|
End Property
|
||||||
|
|
||||||
'''<summary>
|
'''<summary>
|
||||||
''' Looks up a localized string similar to Show / Hide.
|
''' Looks up a localized string similar to Show / Hide.
|
||||||
'''</summary>
|
'''</summary>
|
||||||
@@ -3534,6 +3696,24 @@ Namespace My.Resources
|
|||||||
End Get
|
End Get
|
||||||
End Property
|
End Property
|
||||||
|
|
||||||
|
'''<summary>
|
||||||
|
''' Looks up a localized string similar to Kill signal was sent for [PARAM]..
|
||||||
|
'''</summary>
|
||||||
|
Friend ReadOnly Property frmMain_ProcessKilled() As String
|
||||||
|
Get
|
||||||
|
Return ResourceManager.GetString("frmMain_ProcessKilled", resourceCulture)
|
||||||
|
End Get
|
||||||
|
End Property
|
||||||
|
|
||||||
|
'''<summary>
|
||||||
|
''' Looks up a localized string similar to [PARAM] has been started..
|
||||||
|
'''</summary>
|
||||||
|
Friend ReadOnly Property frmMain_ProcessStarted() As String
|
||||||
|
Get
|
||||||
|
Return ResourceManager.GetString("frmMain_ProcessStarted", resourceCulture)
|
||||||
|
End Get
|
||||||
|
End Property
|
||||||
|
|
||||||
'''<summary>
|
'''<summary>
|
||||||
''' Looks up a localized string similar to Remote Database Vacuum Completed: [PARAM] KB.
|
''' Looks up a localized string similar to Remote Database Vacuum Completed: [PARAM] KB.
|
||||||
'''</summary>
|
'''</summary>
|
||||||
@@ -3669,6 +3849,168 @@ Namespace My.Resources
|
|||||||
End Get
|
End Get
|
||||||
End Property
|
End Property
|
||||||
|
|
||||||
|
'''<summary>
|
||||||
|
''' Looks up a localized string similar to +.
|
||||||
|
'''</summary>
|
||||||
|
Friend ReadOnly Property frmProcessManager_btnAdd() As String
|
||||||
|
Get
|
||||||
|
Return ResourceManager.GetString("frmProcessManager_btnAdd", resourceCulture)
|
||||||
|
End Get
|
||||||
|
End Property
|
||||||
|
|
||||||
|
'''<summary>
|
||||||
|
''' Looks up a localized string similar to &Cancel.
|
||||||
|
'''</summary>
|
||||||
|
Friend ReadOnly Property frmProcessManager_btnCancel() As String
|
||||||
|
Get
|
||||||
|
Return ResourceManager.GetString("frmProcessManager_btnCancel", resourceCulture)
|
||||||
|
End Get
|
||||||
|
End Property
|
||||||
|
|
||||||
|
'''<summary>
|
||||||
|
''' Looks up a localized string similar to C&lose.
|
||||||
|
'''</summary>
|
||||||
|
Friend ReadOnly Property frmProcessManager_btnClose() As String
|
||||||
|
Get
|
||||||
|
Return ResourceManager.GetString("frmProcessManager_btnClose", resourceCulture)
|
||||||
|
End Get
|
||||||
|
End Property
|
||||||
|
|
||||||
|
'''<summary>
|
||||||
|
''' Looks up a localized string similar to -.
|
||||||
|
'''</summary>
|
||||||
|
Friend ReadOnly Property frmProcessManager_btnDelete() As String
|
||||||
|
Get
|
||||||
|
Return ResourceManager.GetString("frmProcessManager_btnDelete", resourceCulture)
|
||||||
|
End Get
|
||||||
|
End Property
|
||||||
|
|
||||||
|
'''<summary>
|
||||||
|
''' Looks up a localized string similar to ....
|
||||||
|
'''</summary>
|
||||||
|
Friend ReadOnly Property frmProcessManager_btnProcessBrowse() As String
|
||||||
|
Get
|
||||||
|
Return ResourceManager.GetString("frmProcessManager_btnProcessBrowse", resourceCulture)
|
||||||
|
End Get
|
||||||
|
End Property
|
||||||
|
|
||||||
|
'''<summary>
|
||||||
|
''' Looks up a localized string similar to &Save.
|
||||||
|
'''</summary>
|
||||||
|
Friend ReadOnly Property frmProcessManager_btnSave() As String
|
||||||
|
Get
|
||||||
|
Return ResourceManager.GetString("frmProcessManager_btnSave", resourceCulture)
|
||||||
|
End Get
|
||||||
|
End Property
|
||||||
|
|
||||||
|
'''<summary>
|
||||||
|
''' Looks up a localized string similar to Kill process when game is closed.
|
||||||
|
'''</summary>
|
||||||
|
Friend ReadOnly Property frmProcessManager_chkKillProcess() As String
|
||||||
|
Get
|
||||||
|
Return ResourceManager.GetString("frmProcessManager_chkKillProcess", resourceCulture)
|
||||||
|
End Get
|
||||||
|
End Property
|
||||||
|
|
||||||
|
'''<summary>
|
||||||
|
''' Looks up a localized string similar to Choose a file that starts the process.
|
||||||
|
'''</summary>
|
||||||
|
Friend ReadOnly Property frmProcessManager_ChooseProcess() As String
|
||||||
|
Get
|
||||||
|
Return ResourceManager.GetString("frmProcessManager_ChooseProcess", resourceCulture)
|
||||||
|
End Get
|
||||||
|
End Property
|
||||||
|
|
||||||
|
'''<summary>
|
||||||
|
''' Looks up a localized string similar to Are you sure you want to delete [PARAM]? This cannot be undone..
|
||||||
|
'''</summary>
|
||||||
|
Friend ReadOnly Property frmProcessManager_ConfirmDelete() As String
|
||||||
|
Get
|
||||||
|
Return ResourceManager.GetString("frmProcessManager_ConfirmDelete", resourceCulture)
|
||||||
|
End Get
|
||||||
|
End Property
|
||||||
|
|
||||||
|
'''<summary>
|
||||||
|
''' Looks up a localized string similar to A process with this name already exists..
|
||||||
|
'''</summary>
|
||||||
|
Friend ReadOnly Property frmProcessManager_ErrorDupe() As String
|
||||||
|
Get
|
||||||
|
Return ResourceManager.GetString("frmProcessManager_ErrorDupe", resourceCulture)
|
||||||
|
End Get
|
||||||
|
End Property
|
||||||
|
|
||||||
|
'''<summary>
|
||||||
|
''' Looks up a localized string similar to The process does not exist..
|
||||||
|
'''</summary>
|
||||||
|
Friend ReadOnly Property frmProcessManager_ErrorPathNotFound() As String
|
||||||
|
Get
|
||||||
|
Return ResourceManager.GetString("frmProcessManager_ErrorPathNotFound", resourceCulture)
|
||||||
|
End Get
|
||||||
|
End Property
|
||||||
|
|
||||||
|
'''<summary>
|
||||||
|
''' Looks up a localized string similar to You must enter a valid name for this process..
|
||||||
|
'''</summary>
|
||||||
|
Friend ReadOnly Property frmProcessManager_ErrorValidName() As String
|
||||||
|
Get
|
||||||
|
Return ResourceManager.GetString("frmProcessManager_ErrorValidName", resourceCulture)
|
||||||
|
End Get
|
||||||
|
End Property
|
||||||
|
|
||||||
|
'''<summary>
|
||||||
|
''' Looks up a localized string similar to You must choose a valid process..
|
||||||
|
'''</summary>
|
||||||
|
Friend ReadOnly Property frmProcessManager_ErrorValidPath() As String
|
||||||
|
Get
|
||||||
|
Return ResourceManager.GetString("frmProcessManager_ErrorValidPath", resourceCulture)
|
||||||
|
End Get
|
||||||
|
End Property
|
||||||
|
|
||||||
|
'''<summary>
|
||||||
|
''' Looks up a localized string similar to Executable.
|
||||||
|
'''</summary>
|
||||||
|
Friend ReadOnly Property frmProcessManager_Executable() As String
|
||||||
|
Get
|
||||||
|
Return ResourceManager.GetString("frmProcessManager_Executable", resourceCulture)
|
||||||
|
End Get
|
||||||
|
End Property
|
||||||
|
|
||||||
|
'''<summary>
|
||||||
|
''' Looks up a localized string similar to Process Manager.
|
||||||
|
'''</summary>
|
||||||
|
Friend ReadOnly Property frmProcessManager_FormName() As String
|
||||||
|
Get
|
||||||
|
Return ResourceManager.GetString("frmProcessManager_FormName", resourceCulture)
|
||||||
|
End Get
|
||||||
|
End Property
|
||||||
|
|
||||||
|
'''<summary>
|
||||||
|
''' Looks up a localized string similar to Configuration.
|
||||||
|
'''</summary>
|
||||||
|
Friend ReadOnly Property frmProcessManager_grpProcess() As String
|
||||||
|
Get
|
||||||
|
Return ResourceManager.GetString("frmProcessManager_grpProcess", resourceCulture)
|
||||||
|
End Get
|
||||||
|
End Property
|
||||||
|
|
||||||
|
'''<summary>
|
||||||
|
''' Looks up a localized string similar to Name:.
|
||||||
|
'''</summary>
|
||||||
|
Friend ReadOnly Property frmProcessManager_lblName() As String
|
||||||
|
Get
|
||||||
|
Return ResourceManager.GetString("frmProcessManager_lblName", resourceCulture)
|
||||||
|
End Get
|
||||||
|
End Property
|
||||||
|
|
||||||
|
'''<summary>
|
||||||
|
''' Looks up a localized string similar to Path:.
|
||||||
|
'''</summary>
|
||||||
|
Friend ReadOnly Property frmProcessManager_lblPath() As String
|
||||||
|
Get
|
||||||
|
Return ResourceManager.GetString("frmProcessManager_lblPath", resourceCulture)
|
||||||
|
End Get
|
||||||
|
End Property
|
||||||
|
|
||||||
'''<summary>
|
'''<summary>
|
||||||
''' Looks up a localized string similar to &Cancel.
|
''' Looks up a localized string similar to &Cancel.
|
||||||
'''</summary>
|
'''</summary>
|
||||||
@@ -3985,7 +4327,7 @@ Namespace My.Resources
|
|||||||
End Property
|
End Property
|
||||||
|
|
||||||
'''<summary>
|
'''<summary>
|
||||||
''' Looks up a localized string similar to Choose &Optional Fields....
|
''' Looks up a localized string similar to Choose &Optional Sync Fields....
|
||||||
'''</summary>
|
'''</summary>
|
||||||
Friend ReadOnly Property frmSettings_btnOptionalFields() As String
|
Friend ReadOnly Property frmSettings_btnOptionalFields() As String
|
||||||
Get
|
Get
|
||||||
@@ -3993,6 +4335,15 @@ Namespace My.Resources
|
|||||||
End Get
|
End Get
|
||||||
End Property
|
End Property
|
||||||
|
|
||||||
|
'''<summary>
|
||||||
|
''' Looks up a localized string similar to &Reset Warnings.
|
||||||
|
'''</summary>
|
||||||
|
Friend ReadOnly Property frmSettings_btnResetMessages() As String
|
||||||
|
Get
|
||||||
|
Return ResourceManager.GetString("frmSettings_btnResetMessages", resourceCulture)
|
||||||
|
End Get
|
||||||
|
End Property
|
||||||
|
|
||||||
'''<summary>
|
'''<summary>
|
||||||
''' Looks up a localized string similar to &Save.
|
''' Looks up a localized string similar to &Save.
|
||||||
'''</summary>
|
'''</summary>
|
||||||
@@ -4092,6 +4443,15 @@ Namespace My.Resources
|
|||||||
End Get
|
End Get
|
||||||
End Property
|
End Property
|
||||||
|
|
||||||
|
'''<summary>
|
||||||
|
''' Looks up a localized string similar to Backup GBM data files on launch.
|
||||||
|
'''</summary>
|
||||||
|
Friend ReadOnly Property frmSettings_chkBackupOnLaunch() As String
|
||||||
|
Get
|
||||||
|
Return ResourceManager.GetString("frmSettings_chkBackupOnLaunch", resourceCulture)
|
||||||
|
End Get
|
||||||
|
End Property
|
||||||
|
|
||||||
'''<summary>
|
'''<summary>
|
||||||
''' Looks up a localized string similar to Create a sub-folder for each game.
|
''' Looks up a localized string similar to Create a sub-folder for each game.
|
||||||
'''</summary>
|
'''</summary>
|
||||||
@@ -4173,15 +4533,6 @@ Namespace My.Resources
|
|||||||
End Get
|
End Get
|
||||||
End Property
|
End Property
|
||||||
|
|
||||||
'''<summary>
|
|
||||||
''' Looks up a localized string similar to Enable syncing.
|
|
||||||
'''</summary>
|
|
||||||
Friend ReadOnly Property frmSettings_chkSync() As String
|
|
||||||
Get
|
|
||||||
Return ResourceManager.GetString("frmSettings_chkSync", resourceCulture)
|
|
||||||
End Get
|
|
||||||
End Property
|
|
||||||
|
|
||||||
'''<summary>
|
'''<summary>
|
||||||
''' Looks up a localized string similar to Enable time tracking.
|
''' Looks up a localized string similar to Enable time tracking.
|
||||||
'''</summary>
|
'''</summary>
|
||||||
@@ -4191,6 +4542,15 @@ Namespace My.Resources
|
|||||||
End Get
|
End Get
|
||||||
End Property
|
End Property
|
||||||
|
|
||||||
|
'''<summary>
|
||||||
|
''' Looks up a localized string similar to Use Game ID for folder and file names.
|
||||||
|
'''</summary>
|
||||||
|
Friend ReadOnly Property frmSettings_chkUseGameID() As String
|
||||||
|
Get
|
||||||
|
Return ResourceManager.GetString("frmSettings_chkUseGameID", resourceCulture)
|
||||||
|
End Get
|
||||||
|
End Property
|
||||||
|
|
||||||
'''<summary>
|
'''<summary>
|
||||||
''' Looks up a localized string similar to Do you want to revert all settings to their defaults?.
|
''' Looks up a localized string similar to Do you want to revert all settings to their defaults?.
|
||||||
'''</summary>
|
'''</summary>
|
||||||
@@ -4200,6 +4560,15 @@ Namespace My.Resources
|
|||||||
End Get
|
End Get
|
||||||
End Property
|
End Property
|
||||||
|
|
||||||
|
'''<summary>
|
||||||
|
''' Looks up a localized string similar to Do you want to reset all hidden warnings and messages?.
|
||||||
|
'''</summary>
|
||||||
|
Friend ReadOnly Property frmSettings_ConfirmMessageReset() As String
|
||||||
|
Get
|
||||||
|
Return ResourceManager.GetString("frmSettings_ConfirmMessageReset", resourceCulture)
|
||||||
|
End Get
|
||||||
|
End Property
|
||||||
|
|
||||||
'''<summary>
|
'''<summary>
|
||||||
''' Looks up a localized string similar to The backup folder does not exist. Please choose a valid backup folder..
|
''' Looks up a localized string similar to The backup folder does not exist. Please choose a valid backup folder..
|
||||||
'''</summary>
|
'''</summary>
|
||||||
@@ -4264,7 +4633,7 @@ Namespace My.Resources
|
|||||||
End Property
|
End Property
|
||||||
|
|
||||||
'''<summary>
|
'''<summary>
|
||||||
''' Looks up a localized string similar to Folders.
|
''' Looks up a localized string similar to Files and Folders.
|
||||||
'''</summary>
|
'''</summary>
|
||||||
Friend ReadOnly Property frmSettings_grpFolderOptions() As String
|
Friend ReadOnly Property frmSettings_grpFolderOptions() As String
|
||||||
Get
|
Get
|
||||||
@@ -4470,15 +4839,6 @@ Namespace My.Resources
|
|||||||
End Get
|
End Get
|
||||||
End Property
|
End Property
|
||||||
|
|
||||||
'''<summary>
|
|
||||||
''' Looks up a localized string similar to Import any existing GBM data in the backup folder.
|
|
||||||
'''</summary>
|
|
||||||
Friend ReadOnly Property frmStartUpWizard_chkSync() As String
|
|
||||||
Get
|
|
||||||
Return ResourceManager.GetString("frmStartUpWizard_chkSync", resourceCulture)
|
|
||||||
End Get
|
|
||||||
End Property
|
|
||||||
|
|
||||||
'''<summary>
|
'''<summary>
|
||||||
''' Looks up a localized string similar to Would you like to choose games to import from the official list?[BR][BR]This requires an active internet connection..
|
''' Looks up a localized string similar to Would you like to choose games to import from the official list?[BR][BR]This requires an active internet connection..
|
||||||
'''</summary>
|
'''</summary>
|
||||||
@@ -4561,7 +4921,7 @@ Namespace My.Resources
|
|||||||
End Property
|
End Property
|
||||||
|
|
||||||
'''<summary>
|
'''<summary>
|
||||||
''' Looks up a localized string similar to GBM will store all your backup files along with a manifest database (gbm.s3db) in this location. .
|
''' Looks up a localized string similar to GBM will store all your backup files along with a manifest database (gbm.s3db) in this location. Any existing GBM data in this folder will be automatically imported..
|
||||||
'''</summary>
|
'''</summary>
|
||||||
Friend ReadOnly Property frmStartUpWizard_lblStep2Instructions() As String
|
Friend ReadOnly Property frmStartUpWizard_lblStep2Instructions() As String
|
||||||
Get
|
Get
|
||||||
@@ -4813,7 +5173,7 @@ Namespace My.Resources
|
|||||||
End Property
|
End Property
|
||||||
|
|
||||||
'''<summary>
|
'''<summary>
|
||||||
''' Looks up a localized string similar to Tags.
|
''' Looks up a localized string similar to Tag Manager.
|
||||||
'''</summary>
|
'''</summary>
|
||||||
Friend ReadOnly Property frmTags_FormName() As String
|
Friend ReadOnly Property frmTags_FormName() As String
|
||||||
Get
|
Get
|
||||||
@@ -5044,6 +5404,16 @@ Namespace My.Resources
|
|||||||
End Get
|
End Get
|
||||||
End Property
|
End Property
|
||||||
|
|
||||||
|
'''<summary>
|
||||||
|
''' Looks up a localized resource of type System.Drawing.Bitmap.
|
||||||
|
'''</summary>
|
||||||
|
Friend ReadOnly Property Icon_New() As System.Drawing.Bitmap
|
||||||
|
Get
|
||||||
|
Dim obj As Object = ResourceManager.GetObject("Icon_New", resourceCulture)
|
||||||
|
Return CType(obj,System.Drawing.Bitmap)
|
||||||
|
End Get
|
||||||
|
End Property
|
||||||
|
|
||||||
'''<summary>
|
'''<summary>
|
||||||
''' Looks up a localized resource of type System.Drawing.Bitmap.
|
''' Looks up a localized resource of type System.Drawing.Bitmap.
|
||||||
'''</summary>
|
'''</summary>
|
||||||
@@ -5084,6 +5454,16 @@ Namespace My.Resources
|
|||||||
End Get
|
End Get
|
||||||
End Property
|
End Property
|
||||||
|
|
||||||
|
'''<summary>
|
||||||
|
''' Looks up a localized resource of type System.Drawing.Bitmap.
|
||||||
|
'''</summary>
|
||||||
|
Friend ReadOnly Property Icon_Update() As System.Drawing.Bitmap
|
||||||
|
Get
|
||||||
|
Dim obj As Object = ResourceManager.GetObject("Icon_Update", resourceCulture)
|
||||||
|
Return CType(obj,System.Drawing.Bitmap)
|
||||||
|
End Get
|
||||||
|
End Property
|
||||||
|
|
||||||
'''<summary>
|
'''<summary>
|
||||||
''' Looks up a localized resource of type System.Drawing.Bitmap.
|
''' Looks up a localized resource of type System.Drawing.Bitmap.
|
||||||
'''</summary>
|
'''</summary>
|
||||||
@@ -5428,6 +5808,42 @@ Namespace My.Resources
|
|||||||
End Get
|
End Get
|
||||||
End Property
|
End Property
|
||||||
|
|
||||||
|
'''<summary>
|
||||||
|
''' Looks up a localized string similar to Do you want to sync your game identifiers with this export file?[BR][BR]You should only do this if you're managing your own game configurations. Please see the online manual for more information..
|
||||||
|
'''</summary>
|
||||||
|
Friend ReadOnly Property mgrMonitorList_ConfirmFileGameIDSync() As String
|
||||||
|
Get
|
||||||
|
Return ResourceManager.GetString("mgrMonitorList_ConfirmFileGameIDSync", resourceCulture)
|
||||||
|
End Get
|
||||||
|
End Property
|
||||||
|
|
||||||
|
'''<summary>
|
||||||
|
''' Looks up a localized string similar to GBM now uses a unique identifier for each game. For the import feature to recognize game configurations from a prior version, they need to use the same identifiers.[BR][BR]Do you want to sync your game identifiers with the official list?[BR][BR]This question will only be displayed once, but the option is available anytime from the "Tools" menu. Please see the online manual for more information..
|
||||||
|
'''</summary>
|
||||||
|
Friend ReadOnly Property mgrMonitorList_ConfirmInitialOfficialGameIDSync() As String
|
||||||
|
Get
|
||||||
|
Return ResourceManager.GetString("mgrMonitorList_ConfirmInitialOfficialGameIDSync", resourceCulture)
|
||||||
|
End Get
|
||||||
|
End Property
|
||||||
|
|
||||||
|
'''<summary>
|
||||||
|
''' Looks up a localized string similar to Do you want to sync your game identifiers with the official game list?[BR][BR]This allows the import feature to recognize game configurations from a prior version. Please see the online manual for more information..
|
||||||
|
'''</summary>
|
||||||
|
Friend ReadOnly Property mgrMonitorList_ConfirmOfficialGameIDSync() As String
|
||||||
|
Get
|
||||||
|
Return ResourceManager.GetString("mgrMonitorList_ConfirmOfficialGameIDSync", resourceCulture)
|
||||||
|
End Get
|
||||||
|
End Property
|
||||||
|
|
||||||
|
'''<summary>
|
||||||
|
''' Looks up a localized string similar to This file cannot be used to sync game indentifiers. It was created with an older version of GBM..
|
||||||
|
'''</summary>
|
||||||
|
Friend ReadOnly Property mgrMonitorList_ErrorGameIDVerFailure() As String
|
||||||
|
Get
|
||||||
|
Return ResourceManager.GetString("mgrMonitorList_ErrorGameIDVerFailure", resourceCulture)
|
||||||
|
End Get
|
||||||
|
End Property
|
||||||
|
|
||||||
'''<summary>
|
'''<summary>
|
||||||
''' Looks up a localized string similar to Export Complete. [PARAM] item(s) have been exported..
|
''' Looks up a localized string similar to Export Complete. [PARAM] item(s) have been exported..
|
||||||
'''</summary>
|
'''</summary>
|
||||||
@@ -5446,6 +5862,15 @@ Namespace My.Resources
|
|||||||
End Get
|
End Get
|
||||||
End Property
|
End Property
|
||||||
|
|
||||||
|
'''<summary>
|
||||||
|
''' Looks up a localized string similar to Sync Complete.[BR][BR][PARAM] game configurations were matched and updated..
|
||||||
|
'''</summary>
|
||||||
|
Friend ReadOnly Property mgrMonitorList_GameIDSyncCompleted() As String
|
||||||
|
Get
|
||||||
|
Return ResourceManager.GetString("mgrMonitorList_GameIDSyncCompleted", resourceCulture)
|
||||||
|
End Get
|
||||||
|
End Property
|
||||||
|
|
||||||
'''<summary>
|
'''<summary>
|
||||||
''' Looks up a localized string similar to Import Complete..
|
''' Looks up a localized string similar to Import Complete..
|
||||||
'''</summary>
|
'''</summary>
|
||||||
@@ -5464,6 +5889,15 @@ Namespace My.Resources
|
|||||||
End Get
|
End Get
|
||||||
End Property
|
End Property
|
||||||
|
|
||||||
|
'''<summary>
|
||||||
|
''' Looks up a localized string similar to This export file was created with a version of GBM prior to 1.1.0 and does not contain unique game identifiers.[BR][BR]Do you still want to import configurations from this file? (Not Recommended).
|
||||||
|
'''</summary>
|
||||||
|
Friend ReadOnly Property mgrMonitorList_ImportVersionWarning() As String
|
||||||
|
Get
|
||||||
|
Return ResourceManager.GetString("mgrMonitorList_ImportVersionWarning", resourceCulture)
|
||||||
|
End Get
|
||||||
|
End Property
|
||||||
|
|
||||||
'''<summary>
|
'''<summary>
|
||||||
''' Looks up a localized string similar to [PARAM] change(s) synced..
|
''' Looks up a localized string similar to [PARAM] change(s) synced..
|
||||||
'''</summary>
|
'''</summary>
|
||||||
|
|||||||
+164
-20
@@ -392,13 +392,13 @@
|
|||||||
<value>Add Game &Wizard...</value>
|
<value>Add Game &Wizard...</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="frmMain_gMonSetupCustomVariables" xml:space="preserve">
|
<data name="frmMain_gMonSetupCustomVariables" xml:space="preserve">
|
||||||
<value>Custom &Path Variables...</value>
|
<value>Custom Path &Variables...</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="frmMain_gMonSetupGameManager" xml:space="preserve">
|
<data name="frmMain_gMonSetupGameManager" xml:space="preserve">
|
||||||
<value>&Game Manager...</value>
|
<value>&Game Manager...</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="frmMain_gMonSetupTags" xml:space="preserve">
|
<data name="frmMain_gMonSetupTags" xml:space="preserve">
|
||||||
<value>&Tags...</value>
|
<value>&Tag Manager...</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="frmMain_gMonStripStatusButton" xml:space="preserve">
|
<data name="frmMain_gMonStripStatusButton" xml:space="preserve">
|
||||||
<value>Monitor Status:</value>
|
<value>Monitor Status:</value>
|
||||||
@@ -406,9 +406,6 @@
|
|||||||
<data name="frmMain_gMonTools" xml:space="preserve">
|
<data name="frmMain_gMonTools" xml:space="preserve">
|
||||||
<value>&Tools</value>
|
<value>&Tools</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="frmMain_gMonToolsCleanMan" xml:space="preserve">
|
|
||||||
<value>Clea&n Local Manifest</value>
|
|
||||||
</data>
|
|
||||||
<data name="frmMain_gMonToolsCompact" xml:space="preserve">
|
<data name="frmMain_gMonToolsCompact" xml:space="preserve">
|
||||||
<value>&Compact Databases</value>
|
<value>&Compact Databases</value>
|
||||||
</data>
|
</data>
|
||||||
@@ -554,7 +551,7 @@
|
|||||||
<value>[PARAM] is already up to date.[BR][BR]Would you like to restore this backup anyway?</value>
|
<value>[PARAM] is already up to date.[BR][BR]Would you like to restore this backup anyway?</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="frmGameManager_ErrorGameDupe" xml:space="preserve">
|
<data name="frmGameManager_ErrorGameDupe" xml:space="preserve">
|
||||||
<value>A game with this exact name and process already exists.</value>
|
<value>A game with the same ID ([PARAM]) already exists.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="frmGameManager_ErrorNoBackupData" xml:space="preserve">
|
<data name="frmGameManager_ErrorNoBackupData" xml:space="preserve">
|
||||||
<value>The selected game(s) have no backup data or can't be restored with their current configuration.</value>
|
<value>The selected game(s) have no backup data or can't be restored with their current configuration.</value>
|
||||||
@@ -926,7 +923,7 @@
|
|||||||
<value>&Close</value>
|
<value>&Close</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="frmGameTags_btnOpenTags" xml:space="preserve">
|
<data name="frmGameTags_btnOpenTags" xml:space="preserve">
|
||||||
<value>Setup &Tags...</value>
|
<value>&Tag Manager...</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="frmGameTags_btnRemove" xml:space="preserve">
|
<data name="frmGameTags_btnRemove" xml:space="preserve">
|
||||||
<value><</value>
|
<value><</value>
|
||||||
@@ -1084,9 +1081,6 @@
|
|||||||
<data name="frmSettings_chkSupressBackup" xml:space="preserve">
|
<data name="frmSettings_chkSupressBackup" xml:space="preserve">
|
||||||
<value>Ignore sessions shorter than</value>
|
<value>Ignore sessions shorter than</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="frmSettings_chkSync" xml:space="preserve">
|
|
||||||
<value>Enable syncing</value>
|
|
||||||
</data>
|
|
||||||
<data name="frmSettings_chkTimeTracking" xml:space="preserve">
|
<data name="frmSettings_chkTimeTracking" xml:space="preserve">
|
||||||
<value>Enable time tracking</value>
|
<value>Enable time tracking</value>
|
||||||
</data>
|
</data>
|
||||||
@@ -1100,7 +1094,7 @@
|
|||||||
<value>Startup</value>
|
<value>Startup</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="frmSettings_grpFolderOptions" xml:space="preserve">
|
<data name="frmSettings_grpFolderOptions" xml:space="preserve">
|
||||||
<value>Folders</value>
|
<value>Files and Folders</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="frmSettings_lblBackupFolder" xml:space="preserve">
|
<data name="frmSettings_lblBackupFolder" xml:space="preserve">
|
||||||
<value>Backup Folder:</value>
|
<value>Backup Folder:</value>
|
||||||
@@ -1135,9 +1129,6 @@
|
|||||||
<data name="frmStartUpWizard_chkCreateFolder" xml:space="preserve">
|
<data name="frmStartUpWizard_chkCreateFolder" xml:space="preserve">
|
||||||
<value>Create a sub-folder for each game</value>
|
<value>Create a sub-folder for each game</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="frmStartUpWizard_chkSync" xml:space="preserve">
|
|
||||||
<value>Import any existing GBM data in the backup folder</value>
|
|
||||||
</data>
|
|
||||||
<data name="frmStartUpWizard_ConfirmOfficialImport" xml:space="preserve">
|
<data name="frmStartUpWizard_ConfirmOfficialImport" xml:space="preserve">
|
||||||
<value>Would you like to choose games to import from the official list?[BR][BR]This requires an active internet connection.</value>
|
<value>Would you like to choose games to import from the official list?[BR][BR]This requires an active internet connection.</value>
|
||||||
</data>
|
</data>
|
||||||
@@ -1166,7 +1157,7 @@
|
|||||||
<value>Welcome to GBM</value>
|
<value>Welcome to GBM</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="frmStartUpWizard_lblStep2Instructions" xml:space="preserve">
|
<data name="frmStartUpWizard_lblStep2Instructions" xml:space="preserve">
|
||||||
<value>GBM will store all your backup files along with a manifest database (gbm.s3db) in this location. </value>
|
<value>GBM will store all your backup files along with a manifest database (gbm.s3db) in this location. Any existing GBM data in this folder will be automatically imported.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="frmStartUpWizard_lblStep2Intro" xml:space="preserve">
|
<data name="frmStartUpWizard_lblStep2Intro" xml:space="preserve">
|
||||||
<value>Choose where GBM saves your backup files:</value>
|
<value>Choose where GBM saves your backup files:</value>
|
||||||
@@ -1220,7 +1211,7 @@
|
|||||||
<value>You must enter a valid tag name.</value>
|
<value>You must enter a valid tag name.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="frmTags_FormName" xml:space="preserve">
|
<data name="frmTags_FormName" xml:space="preserve">
|
||||||
<value>Tags</value>
|
<value>Tag Manager</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="frmTags_grpTag" xml:space="preserve">
|
<data name="frmTags_grpTag" xml:space="preserve">
|
||||||
<value>Configuration</value>
|
<value>Configuration</value>
|
||||||
@@ -1610,7 +1601,7 @@
|
|||||||
<value>A backup cannot be run on the selected game(s) with their current configuration.</value>
|
<value>A backup cannot be run on the selected game(s) with their current configuration.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="frmSettings_btnOptionalFields" xml:space="preserve">
|
<data name="frmSettings_btnOptionalFields" xml:space="preserve">
|
||||||
<value>Choose &Optional Fields...</value>
|
<value>Choose &Optional Sync Fields...</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="frmSyncFields_btnCancel" xml:space="preserve">
|
<data name="frmSyncFields_btnCancel" xml:space="preserve">
|
||||||
<value>&Cancel</value>
|
<value>&Cancel</value>
|
||||||
@@ -1777,9 +1768,6 @@
|
|||||||
<data name="frmGameManager_lblParameter" xml:space="preserve">
|
<data name="frmGameManager_lblParameter" xml:space="preserve">
|
||||||
<value>Parameter:</value>
|
<value>Parameter:</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="frmGameManager_ErrorProcessParameterDupe" xml:space="preserve">
|
|
||||||
<value>A game with this exact process and parameter already exists.</value>
|
|
||||||
</data>
|
|
||||||
<data name="mgrCommon_B" xml:space="preserve">
|
<data name="mgrCommon_B" xml:space="preserve">
|
||||||
<value>[PARAM] B</value>
|
<value>[PARAM] B</value>
|
||||||
</data>
|
</data>
|
||||||
@@ -2023,4 +2011,160 @@
|
|||||||
<data name="frmGameManager_ErrorRegExFailure" xml:space="preserve">
|
<data name="frmGameManager_ErrorRegExFailure" xml:space="preserve">
|
||||||
<value>The process is not a a valid regular expression.[BR][BR]Would you like help validating and testing your regular expression? [BR][BR]This will open your web browser and requires the internet.</value>
|
<value>The process is not a a valid regular expression.[BR][BR]Would you like help validating and testing your regular expression? [BR][BR]This will open your web browser and requires the internet.</value>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="frmGameManager_btnGameID" xml:space="preserve">
|
||||||
|
<value>&Game ID...</value>
|
||||||
|
</data>
|
||||||
|
<data name="frmGameManager_GameIDEditInfo" xml:space="preserve">
|
||||||
|
<value>The unique Game ID is generated by GBM. Changing this value is not recommended.</value>
|
||||||
|
</data>
|
||||||
|
<data name="frmGameManager_GameIDEditTitle" xml:space="preserve">
|
||||||
|
<value>Edit Game ID</value>
|
||||||
|
</data>
|
||||||
|
<data name="frmFilter_FieldGameID" xml:space="preserve">
|
||||||
|
<value>Game ID</value>
|
||||||
|
</data>
|
||||||
|
<data name="mgrMonitorList_ConfirmInitialOfficialGameIDSync" xml:space="preserve">
|
||||||
|
<value>GBM now uses a unique identifier for each game. For the import feature to recognize game configurations from a prior version, they need to use the same identifiers.[BR][BR]Do you want to sync your game identifiers with the official list?[BR][BR]This question will only be displayed once, but the option is available anytime from the "Tools" menu. Please see the online manual for more information.</value>
|
||||||
|
</data>
|
||||||
|
<data name="mgrMonitorList_ErrorGameIDVerFailure" xml:space="preserve">
|
||||||
|
<value>This file cannot be used to sync game indentifiers. It was created with an older version of GBM.</value>
|
||||||
|
</data>
|
||||||
|
<data name="mgrMonitorList_ImportVersionWarning" xml:space="preserve">
|
||||||
|
<value>This export file was created with a version of GBM prior to 1.1.0 and does not contain unique game identifiers.[BR][BR]Do you still want to import configurations from this file? (Not Recommended)</value>
|
||||||
|
</data>
|
||||||
|
<data name="mgrMonitorList_ConfirmFileGameIDSync" xml:space="preserve">
|
||||||
|
<value>Do you want to sync your game identifiers with this export file?[BR][BR]You should only do this if you're managing your own game configurations. Please see the online manual for more information.</value>
|
||||||
|
</data>
|
||||||
|
<data name="frmMain_gMonToolsSyncGameID" xml:space="preserve">
|
||||||
|
<value>S&ync Game IDs</value>
|
||||||
|
</data>
|
||||||
|
<data name="frmMain_gMonToolsSyncGameIDFile" xml:space="preserve">
|
||||||
|
<value>&File...</value>
|
||||||
|
</data>
|
||||||
|
<data name="frmMain_gMonToolsSyncGameIDOfficial" xml:space="preserve">
|
||||||
|
<value>&Official List...</value>
|
||||||
|
</data>
|
||||||
|
<data name="mgrMonitorList_ConfirmOfficialGameIDSync" xml:space="preserve">
|
||||||
|
<value>Do you want to sync your game identifiers with the official game list?[BR][BR]This allows the import feature to recognize game configurations from a prior version. Please see the online manual for more information.</value>
|
||||||
|
</data>
|
||||||
|
<data name="frmSettings_btnResetMessages" xml:space="preserve">
|
||||||
|
<value>&Reset Warnings</value>
|
||||||
|
</data>
|
||||||
|
<data name="frmSettings_ConfirmMessageReset" xml:space="preserve">
|
||||||
|
<value>Do you want to reset all hidden warnings and messages?</value>
|
||||||
|
</data>
|
||||||
|
<data name="Icon_New" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||||
|
<value>..\Resources\New.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||||
|
</data>
|
||||||
|
<data name="Icon_Update" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||||
|
<value>..\Resources\Update.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||||
|
</data>
|
||||||
|
<data name="mgrMonitorList_GameIDSyncCompleted" xml:space="preserve">
|
||||||
|
<value>Sync Complete.[BR][BR][PARAM] game configurations were matched and updated.</value>
|
||||||
|
</data>
|
||||||
|
<data name="App_BackupOnLaunchFileDescription" xml:space="preserve">
|
||||||
|
<value>launch</value>
|
||||||
|
</data>
|
||||||
|
<data name="frmSettings_chkBackupOnLaunch" xml:space="preserve">
|
||||||
|
<value>Backup GBM data files on launch</value>
|
||||||
|
</data>
|
||||||
|
<data name="frmMain_ErrorEndChildProcess" xml:space="preserve">
|
||||||
|
<value>An error occured when attempting to end a process associated with [PARAM].</value>
|
||||||
|
</data>
|
||||||
|
<data name="frmMain_ErrorStartChildProcess" xml:space="preserve">
|
||||||
|
<value>An error occured when attempting to start a process associated with [PARAM].</value>
|
||||||
|
</data>
|
||||||
|
<data name="frmProcessManager_btnAdd" xml:space="preserve">
|
||||||
|
<value>+</value>
|
||||||
|
</data>
|
||||||
|
<data name="frmProcessManager_btnCancel" xml:space="preserve">
|
||||||
|
<value>&Cancel</value>
|
||||||
|
</data>
|
||||||
|
<data name="frmProcessManager_btnClose" xml:space="preserve">
|
||||||
|
<value>C&lose</value>
|
||||||
|
</data>
|
||||||
|
<data name="frmProcessManager_btnDelete" xml:space="preserve">
|
||||||
|
<value>-</value>
|
||||||
|
</data>
|
||||||
|
<data name="frmProcessManager_btnProcessBrowse" xml:space="preserve">
|
||||||
|
<value>...</value>
|
||||||
|
</data>
|
||||||
|
<data name="frmProcessManager_btnSave" xml:space="preserve">
|
||||||
|
<value>&Save</value>
|
||||||
|
</data>
|
||||||
|
<data name="frmProcessManager_ConfirmDelete" xml:space="preserve">
|
||||||
|
<value>Are you sure you want to delete [PARAM]? This cannot be undone.</value>
|
||||||
|
</data>
|
||||||
|
<data name="frmProcessManager_ErrorDupe" xml:space="preserve">
|
||||||
|
<value>A process with this name already exists.</value>
|
||||||
|
</data>
|
||||||
|
<data name="frmProcessManager_ErrorPathNotFound" xml:space="preserve">
|
||||||
|
<value>The process does not exist.</value>
|
||||||
|
</data>
|
||||||
|
<data name="frmProcessManager_ErrorValidName" xml:space="preserve">
|
||||||
|
<value>You must enter a valid name for this process.</value>
|
||||||
|
</data>
|
||||||
|
<data name="frmProcessManager_ErrorValidPath" xml:space="preserve">
|
||||||
|
<value>You must choose a valid process.</value>
|
||||||
|
</data>
|
||||||
|
<data name="frmProcessManager_FormName" xml:space="preserve">
|
||||||
|
<value>Process Manager</value>
|
||||||
|
</data>
|
||||||
|
<data name="frmProcessManager_grpProcess" xml:space="preserve">
|
||||||
|
<value>Configuration</value>
|
||||||
|
</data>
|
||||||
|
<data name="frmProcessManager_lblName" xml:space="preserve">
|
||||||
|
<value>Name:</value>
|
||||||
|
</data>
|
||||||
|
<data name="frmProcessManager_lblPath" xml:space="preserve">
|
||||||
|
<value>Path:</value>
|
||||||
|
</data>
|
||||||
|
<data name="frmMain_gMonSetupProcessManager" xml:space="preserve">
|
||||||
|
<value>&Process Manager...</value>
|
||||||
|
</data>
|
||||||
|
<data name="frmProcessManager_ChooseProcess" xml:space="preserve">
|
||||||
|
<value>Choose a file that starts the process</value>
|
||||||
|
</data>
|
||||||
|
<data name="frmProcessManager_Executable" xml:space="preserve">
|
||||||
|
<value>Executable</value>
|
||||||
|
</data>
|
||||||
|
<data name="frmProcessManager_chkKillProcess" xml:space="preserve">
|
||||||
|
<value>Kill process when game is closed</value>
|
||||||
|
</data>
|
||||||
|
<data name="frmGameProcesses_btnAdd" xml:space="preserve">
|
||||||
|
<value>></value>
|
||||||
|
</data>
|
||||||
|
<data name="frmGameProcesses_btnClose" xml:space="preserve">
|
||||||
|
<value>&Close</value>
|
||||||
|
</data>
|
||||||
|
<data name="frmGameProcesses_btnOpenProcesses" xml:space="preserve">
|
||||||
|
<value>&Process Manager...</value>
|
||||||
|
</data>
|
||||||
|
<data name="frmGameProcesses_btnRemove" xml:space="preserve">
|
||||||
|
<value><</value>
|
||||||
|
</data>
|
||||||
|
<data name="frmGameProcesses_FormNameMulti" xml:space="preserve">
|
||||||
|
<value>Edit Processes for Multiple Games</value>
|
||||||
|
</data>
|
||||||
|
<data name="frmGameProcesses_FormNameSingle" xml:space="preserve">
|
||||||
|
<value>Edit Processes for [PARAM]</value>
|
||||||
|
</data>
|
||||||
|
<data name="frmGameProcesses_lblGameProccesses" xml:space="preserve">
|
||||||
|
<value>Current Processes</value>
|
||||||
|
</data>
|
||||||
|
<data name="frmGameProcesses_lblProcesses" xml:space="preserve">
|
||||||
|
<value>Available Processes</value>
|
||||||
|
</data>
|
||||||
|
<data name="App_GenericError" xml:space="preserve">
|
||||||
|
<value>Error: [PARAM]</value>
|
||||||
|
</data>
|
||||||
|
<data name="frmMain_ProcessKilled" xml:space="preserve">
|
||||||
|
<value>Kill signal was sent for [PARAM].</value>
|
||||||
|
</data>
|
||||||
|
<data name="frmMain_ProcessStarted" xml:space="preserve">
|
||||||
|
<value>[PARAM] has been started.</value>
|
||||||
|
</data>
|
||||||
|
<data name="frmSettings_chkUseGameID" xml:space="preserve">
|
||||||
|
<value>Use Game ID for folder and file names</value>
|
||||||
|
</data>
|
||||||
</root>
|
</root>
|
||||||
Binary file not shown.
|
After Width: | Height: | Size: 926 B |
Binary file not shown.
|
After Width: | Height: | Size: 891 B |
+66
-10
@@ -1,27 +1,62 @@
|
|||||||
Game Backup Monitor v1.0.8 Pre-Release Readme
|
Game Backup Monitor v1.1.0 Readme
|
||||||
http://mikemaximus.github.io/gbm-web/
|
http://mikemaximus.github.io/gbm-web/
|
||||||
gamebackupmonitor@gmail.com
|
gamebackupmonitor@gmail.com
|
||||||
|
|
||||||
February 24, 2018
|
March 12th, 2018
|
||||||
|
|
||||||
New in 1.0.8
|
New in 1.1.0
|
||||||
|
|
||||||
Disclaimer:
|
Disclaimer:
|
||||||
|
|
||||||
1. This is pre-release software intended for testing.
|
Version 1.1.0 makes fundamental changes to how GBM works with game configurations and backup data, in addition to many other updates. Read the changes below carefully before upgrading.
|
||||||
2. Database files from this version (gbm.s3db) may not be compatible with the full release. GBM makes automatic backups of your database files if you need to revert to a prior version.
|
|
||||||
3. Do not make external links to this release, it will be available for a limited time.
|
I've done my best to make sure the upgrade process allows everyone to continue using their existing data and configurations.
|
||||||
|
|
||||||
|
However, users who are sharing a backup folder between multiple PCs may experience data loss at some point due to the changes in this version. Please read "Known Issue #1" in this file for details.
|
||||||
|
|
||||||
All Platforms:
|
All Platforms:
|
||||||
|
|
||||||
|
- Core Design Changes (Game Configuration)
|
||||||
|
- Game ID is now exposed to the user and can be changed. This feature is mainly for developer and contributer usage.
|
||||||
|
- Game ID is generated automatically by GBM or acquired from an import, the user doesn't need to set it unless they want to.
|
||||||
|
- Game ID (instead of Game Name) can now be used to name backup files and folders.
|
||||||
|
- GBM will continue to use the name by default for ease of use.
|
||||||
|
- This behavior can be toggled in the "Backup and Restore" section of Settings.
|
||||||
|
- Using the game Name for backup files has a minor risk associated with it. See "Known Issue #2 and #4" for more details.
|
||||||
|
- Game Name can now contain any character.
|
||||||
|
- When a game is deleted via Game Manager (or sync), all backup manifest entries for that particular game are now deleted. The backup files themselves are not.
|
||||||
|
- The Game Manager now syncs changes to the remote database immediately, instead of only when closed.
|
||||||
|
|
||||||
|
- Feature Additions & Changes
|
||||||
- Added Regular Expression support for game detection
|
- Added Regular Expression support for game detection
|
||||||
- This feature allows GBM to detect games based on a pattern instead of a single process name.
|
- This feature allows GBM to detect games based on a pattern instead of a single process name.
|
||||||
- This allows GBM to better support games that run from multiple executables and games that use interpreters or emulators.
|
- This allows GBM to better support games that run from multiple executables and games that use interpreters or emulators.
|
||||||
- Use the new "Regular Expression" checkbox on the Game Manager and enter the pattern in the "Process" field.
|
- Use the new "Regular Expression" checkbox on the Game Manager and enter the pattern in the "Process" field.
|
||||||
- GBM will validate patterns and offer to help troubleshoot (using regexr.com) when validation fails.
|
- GBM will validate patterns and offer to help troubleshoot (using regexr.com) when validation fails.
|
||||||
- Changed how GBM handles game and file names
|
- Added the ability to start another process (or multiple processes) whenever a game is detected. (Thanks for the suggestion Naliel Supremo)
|
||||||
- You may now use any character in the configuration name of a game. For example, Kingdom Come: "Deliverance" is now a valid game name.
|
- This is useful to automatically start utilities, such as custom control schemes or overlays when a specific game is detected.
|
||||||
- These characters are still stripped when a folder or filename is created, using the above example the backup folder and file name would be Kingdom Come Deliverance.
|
- The "Process Manager" allows you to manage any programs you'd like to launch.
|
||||||
|
- The "Processes..." button on the Game Manager allows you to assign processes to any selected game.
|
||||||
|
- A process can be set to end when the game is closed.
|
||||||
|
- Processes and related settings are specific to the local machine only. They are not synced to the backup folder and are not part of the import/export.
|
||||||
|
- Added "Backup GBM data files on launch" to the settings. A long overdue feature, this will backup both the remote and local databases (as gbm.s3db.launch.bak) each time GBM starts.
|
||||||
|
- This new setting is enabled by default.
|
||||||
|
- Only one backup is kept, the prior one will be overwritten.
|
||||||
|
- Added the ability to display messages or warnings that can be supressed after one view. These messages can be reset via the Settings screen.
|
||||||
|
- The "Enable Sync" feature is now mandatory and the option been removed from Settings.
|
||||||
|
- The "Clean Local Manifest" feature has been removed. It is not required because manfiest entries are no longer orphaned by design. Existing orphaned entries will be removed during the v1.1.0 database upgrade.
|
||||||
|
- Added "Sync Game IDs" feature. This allows the user to update their game configuration identifiers to match the official list or an export file.
|
||||||
|
- This is mainly an optional upgrade tool for users with existing data from older versions. It allows the import feature to properly recognize and update game configurations.
|
||||||
|
- The sync is based on similarly named game configurations, therefore it's not 100% effective. Some games may be missed and require manual changes.
|
||||||
|
- If you share a backup folder with multiple PCs, this feature will cause some data loss when the new IDs are synced to the other PCs. See "Known Issue #1"
|
||||||
|
|
||||||
|
- Import / Export Changes
|
||||||
|
- GBM now uses the Game ID to determine if a game is new or has an updated configuration.
|
||||||
|
- GBM will offer to "Sync Game IDs" when importing from the official list after upgrading to v1.1.0.
|
||||||
|
- This allows the import to recognize and update your configurations from older versions.
|
||||||
|
- This offer only appears once and only appears for users that have upgraded from an older version.
|
||||||
|
- Added icons to the import list to indicate a "New" or "Updated" game.
|
||||||
|
|
||||||
- Updated session CSV export to adhere to RFC 4180. It now handles commas, quotes and line breaks correctly.
|
- Updated session CSV export to adhere to RFC 4180. It now handles commas, quotes and line breaks correctly.
|
||||||
|
|
||||||
Windows Only:
|
Windows Only:
|
||||||
@@ -32,6 +67,27 @@ Linux Only:
|
|||||||
|
|
||||||
- GBM now uses notify-send (libnotify) if it's available to display notifications on Linux.
|
- 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.
|
- 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).
|
- The GBM icon will be displayed on notifications if it's been installed via the makefile or a package installer.
|
||||||
|
|
||||||
|
Known Issues:
|
||||||
|
|
||||||
|
1. If one or more Game IDs are changed (manually or via Game ID Sync) on one computer and these changes are synced to another PC sharing the same backup folder, the following data will be lost.
|
||||||
|
- The local session data on that PC for the changed game(s) will be lost.
|
||||||
|
- The local backup manifest data for the changed game(s) on that PC will be lost. GBM will see any backups for the changed game(s) as new and will handle them accordingly.
|
||||||
|
- Any processes assigned to the changed games(s) on that PC will be lost.
|
||||||
|
Once your PCs are back in sync, this will no longer be an issue unless you are constantly changing your Game IDs, which is not recommended.
|
||||||
|
2. Backup files are not being renamed or removed when a new backup is created.
|
||||||
|
- This happens on the first backup after toggling between using the Name or ID for your file names. It's best to choose one setting and stick with it.
|
||||||
|
3. The error "The requested operation requires elevation" occurs when GBM tries to launch a process associated with a game.
|
||||||
|
- This means the process you're trying to launch with GBM requires administrator privilege.
|
||||||
|
- Click the blue "user" icon on the bottom left of the GBM window to quickly switch to administrator mode.
|
||||||
|
4. Game configurations using the same name, and configurations that end up with the same name when special characters are stripped will overwrite each other's backup files.
|
||||||
|
- For most users this should be a non-issue. Toggle "Use Game ID for folder and file names" to on in the Settings screen if this is a problem for you.
|
||||||
|
|
||||||
|
Important Notices:
|
||||||
|
|
||||||
|
1. Configurations on the official game list are no longer fully compatible with older GBM versions.
|
||||||
|
- Technically they will work, but any game imported with a special character in it's name, such as a colon, will not create backup files correctly.
|
||||||
|
- These characters can be manually removed from the game name after importing in an older version, then the configurations will function properly.
|
||||||
|
|
||||||
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
|
||||||
Reference in New Issue
Block a user