Compare commits
58 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
2623bf7f7a | ||
|
|
6230d2f888 | ||
|
|
adc857fe5e | ||
|
|
bddf07ee44 | ||
|
|
63ed3dac67 | ||
|
|
922103e5aa | ||
|
|
d0fe33e953 | ||
|
|
934d17de47 | ||
|
|
2ccc10bb9c | ||
|
|
cc1db7e524 | ||
|
|
c2a9d3ee77 | ||
|
|
65fe7214eb | ||
|
|
71d09126c2 | ||
|
|
2eb0c30702 | ||
|
|
24e1c4b92f | ||
|
|
4e7eb58463 | ||
|
|
3ae0d1ba82 | ||
|
|
6f3ed9ab81 | ||
|
|
a490e6d1f2 | ||
|
|
a5dd1d547b | ||
|
|
974aaa3638 | ||
|
|
c3b73a9953 | ||
|
|
3bd4cbd0bd | ||
|
|
5a9b3c99b3 | ||
|
|
8ce1b00a8c | ||
|
|
e4237a74bb | ||
|
|
72f520f333 | ||
|
|
dc9ec7f190 | ||
|
|
c0dbd95504 | ||
|
|
6c5c54ea1b | ||
|
|
d0c40fd341 | ||
|
|
68855077cf | ||
|
|
3184cb61ec | ||
|
|
8ebfed7ab7 | ||
|
|
229afa92fd | ||
|
|
db6c96a80b | ||
|
|
6d0db7c075 | ||
|
|
e3f5c7e3c0 | ||
|
|
ba1fc76ebe | ||
|
|
6de58dc977 | ||
|
|
5e0e1a543f | ||
|
|
7254b6b501 | ||
|
|
f117e7fbaa | ||
|
|
d46bc38bdc | ||
|
|
a092c1b44f | ||
|
|
77b5efbe02 | ||
|
|
7a93fd799b | ||
|
|
4108ec36d7 | ||
|
|
87f93ed4f5 | ||
|
|
18befc19b3 | ||
|
|
bfe2346e8a | ||
|
|
9cbc2b3240 | ||
|
|
1fab0e0cf4 | ||
|
|
588f51d496 | ||
|
|
77eb164a62 | ||
|
|
58ec4564ae | ||
|
|
8c1f3144f8 | ||
|
|
507984bdf8 |
@@ -7,8 +7,6 @@
|
|||||||
Private sRelativeRestorePath As String = String.Empty
|
Private sRelativeRestorePath As String = String.Empty
|
||||||
Private dDateUpdated As DateTime = Date.Now
|
Private dDateUpdated As DateTime = Date.Now
|
||||||
Private sUpdatedBy As String = String.Empty
|
Private sUpdatedBy As String = String.Empty
|
||||||
Private dLastDateUpdated As DateTime = Date.Now
|
|
||||||
Private sLastUpdatedBy As String = String.Empty
|
|
||||||
Private sCheckSum As String = String.Empty
|
Private sCheckSum As String = String.Empty
|
||||||
|
|
||||||
Property ID As String
|
Property ID As String
|
||||||
@@ -109,24 +107,6 @@
|
|||||||
End Set
|
End Set
|
||||||
End Property
|
End Property
|
||||||
|
|
||||||
Property LastDateUpdated As DateTime
|
|
||||||
Get
|
|
||||||
Return dLastDateUpdated
|
|
||||||
End Get
|
|
||||||
Set(value As DateTime)
|
|
||||||
dLastDateUpdated = value
|
|
||||||
End Set
|
|
||||||
End Property
|
|
||||||
|
|
||||||
Property LastUpdatedBy As String
|
|
||||||
Get
|
|
||||||
Return sLastUpdatedBy
|
|
||||||
End Get
|
|
||||||
Set(value As String)
|
|
||||||
sLastUpdatedBy = value
|
|
||||||
End Set
|
|
||||||
End Property
|
|
||||||
|
|
||||||
Property CheckSum As String
|
Property CheckSum As String
|
||||||
Get
|
Get
|
||||||
Return sCheckSum
|
Return sCheckSum
|
||||||
|
|||||||
@@ -7,6 +7,8 @@
|
|||||||
Private bFolderSave As Boolean = False
|
Private bFolderSave As Boolean = False
|
||||||
Private sFileType As String = String.Empty
|
Private sFileType As String = String.Empty
|
||||||
Private bAppendTimeStamp As Boolean = False
|
Private bAppendTimeStamp As Boolean = False
|
||||||
|
Private iBackupLimit As Integer = 2
|
||||||
|
Private bCleanFolder As Boolean = False
|
||||||
Private sExcludeList As String = String.Empty
|
Private sExcludeList As String = String.Empty
|
||||||
Private sProcessPath As String = String.Empty
|
Private sProcessPath As String = String.Empty
|
||||||
Private sIcon As String = String.Empty
|
Private sIcon As String = String.Empty
|
||||||
@@ -117,6 +119,24 @@
|
|||||||
End Set
|
End Set
|
||||||
End Property
|
End Property
|
||||||
|
|
||||||
|
Property BackupLimit As Integer
|
||||||
|
Get
|
||||||
|
Return iBackupLimit
|
||||||
|
End Get
|
||||||
|
Set(value As Integer)
|
||||||
|
iBackupLimit = value
|
||||||
|
End Set
|
||||||
|
End Property
|
||||||
|
|
||||||
|
Property CleanFolder As Boolean
|
||||||
|
Get
|
||||||
|
Return bCleanFolder
|
||||||
|
End Get
|
||||||
|
Set(value As Boolean)
|
||||||
|
bCleanFolder = value
|
||||||
|
End Set
|
||||||
|
End Property
|
||||||
|
|
||||||
Property ExcludeList As String
|
Property ExcludeList As String
|
||||||
Set(value As String)
|
Set(value As String)
|
||||||
sExcludeList = value
|
sExcludeList = value
|
||||||
@@ -258,6 +278,9 @@
|
|||||||
If FolderSave <> oGame.FolderSave Then
|
If FolderSave <> oGame.FolderSave Then
|
||||||
Return False
|
Return False
|
||||||
End If
|
End If
|
||||||
|
If CleanFolder <> oGame.CleanFolder Then
|
||||||
|
Return False
|
||||||
|
End If
|
||||||
If AppendTimeStamp <> oGame.AppendTimeStamp Then
|
If AppendTimeStamp <> oGame.AppendTimeStamp Then
|
||||||
Return False
|
Return False
|
||||||
End If
|
End If
|
||||||
@@ -293,6 +316,9 @@
|
|||||||
If AppendTimeStamp <> oGame.AppendTimeStamp Then
|
If AppendTimeStamp <> oGame.AppendTimeStamp Then
|
||||||
Return False
|
Return False
|
||||||
End If
|
End If
|
||||||
|
If BackupLimit <> oGame.BackupLimit Then
|
||||||
|
Return False
|
||||||
|
End If
|
||||||
End If
|
End If
|
||||||
If (eSyncFields And eOptionalSyncFields.Version) = eOptionalSyncFields.Version Then
|
If (eSyncFields And eOptionalSyncFields.Version) = eOptionalSyncFields.Version Then
|
||||||
If Version <> oGame.Version Then
|
If Version <> oGame.Version Then
|
||||||
|
|||||||
@@ -1,23 +0,0 @@
|
|||||||
Public Class clsRestoreCache
|
|
||||||
Private sName As String
|
|
||||||
Private sPath As String
|
|
||||||
|
|
||||||
Property Name As String
|
|
||||||
Get
|
|
||||||
Return sName
|
|
||||||
End Get
|
|
||||||
Set(value As String)
|
|
||||||
sName = value
|
|
||||||
End Set
|
|
||||||
End Property
|
|
||||||
|
|
||||||
Property Path As String
|
|
||||||
Get
|
|
||||||
Return sPath
|
|
||||||
End Get
|
|
||||||
Set(value As String)
|
|
||||||
sPath = value
|
|
||||||
End Set
|
|
||||||
End Property
|
|
||||||
|
|
||||||
End Class
|
|
||||||
Generated
+42
-14
@@ -36,6 +36,8 @@ Partial Class frmAddWizard
|
|||||||
Me.txtProcessPath = New System.Windows.Forms.TextBox()
|
Me.txtProcessPath = New System.Windows.Forms.TextBox()
|
||||||
Me.lblStep2Intro = New System.Windows.Forms.Label()
|
Me.lblStep2Intro = New System.Windows.Forms.Label()
|
||||||
Me.tbPage3 = New System.Windows.Forms.TabPage()
|
Me.tbPage3 = New System.Windows.Forms.TabPage()
|
||||||
|
Me.lblLimit = New System.Windows.Forms.Label()
|
||||||
|
Me.nudLimit = New System.Windows.Forms.NumericUpDown()
|
||||||
Me.lblStep3Title = New System.Windows.Forms.Label()
|
Me.lblStep3Title = New System.Windows.Forms.Label()
|
||||||
Me.lblStep3Instructions = New System.Windows.Forms.Label()
|
Me.lblStep3Instructions = New System.Windows.Forms.Label()
|
||||||
Me.chkTimeStamp = New System.Windows.Forms.CheckBox()
|
Me.chkTimeStamp = New System.Windows.Forms.CheckBox()
|
||||||
@@ -70,6 +72,7 @@ Partial Class frmAddWizard
|
|||||||
Me.tbPage1.SuspendLayout()
|
Me.tbPage1.SuspendLayout()
|
||||||
Me.tbPage2.SuspendLayout()
|
Me.tbPage2.SuspendLayout()
|
||||||
Me.tbPage3.SuspendLayout()
|
Me.tbPage3.SuspendLayout()
|
||||||
|
CType(Me.nudLimit, System.ComponentModel.ISupportInitialize).BeginInit()
|
||||||
Me.tbPage3a.SuspendLayout()
|
Me.tbPage3a.SuspendLayout()
|
||||||
Me.tbPage4.SuspendLayout()
|
Me.tbPage4.SuspendLayout()
|
||||||
Me.tbPage5.SuspendLayout()
|
Me.tbPage5.SuspendLayout()
|
||||||
@@ -121,8 +124,8 @@ Partial Class frmAddWizard
|
|||||||
Me.lblStep1Instructions.Name = "lblStep1Instructions"
|
Me.lblStep1Instructions.Name = "lblStep1Instructions"
|
||||||
Me.lblStep1Instructions.Size = New System.Drawing.Size(303, 85)
|
Me.lblStep1Instructions.Size = New System.Drawing.Size(303, 85)
|
||||||
Me.lblStep1Instructions.TabIndex = 6
|
Me.lblStep1Instructions.TabIndex = 6
|
||||||
Me.lblStep1Instructions.Text = "The name will be automatically filtered for length and invalid characters. You m" & _
|
Me.lblStep1Instructions.Text = "The name will be automatically filtered for length and invalid characters. You m" &
|
||||||
"ay drag and drop a shortcut here to complete this step, only Windows shortcuts a" & _
|
"ay drag and drop a shortcut here to complete this step, only Windows shortcuts a" &
|
||||||
"re currently supported."
|
"re currently supported."
|
||||||
'
|
'
|
||||||
'txtName
|
'txtName
|
||||||
@@ -205,6 +208,8 @@ Partial Class frmAddWizard
|
|||||||
'tbPage3
|
'tbPage3
|
||||||
'
|
'
|
||||||
Me.tbPage3.BackColor = System.Drawing.SystemColors.Control
|
Me.tbPage3.BackColor = System.Drawing.SystemColors.Control
|
||||||
|
Me.tbPage3.Controls.Add(Me.lblLimit)
|
||||||
|
Me.tbPage3.Controls.Add(Me.nudLimit)
|
||||||
Me.tbPage3.Controls.Add(Me.lblStep3Title)
|
Me.tbPage3.Controls.Add(Me.lblStep3Title)
|
||||||
Me.tbPage3.Controls.Add(Me.lblStep3Instructions)
|
Me.tbPage3.Controls.Add(Me.lblStep3Instructions)
|
||||||
Me.tbPage3.Controls.Add(Me.chkTimeStamp)
|
Me.tbPage3.Controls.Add(Me.chkTimeStamp)
|
||||||
@@ -218,6 +223,26 @@ Partial Class frmAddWizard
|
|||||||
Me.tbPage3.TabIndex = 2
|
Me.tbPage3.TabIndex = 2
|
||||||
Me.tbPage3.Text = "TabPage3"
|
Me.tbPage3.Text = "TabPage3"
|
||||||
'
|
'
|
||||||
|
'lblLimit
|
||||||
|
'
|
||||||
|
Me.lblLimit.AutoSize = True
|
||||||
|
Me.lblLimit.Location = New System.Drawing.Point(203, 109)
|
||||||
|
Me.lblLimit.Name = "lblLimit"
|
||||||
|
Me.lblLimit.Size = New System.Drawing.Size(68, 13)
|
||||||
|
Me.lblLimit.TabIndex = 15
|
||||||
|
Me.lblLimit.Text = "Backup Limit"
|
||||||
|
Me.lblLimit.Visible = False
|
||||||
|
'
|
||||||
|
'nudLimit
|
||||||
|
'
|
||||||
|
Me.nudLimit.Location = New System.Drawing.Point(157, 107)
|
||||||
|
Me.nudLimit.Minimum = New Decimal(New Integer() {2, 0, 0, 0})
|
||||||
|
Me.nudLimit.Name = "nudLimit"
|
||||||
|
Me.nudLimit.Size = New System.Drawing.Size(40, 20)
|
||||||
|
Me.nudLimit.TabIndex = 14
|
||||||
|
Me.nudLimit.Value = New Decimal(New Integer() {2, 0, 0, 0})
|
||||||
|
Me.nudLimit.Visible = False
|
||||||
|
'
|
||||||
'lblStep3Title
|
'lblStep3Title
|
||||||
'
|
'
|
||||||
Me.lblStep3Title.AutoSize = True
|
Me.lblStep3Title.AutoSize = True
|
||||||
@@ -230,32 +255,32 @@ Partial Class frmAddWizard
|
|||||||
'
|
'
|
||||||
'lblStep3Instructions
|
'lblStep3Instructions
|
||||||
'
|
'
|
||||||
Me.lblStep3Instructions.Location = New System.Drawing.Point(14, 116)
|
Me.lblStep3Instructions.Location = New System.Drawing.Point(14, 139)
|
||||||
Me.lblStep3Instructions.Name = "lblStep3Instructions"
|
Me.lblStep3Instructions.Name = "lblStep3Instructions"
|
||||||
Me.lblStep3Instructions.Size = New System.Drawing.Size(303, 42)
|
Me.lblStep3Instructions.Size = New System.Drawing.Size(303, 42)
|
||||||
Me.lblStep3Instructions.TabIndex = 9
|
Me.lblStep3Instructions.TabIndex = 9
|
||||||
Me.lblStep3Instructions.Text = "If you're unsure of exactly which files to backup, make sure Save Entire Folder " & _
|
Me.lblStep3Instructions.Text = "If you're unsure of exactly which files to backup, make sure Save entire folder " &
|
||||||
"is checked. You can also time stamp your backup files to make incremental backu" & _
|
"is checked. You can also choose to save multiple backups and set a limit on how" &
|
||||||
"ps."
|
" many to keep."
|
||||||
'
|
'
|
||||||
'chkTimeStamp
|
'chkTimeStamp
|
||||||
'
|
'
|
||||||
Me.chkTimeStamp.AutoSize = True
|
Me.chkTimeStamp.AutoSize = True
|
||||||
Me.chkTimeStamp.Location = New System.Drawing.Point(139, 87)
|
Me.chkTimeStamp.Location = New System.Drawing.Point(18, 108)
|
||||||
Me.chkTimeStamp.Name = "chkTimeStamp"
|
Me.chkTimeStamp.Name = "chkTimeStamp"
|
||||||
Me.chkTimeStamp.Size = New System.Drawing.Size(122, 17)
|
Me.chkTimeStamp.Size = New System.Drawing.Size(133, 17)
|
||||||
Me.chkTimeStamp.TabIndex = 8
|
Me.chkTimeStamp.TabIndex = 8
|
||||||
Me.chkTimeStamp.Text = "Time Stamp Backup"
|
Me.chkTimeStamp.Text = "Save multiple backups"
|
||||||
Me.chkTimeStamp.UseVisualStyleBackColor = True
|
Me.chkTimeStamp.UseVisualStyleBackColor = True
|
||||||
'
|
'
|
||||||
'chkFolderSave
|
'chkFolderSave
|
||||||
'
|
'
|
||||||
Me.chkFolderSave.AutoSize = True
|
Me.chkFolderSave.AutoSize = True
|
||||||
Me.chkFolderSave.Location = New System.Drawing.Point(17, 87)
|
Me.chkFolderSave.Location = New System.Drawing.Point(18, 87)
|
||||||
Me.chkFolderSave.Name = "chkFolderSave"
|
Me.chkFolderSave.Name = "chkFolderSave"
|
||||||
Me.chkFolderSave.Size = New System.Drawing.Size(113, 17)
|
Me.chkFolderSave.Size = New System.Drawing.Size(109, 17)
|
||||||
Me.chkFolderSave.TabIndex = 7
|
Me.chkFolderSave.TabIndex = 7
|
||||||
Me.chkFolderSave.Text = "Save Entire Folder"
|
Me.chkFolderSave.Text = "Save entire folder"
|
||||||
Me.chkFolderSave.UseVisualStyleBackColor = True
|
Me.chkFolderSave.UseVisualStyleBackColor = True
|
||||||
'
|
'
|
||||||
'btnSaveBrowse
|
'btnSaveBrowse
|
||||||
@@ -352,7 +377,7 @@ Partial Class frmAddWizard
|
|||||||
Me.lblStep3aInstructions.Name = "lblStep3aInstructions"
|
Me.lblStep3aInstructions.Name = "lblStep3aInstructions"
|
||||||
Me.lblStep3aInstructions.Size = New System.Drawing.Size(303, 56)
|
Me.lblStep3aInstructions.Size = New System.Drawing.Size(303, 56)
|
||||||
Me.lblStep3aInstructions.TabIndex = 5
|
Me.lblStep3aInstructions.TabIndex = 5
|
||||||
Me.lblStep3aInstructions.Text = "Choose any file types, specific files or folders you wish to include in the back" & _
|
Me.lblStep3aInstructions.Text = "Choose any file types, specific files or folders you wish to include in the back" &
|
||||||
"up. If you're unsure, go back a step and choose to save the entire folder. "
|
"up. If you're unsure, go back a step and choose to save the entire folder. "
|
||||||
'
|
'
|
||||||
'txtFileTypes
|
'txtFileTypes
|
||||||
@@ -434,7 +459,7 @@ Partial Class frmAddWizard
|
|||||||
Me.lblStep4Instructions.Name = "lblStep4Instructions"
|
Me.lblStep4Instructions.Name = "lblStep4Instructions"
|
||||||
Me.lblStep4Instructions.Size = New System.Drawing.Size(303, 59)
|
Me.lblStep4Instructions.Size = New System.Drawing.Size(303, 59)
|
||||||
Me.lblStep4Instructions.TabIndex = 5
|
Me.lblStep4Instructions.TabIndex = 5
|
||||||
Me.lblStep4Instructions.Text = "Choose any file types, specific files or folders you wish to exclude from the ba" & _
|
Me.lblStep4Instructions.Text = "Choose any file types, specific files or folders you wish to exclude from the ba" &
|
||||||
"ckup. You may choose multiple items to exclude. This step can be skipped."
|
"ckup. You may choose multiple items to exclude. This step can be skipped."
|
||||||
'
|
'
|
||||||
'txtExcludeList
|
'txtExcludeList
|
||||||
@@ -539,6 +564,7 @@ Partial Class frmAddWizard
|
|||||||
Me.tbPage2.PerformLayout()
|
Me.tbPage2.PerformLayout()
|
||||||
Me.tbPage3.ResumeLayout(False)
|
Me.tbPage3.ResumeLayout(False)
|
||||||
Me.tbPage3.PerformLayout()
|
Me.tbPage3.PerformLayout()
|
||||||
|
CType(Me.nudLimit, System.ComponentModel.ISupportInitialize).EndInit()
|
||||||
Me.tbPage3a.ResumeLayout(False)
|
Me.tbPage3a.ResumeLayout(False)
|
||||||
Me.tbPage3a.PerformLayout()
|
Me.tbPage3a.PerformLayout()
|
||||||
Me.tbPage4.ResumeLayout(False)
|
Me.tbPage4.ResumeLayout(False)
|
||||||
@@ -591,4 +617,6 @@ Partial Class frmAddWizard
|
|||||||
Friend WithEvents lblExcludePath As Label
|
Friend WithEvents lblExcludePath As Label
|
||||||
Friend WithEvents lblIncludePathTitle As Label
|
Friend WithEvents lblIncludePathTitle As Label
|
||||||
Friend WithEvents lblExcludePathTitle As Label
|
Friend WithEvents lblExcludePathTitle As Label
|
||||||
|
Friend WithEvents lblLimit As Label
|
||||||
|
Friend WithEvents nudLimit As NumericUpDown
|
||||||
End Class
|
End Class
|
||||||
|
|||||||
@@ -46,6 +46,7 @@ Public Class frmAddWizard
|
|||||||
lblStep3Instructions.Text = frmAddWizard_lblStep3Instructions
|
lblStep3Instructions.Text = frmAddWizard_lblStep3Instructions
|
||||||
chkTimeStamp.Text = frmAddWizard_chkTimeStamp
|
chkTimeStamp.Text = frmAddWizard_chkTimeStamp
|
||||||
chkFolderSave.Text = frmAddWizard_chkFolderSave
|
chkFolderSave.Text = frmAddWizard_chkFolderSave
|
||||||
|
lblLimit.Text = frmAddWizard_lblLimit
|
||||||
btnSaveBrowse.Text = frmAddWizard_btnSaveBrowse
|
btnSaveBrowse.Text = frmAddWizard_btnSaveBrowse
|
||||||
lblStep3Intro.Text = frmAddWizard_lblStep3Intro
|
lblStep3Intro.Text = frmAddWizard_lblStep3Intro
|
||||||
lblIncludePathTitle.Text = frmAddWizard_lblIncludePathTitle
|
lblIncludePathTitle.Text = frmAddWizard_lblIncludePathTitle
|
||||||
@@ -68,6 +69,28 @@ Public Class frmAddWizard
|
|||||||
StepHandler()
|
StepHandler()
|
||||||
End Sub
|
End Sub
|
||||||
|
|
||||||
|
Private Sub ShowHideLimit()
|
||||||
|
If chkTimeStamp.Checked Then
|
||||||
|
nudLimit.Visible = True
|
||||||
|
lblLimit.Visible = True
|
||||||
|
nudLimit.Value = 5
|
||||||
|
Else
|
||||||
|
nudLimit.Visible = False
|
||||||
|
nudLimit.Value = nudLimit.Minimum
|
||||||
|
lblLimit.Visible = False
|
||||||
|
End If
|
||||||
|
End Sub
|
||||||
|
|
||||||
|
Private Function ShowSummaryLimit(ByVal bTimeStamp As Boolean, ByVal iLimit As Integer) As String
|
||||||
|
Dim sLimit As String = String.Empty
|
||||||
|
|
||||||
|
If bTimeStamp Then
|
||||||
|
Return mgrCommon.BooleanYesNo(bTimeStamp) & " (" & iLimit & ")"
|
||||||
|
Else
|
||||||
|
Return mgrCommon.BooleanYesNo(bTimeStamp)
|
||||||
|
End If
|
||||||
|
End Function
|
||||||
|
|
||||||
Private Function StringEmptyText(ByVal sString As String) As String
|
Private Function StringEmptyText(ByVal sString As String) As String
|
||||||
If sString = String.Empty Then
|
If sString = String.Empty Then
|
||||||
Return frmAddWizard_None
|
Return frmAddWizard_None
|
||||||
@@ -81,19 +104,31 @@ Public Class frmAddWizard
|
|||||||
Dim sName As String = txtName.Text
|
Dim sName As String = txtName.Text
|
||||||
Dim sProcessFullPath As String = txtProcessPath.Text
|
Dim sProcessFullPath As String = txtProcessPath.Text
|
||||||
Dim sProcessPath As String = Path.GetDirectoryName(sProcessFullPath)
|
Dim sProcessPath As String = Path.GetDirectoryName(sProcessFullPath)
|
||||||
Dim sProcess As String = Path.GetFileNameWithoutExtension(sProcessFullPath)
|
|
||||||
Dim sProcessSummaryText As String = Path.GetFileName(sProcessFullPath) & " (" & sProcessPath & ")"
|
Dim sProcessSummaryText As String = Path.GetFileName(sProcessFullPath) & " (" & sProcessPath & ")"
|
||||||
Dim sSavePath As String = txtSavePath.Text
|
Dim sSavePath As String = txtSavePath.Text
|
||||||
Dim bIsAbsolute As Boolean = mgrPath.IsAbsolute(sSavePath)
|
Dim bIsAbsolute As Boolean = mgrPath.IsAbsolute(sSavePath)
|
||||||
Dim bFolderBackup As Boolean = chkFolderSave.Checked
|
Dim bFolderBackup As Boolean = chkFolderSave.Checked
|
||||||
Dim bTimeStamp As Boolean = chkTimeStamp.Checked
|
Dim bTimeStamp As Boolean = chkTimeStamp.Checked
|
||||||
|
Dim iLimit As Integer = nudLimit.Value
|
||||||
Dim sFileType As String = txtFileTypes.Text
|
Dim sFileType As String = txtFileTypes.Text
|
||||||
Dim sExcludeList As String = txtExcludeList.Text
|
Dim sExcludeList As String = txtExcludeList.Text
|
||||||
|
Dim sProcess As String
|
||||||
Dim sItem As String()
|
Dim sItem As String()
|
||||||
Dim sItems As String()
|
Dim sItems As String()
|
||||||
Dim sValues As String()
|
Dim sValues As String()
|
||||||
Dim lstItem As ListViewItem
|
Dim lstItem As ListViewItem
|
||||||
|
|
||||||
|
'Handle Process
|
||||||
|
If Path.HasExtension(sProcessFullPath) Then
|
||||||
|
If sProcessFullPath.ToLower.EndsWith(".exe") Then
|
||||||
|
sProcess = Path.GetFileNameWithoutExtension(sProcessFullPath)
|
||||||
|
Else
|
||||||
|
sProcess = Path.GetFileName(sProcessFullPath)
|
||||||
|
End If
|
||||||
|
Else
|
||||||
|
sProcess = Path.GetFileName(sProcessFullPath)
|
||||||
|
End If
|
||||||
|
|
||||||
If Not bIsAbsolute Then
|
If Not bIsAbsolute Then
|
||||||
sSavePath = mgrPath.DetermineRelativePath(sProcessPath, sSavePath)
|
sSavePath = mgrPath.DetermineRelativePath(sProcessPath, sSavePath)
|
||||||
End If
|
End If
|
||||||
@@ -106,7 +141,7 @@ Public Class frmAddWizard
|
|||||||
lstSummary.Columns(1).Width = 210
|
lstSummary.Columns(1).Width = 210
|
||||||
|
|
||||||
sItems = {frmAddWizard_Summary_Name, frmAddWizard_Summary_Process, frmAddWizard_Summary_AbsolutePath, frmAddWizard_Summary_SavePath, frmAddWizard_Summary_FolderSave, frmAddWizard_Summary_Timestamp, frmAddWizard_Summary_Include, frmAddWizard_Summary_Exclude}
|
sItems = {frmAddWizard_Summary_Name, frmAddWizard_Summary_Process, frmAddWizard_Summary_AbsolutePath, frmAddWizard_Summary_SavePath, frmAddWizard_Summary_FolderSave, frmAddWizard_Summary_Timestamp, frmAddWizard_Summary_Include, frmAddWizard_Summary_Exclude}
|
||||||
sValues = {sName, sProcessSummaryText, mgrCommon.BooleanYesNo(bIsAbsolute), sSavePath, mgrCommon.BooleanYesNo(bFolderBackup), mgrCommon.BooleanYesNo(bTimeStamp), StringEmptyText(sFileType), StringEmptyText(sExcludeList)}
|
sValues = {sName, sProcessSummaryText, mgrCommon.BooleanYesNo(bIsAbsolute), sSavePath, mgrCommon.BooleanYesNo(bFolderBackup), ShowSummaryLimit(bTimeStamp, iLimit), StringEmptyText(sFileType), StringEmptyText(sExcludeList)}
|
||||||
|
|
||||||
For i = 0 To sItems.Length - 1
|
For i = 0 To sItems.Length - 1
|
||||||
sItem = {sItems(i), sValues(i)}
|
sItem = {sItems(i), sValues(i)}
|
||||||
@@ -122,7 +157,9 @@ Public Class frmAddWizard
|
|||||||
oGame.FolderSave = bFolderBackup
|
oGame.FolderSave = bFolderBackup
|
||||||
oGame.FileType = sFileType
|
oGame.FileType = sFileType
|
||||||
oGame.AppendTimeStamp = bTimeStamp
|
oGame.AppendTimeStamp = bTimeStamp
|
||||||
|
oGame.BackupLimit = iLimit
|
||||||
oGame.ExcludeList = sExcludeList
|
oGame.ExcludeList = sExcludeList
|
||||||
|
oGame.ProcessPath = sProcessPath
|
||||||
|
|
||||||
Return oGame
|
Return oGame
|
||||||
End Function
|
End Function
|
||||||
@@ -490,6 +527,10 @@ Public Class frmAddWizard
|
|||||||
txtFileTypes.Clear()
|
txtFileTypes.Clear()
|
||||||
End Sub
|
End Sub
|
||||||
|
|
||||||
|
Private Sub chkTimeStamp_CheckedChanged(sender As Object, e As EventArgs) Handles chkTimeStamp.CheckedChanged
|
||||||
|
ShowHideLimit()
|
||||||
|
End Sub
|
||||||
|
|
||||||
Private Sub btnInclude_Click(sender As Object, e As EventArgs) Handles btnInclude.Click
|
Private Sub btnInclude_Click(sender As Object, e As EventArgs) Handles btnInclude.Click
|
||||||
OpenBuilder(frmAddWizard_Include, txtFileTypes)
|
OpenBuilder(frmAddWizard_Include, txtFileTypes)
|
||||||
UpdateBuilderLabel(txtFileTypes.Text, lblFileTypes)
|
UpdateBuilderLabel(txtFileTypes.Text, lblFileTypes)
|
||||||
@@ -499,4 +540,6 @@ Public Class frmAddWizard
|
|||||||
OpenBuilder(frmAddWizard_Exclude, txtExcludeList)
|
OpenBuilder(frmAddWizard_Exclude, txtExcludeList)
|
||||||
UpdateBuilderLabel(txtExcludeList.Text, lblExclude)
|
UpdateBuilderLabel(txtExcludeList.Text, lblExclude)
|
||||||
End Sub
|
End Sub
|
||||||
|
|
||||||
|
|
||||||
End Class
|
End Class
|
||||||
Generated
+186
-124
@@ -28,6 +28,9 @@ 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.chkCleanFolder = New System.Windows.Forms.CheckBox()
|
||||||
|
Me.lblLimit = New System.Windows.Forms.Label()
|
||||||
|
Me.nudLimit = New System.Windows.Forms.NumericUpDown()
|
||||||
Me.btnExclude = New System.Windows.Forms.Button()
|
Me.btnExclude = New System.Windows.Forms.Button()
|
||||||
Me.btnInclude = New System.Windows.Forms.Button()
|
Me.btnInclude = New System.Windows.Forms.Button()
|
||||||
Me.txtID = New System.Windows.Forms.TextBox()
|
Me.txtID = New System.Windows.Forms.TextBox()
|
||||||
@@ -61,18 +64,17 @@ Partial Class frmGameManager
|
|||||||
Me.lblHours = New System.Windows.Forms.Label()
|
Me.lblHours = New System.Windows.Forms.Label()
|
||||||
Me.btnTags = New System.Windows.Forms.Button()
|
Me.btnTags = New System.Windows.Forms.Button()
|
||||||
Me.grpStats = New System.Windows.Forms.GroupBox()
|
Me.grpStats = New System.Windows.Forms.GroupBox()
|
||||||
|
Me.cboRemoteBackup = New System.Windows.Forms.ComboBox()
|
||||||
|
Me.lblRestorePathData = New System.Windows.Forms.Label()
|
||||||
|
Me.lblBackupFileData = New System.Windows.Forms.Label()
|
||||||
|
Me.lblLocalBackupData = New System.Windows.Forms.Label()
|
||||||
Me.lblRestorePath = New System.Windows.Forms.Label()
|
Me.lblRestorePath = New System.Windows.Forms.Label()
|
||||||
Me.txtRestorePath = New System.Windows.Forms.TextBox()
|
|
||||||
Me.btnOpenRestorePath = New System.Windows.Forms.Button()
|
Me.btnOpenRestorePath = New System.Windows.Forms.Button()
|
||||||
Me.btnOpenBackupFile = New System.Windows.Forms.Button()
|
Me.btnOpenBackupFile = New System.Windows.Forms.Button()
|
||||||
Me.txtFileSize = New System.Windows.Forms.TextBox()
|
|
||||||
Me.btnDeleteBackup = New System.Windows.Forms.Button()
|
Me.btnDeleteBackup = New System.Windows.Forms.Button()
|
||||||
Me.lblFileSize = New System.Windows.Forms.Label()
|
Me.lblBackupFile = New System.Windows.Forms.Label()
|
||||||
Me.lblSync = New System.Windows.Forms.Label()
|
Me.lblRemote = New System.Windows.Forms.Label()
|
||||||
Me.txtCurrentBackup = New System.Windows.Forms.TextBox()
|
Me.lblLocalData = New System.Windows.Forms.Label()
|
||||||
Me.lblCurrentBackup = New System.Windows.Forms.Label()
|
|
||||||
Me.txtLocalBackup = New System.Windows.Forms.TextBox()
|
|
||||||
Me.lblLastBackup = New System.Windows.Forms.Label()
|
|
||||||
Me.btnMarkAsRestored = New System.Windows.Forms.Button()
|
Me.btnMarkAsRestored = New System.Windows.Forms.Button()
|
||||||
Me.btnRestore = New System.Windows.Forms.Button()
|
Me.btnRestore = New System.Windows.Forms.Button()
|
||||||
Me.btnSave = New System.Windows.Forms.Button()
|
Me.btnSave = New System.Windows.Forms.Button()
|
||||||
@@ -91,13 +93,18 @@ Partial Class frmGameManager
|
|||||||
Me.cmsFile = New System.Windows.Forms.ToolStripMenuItem()
|
Me.cmsFile = New System.Windows.Forms.ToolStripMenuItem()
|
||||||
Me.txtQuickFilter = New System.Windows.Forms.TextBox()
|
Me.txtQuickFilter = New System.Windows.Forms.TextBox()
|
||||||
Me.lblQuickFilter = New System.Windows.Forms.Label()
|
Me.lblQuickFilter = New System.Windows.Forms.Label()
|
||||||
|
Me.cmsDeleteBackup = New System.Windows.Forms.ContextMenuStrip(Me.components)
|
||||||
|
Me.cmsDeleteOne = New System.Windows.Forms.ToolStripMenuItem()
|
||||||
|
Me.cmsDeleteAll = New System.Windows.Forms.ToolStripMenuItem()
|
||||||
Me.grpConfig.SuspendLayout()
|
Me.grpConfig.SuspendLayout()
|
||||||
|
CType(Me.nudLimit, System.ComponentModel.ISupportInitialize).BeginInit()
|
||||||
Me.grpExtra.SuspendLayout()
|
Me.grpExtra.SuspendLayout()
|
||||||
CType(Me.pbIcon, System.ComponentModel.ISupportInitialize).BeginInit()
|
CType(Me.pbIcon, System.ComponentModel.ISupportInitialize).BeginInit()
|
||||||
CType(Me.nudHours, System.ComponentModel.ISupportInitialize).BeginInit()
|
CType(Me.nudHours, System.ComponentModel.ISupportInitialize).BeginInit()
|
||||||
Me.grpStats.SuspendLayout()
|
Me.grpStats.SuspendLayout()
|
||||||
Me.grpFilter.SuspendLayout()
|
Me.grpFilter.SuspendLayout()
|
||||||
Me.cmsImport.SuspendLayout()
|
Me.cmsImport.SuspendLayout()
|
||||||
|
Me.cmsDeleteBackup.SuspendLayout()
|
||||||
Me.SuspendLayout()
|
Me.SuspendLayout()
|
||||||
'
|
'
|
||||||
'btnAdd
|
'btnAdd
|
||||||
@@ -125,26 +132,29 @@ Partial Class frmGameManager
|
|||||||
'btnBackup
|
'btnBackup
|
||||||
'
|
'
|
||||||
Me.btnBackup.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
|
Me.btnBackup.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
|
||||||
Me.btnBackup.Location = New System.Drawing.Point(616, 525)
|
Me.btnBackup.Location = New System.Drawing.Point(616, 526)
|
||||||
Me.btnBackup.Name = "btnBackup"
|
Me.btnBackup.Name = "btnBackup"
|
||||||
Me.btnBackup.Size = New System.Drawing.Size(75, 23)
|
Me.btnBackup.Size = New System.Drawing.Size(75, 23)
|
||||||
Me.btnBackup.TabIndex = 18
|
Me.btnBackup.TabIndex = 19
|
||||||
Me.btnBackup.Text = "&Backup"
|
Me.btnBackup.Text = "&Backup"
|
||||||
Me.btnBackup.UseVisualStyleBackColor = True
|
Me.btnBackup.UseVisualStyleBackColor = True
|
||||||
'
|
'
|
||||||
'btnClose
|
'btnClose
|
||||||
'
|
'
|
||||||
Me.btnClose.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
|
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(697, 525)
|
Me.btnClose.Location = New System.Drawing.Point(697, 526)
|
||||||
Me.btnClose.Name = "btnClose"
|
Me.btnClose.Name = "btnClose"
|
||||||
Me.btnClose.Size = New System.Drawing.Size(75, 23)
|
Me.btnClose.Size = New System.Drawing.Size(75, 23)
|
||||||
Me.btnClose.TabIndex = 19
|
Me.btnClose.TabIndex = 20
|
||||||
Me.btnClose.Text = "C&lose"
|
Me.btnClose.Text = "C&lose"
|
||||||
Me.btnClose.UseVisualStyleBackColor = True
|
Me.btnClose.UseVisualStyleBackColor = True
|
||||||
'
|
'
|
||||||
'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.chkCleanFolder)
|
||||||
|
Me.grpConfig.Controls.Add(Me.lblLimit)
|
||||||
|
Me.grpConfig.Controls.Add(Me.nudLimit)
|
||||||
Me.grpConfig.Controls.Add(Me.btnExclude)
|
Me.grpConfig.Controls.Add(Me.btnExclude)
|
||||||
Me.grpConfig.Controls.Add(Me.btnInclude)
|
Me.grpConfig.Controls.Add(Me.btnInclude)
|
||||||
Me.grpConfig.Controls.Add(Me.txtID)
|
Me.grpConfig.Controls.Add(Me.txtID)
|
||||||
@@ -168,12 +178,42 @@ Partial Class frmGameManager
|
|||||||
Me.grpConfig.TabStop = False
|
Me.grpConfig.TabStop = False
|
||||||
Me.grpConfig.Text = "Configuration"
|
Me.grpConfig.Text = "Configuration"
|
||||||
'
|
'
|
||||||
|
'chkCleanFolder
|
||||||
|
'
|
||||||
|
Me.chkCleanFolder.AutoSize = True
|
||||||
|
Me.chkCleanFolder.Location = New System.Drawing.Point(329, 101)
|
||||||
|
Me.chkCleanFolder.Name = "chkCleanFolder"
|
||||||
|
Me.chkCleanFolder.Size = New System.Drawing.Size(136, 17)
|
||||||
|
Me.chkCleanFolder.TabIndex = 11
|
||||||
|
Me.chkCleanFolder.Text = "Delete folder on restore"
|
||||||
|
Me.chkCleanFolder.UseVisualStyleBackColor = True
|
||||||
|
'
|
||||||
|
'lblLimit
|
||||||
|
'
|
||||||
|
Me.lblLimit.AutoSize = True
|
||||||
|
Me.lblLimit.Location = New System.Drawing.Point(375, 130)
|
||||||
|
Me.lblLimit.Name = "lblLimit"
|
||||||
|
Me.lblLimit.Size = New System.Drawing.Size(68, 13)
|
||||||
|
Me.lblLimit.TabIndex = 14
|
||||||
|
Me.lblLimit.Text = "Backup Limit"
|
||||||
|
Me.lblLimit.Visible = False
|
||||||
|
'
|
||||||
|
'nudLimit
|
||||||
|
'
|
||||||
|
Me.nudLimit.Location = New System.Drawing.Point(329, 128)
|
||||||
|
Me.nudLimit.Minimum = New Decimal(New Integer() {2, 0, 0, 0})
|
||||||
|
Me.nudLimit.Name = "nudLimit"
|
||||||
|
Me.nudLimit.Size = New System.Drawing.Size(40, 20)
|
||||||
|
Me.nudLimit.TabIndex = 13
|
||||||
|
Me.nudLimit.Value = New Decimal(New Integer() {2, 0, 0, 0})
|
||||||
|
Me.nudLimit.Visible = False
|
||||||
|
'
|
||||||
'btnExclude
|
'btnExclude
|
||||||
'
|
'
|
||||||
Me.btnExclude.Location = New System.Drawing.Point(9, 125)
|
Me.btnExclude.Location = New System.Drawing.Point(9, 125)
|
||||||
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 = 13
|
Me.btnExclude.TabIndex = 9
|
||||||
Me.btnExclude.Text = "E&xclude Items..."
|
Me.btnExclude.Text = "E&xclude Items..."
|
||||||
Me.btnExclude.UseVisualStyleBackColor = True
|
Me.btnExclude.UseVisualStyleBackColor = True
|
||||||
'
|
'
|
||||||
@@ -182,7 +222,7 @@ Partial Class frmGameManager
|
|||||||
Me.btnInclude.Location = New System.Drawing.Point(9, 97)
|
Me.btnInclude.Location = New System.Drawing.Point(9, 97)
|
||||||
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 = 10
|
Me.btnInclude.TabIndex = 8
|
||||||
Me.btnInclude.Text = "In&clude Items..."
|
Me.btnInclude.Text = "In&clude Items..."
|
||||||
Me.btnInclude.UseVisualStyleBackColor = True
|
Me.btnInclude.UseVisualStyleBackColor = True
|
||||||
'
|
'
|
||||||
@@ -192,7 +232,7 @@ Partial Class frmGameManager
|
|||||||
Me.txtID.Location = New System.Drawing.Point(489, 19)
|
Me.txtID.Location = New System.Drawing.Point(489, 19)
|
||||||
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 = 16
|
Me.txtID.TabIndex = 0
|
||||||
Me.txtID.TabStop = False
|
Me.txtID.TabStop = False
|
||||||
Me.txtID.Visible = False
|
Me.txtID.Visible = False
|
||||||
'
|
'
|
||||||
@@ -201,7 +241,7 @@ Partial Class frmGameManager
|
|||||||
Me.btnSavePathBrowse.Location = New System.Drawing.Point(489, 71)
|
Me.btnSavePathBrowse.Location = New System.Drawing.Point(489, 71)
|
||||||
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 = 9
|
Me.btnSavePathBrowse.TabIndex = 7
|
||||||
Me.btnSavePathBrowse.Text = "..."
|
Me.btnSavePathBrowse.Text = "..."
|
||||||
Me.btnSavePathBrowse.UseVisualStyleBackColor = True
|
Me.btnSavePathBrowse.UseVisualStyleBackColor = True
|
||||||
'
|
'
|
||||||
@@ -210,7 +250,7 @@ Partial Class frmGameManager
|
|||||||
Me.btnProcessBrowse.Location = New System.Drawing.Point(489, 45)
|
Me.btnProcessBrowse.Location = New System.Drawing.Point(489, 45)
|
||||||
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 = 7
|
Me.btnProcessBrowse.TabIndex = 5
|
||||||
Me.btnProcessBrowse.Text = "..."
|
Me.btnProcessBrowse.Text = "..."
|
||||||
Me.btnProcessBrowse.UseVisualStyleBackColor = True
|
Me.btnProcessBrowse.UseVisualStyleBackColor = True
|
||||||
'
|
'
|
||||||
@@ -243,18 +283,18 @@ Partial Class frmGameManager
|
|||||||
'
|
'
|
||||||
'txtExclude
|
'txtExclude
|
||||||
'
|
'
|
||||||
Me.txtExclude.Location = New System.Drawing.Point(363, 128)
|
Me.txtExclude.Location = New System.Drawing.Point(489, 122)
|
||||||
Me.txtExclude.Name = "txtExclude"
|
Me.txtExclude.Name = "txtExclude"
|
||||||
Me.txtExclude.Size = New System.Drawing.Size(156, 20)
|
Me.txtExclude.Size = New System.Drawing.Size(30, 20)
|
||||||
Me.txtExclude.TabIndex = 0
|
Me.txtExclude.TabIndex = 0
|
||||||
Me.txtExclude.TabStop = False
|
Me.txtExclude.TabStop = False
|
||||||
Me.txtExclude.Visible = False
|
Me.txtExclude.Visible = False
|
||||||
'
|
'
|
||||||
'txtFileType
|
'txtFileType
|
||||||
'
|
'
|
||||||
Me.txtFileType.Location = New System.Drawing.Point(363, 99)
|
Me.txtFileType.Location = New System.Drawing.Point(489, 99)
|
||||||
Me.txtFileType.Name = "txtFileType"
|
Me.txtFileType.Name = "txtFileType"
|
||||||
Me.txtFileType.Size = New System.Drawing.Size(156, 20)
|
Me.txtFileType.Size = New System.Drawing.Size(30, 20)
|
||||||
Me.txtFileType.TabIndex = 0
|
Me.txtFileType.TabIndex = 0
|
||||||
Me.txtFileType.TabStop = False
|
Me.txtFileType.TabStop = False
|
||||||
Me.txtFileType.Visible = False
|
Me.txtFileType.Visible = False
|
||||||
@@ -264,9 +304,9 @@ Partial Class frmGameManager
|
|||||||
Me.chkTimeStamp.AutoSize = True
|
Me.chkTimeStamp.AutoSize = True
|
||||||
Me.chkTimeStamp.Location = New System.Drawing.Point(190, 129)
|
Me.chkTimeStamp.Location = New System.Drawing.Point(190, 129)
|
||||||
Me.chkTimeStamp.Name = "chkTimeStamp"
|
Me.chkTimeStamp.Name = "chkTimeStamp"
|
||||||
Me.chkTimeStamp.Size = New System.Drawing.Size(146, 17)
|
Me.chkTimeStamp.Size = New System.Drawing.Size(133, 17)
|
||||||
Me.chkTimeStamp.TabIndex = 14
|
Me.chkTimeStamp.TabIndex = 12
|
||||||
Me.chkTimeStamp.Text = "Time stamp each backup"
|
Me.chkTimeStamp.Text = "Save multiple backups"
|
||||||
Me.chkTimeStamp.UseVisualStyleBackColor = True
|
Me.chkTimeStamp.UseVisualStyleBackColor = True
|
||||||
'
|
'
|
||||||
'chkFolderSave
|
'chkFolderSave
|
||||||
@@ -275,7 +315,7 @@ Partial Class frmGameManager
|
|||||||
Me.chkFolderSave.Location = New System.Drawing.Point(190, 101)
|
Me.chkFolderSave.Location = New System.Drawing.Point(190, 101)
|
||||||
Me.chkFolderSave.Name = "chkFolderSave"
|
Me.chkFolderSave.Name = "chkFolderSave"
|
||||||
Me.chkFolderSave.Size = New System.Drawing.Size(109, 17)
|
Me.chkFolderSave.Size = New System.Drawing.Size(109, 17)
|
||||||
Me.chkFolderSave.TabIndex = 11
|
Me.chkFolderSave.TabIndex = 10
|
||||||
Me.chkFolderSave.Text = "Save entire folder"
|
Me.chkFolderSave.Text = "Save entire folder"
|
||||||
Me.chkFolderSave.UseVisualStyleBackColor = True
|
Me.chkFolderSave.UseVisualStyleBackColor = True
|
||||||
'
|
'
|
||||||
@@ -284,30 +324,30 @@ Partial Class frmGameManager
|
|||||||
Me.txtSavePath.Location = New System.Drawing.Point(69, 71)
|
Me.txtSavePath.Location = New System.Drawing.Point(69, 71)
|
||||||
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 = 8
|
Me.txtSavePath.TabIndex = 6
|
||||||
'
|
'
|
||||||
'txtProcess
|
'txtProcess
|
||||||
'
|
'
|
||||||
Me.txtProcess.Location = New System.Drawing.Point(69, 45)
|
Me.txtProcess.Location = New System.Drawing.Point(69, 45)
|
||||||
Me.txtProcess.Name = "txtProcess"
|
Me.txtProcess.Name = "txtProcess"
|
||||||
Me.txtProcess.Size = New System.Drawing.Size(414, 20)
|
Me.txtProcess.Size = New System.Drawing.Size(414, 20)
|
||||||
Me.txtProcess.TabIndex = 6
|
Me.txtProcess.TabIndex = 4
|
||||||
'
|
'
|
||||||
'txtName
|
'txtName
|
||||||
'
|
'
|
||||||
Me.txtName.Location = New System.Drawing.Point(69, 19)
|
Me.txtName.Location = New System.Drawing.Point(69, 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(414, 20)
|
||||||
Me.txtName.TabIndex = 5
|
Me.txtName.TabIndex = 3
|
||||||
'
|
'
|
||||||
'chkMonitorOnly
|
'chkMonitorOnly
|
||||||
'
|
'
|
||||||
Me.chkMonitorOnly.AutoSize = True
|
Me.chkMonitorOnly.AutoSize = True
|
||||||
Me.chkMonitorOnly.Location = New System.Drawing.Point(362, 340)
|
Me.chkMonitorOnly.Location = New System.Drawing.Point(362, 340)
|
||||||
Me.chkMonitorOnly.Name = "chkMonitorOnly"
|
Me.chkMonitorOnly.Name = "chkMonitorOnly"
|
||||||
Me.chkMonitorOnly.Size = New System.Drawing.Size(145, 17)
|
Me.chkMonitorOnly.Size = New System.Drawing.Size(83, 17)
|
||||||
Me.chkMonitorOnly.TabIndex = 11
|
Me.chkMonitorOnly.TabIndex = 11
|
||||||
Me.chkMonitorOnly.Text = "Monitor only (No backup)"
|
Me.chkMonitorOnly.Text = "Monitor only"
|
||||||
Me.chkMonitorOnly.UseVisualStyleBackColor = True
|
Me.chkMonitorOnly.UseVisualStyleBackColor = True
|
||||||
'
|
'
|
||||||
'grpExtra
|
'grpExtra
|
||||||
@@ -468,18 +508,17 @@ Partial Class frmGameManager
|
|||||||
'grpStats
|
'grpStats
|
||||||
'
|
'
|
||||||
Me.grpStats.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
|
Me.grpStats.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
|
||||||
|
Me.grpStats.Controls.Add(Me.cboRemoteBackup)
|
||||||
|
Me.grpStats.Controls.Add(Me.lblRestorePathData)
|
||||||
|
Me.grpStats.Controls.Add(Me.lblBackupFileData)
|
||||||
|
Me.grpStats.Controls.Add(Me.lblLocalBackupData)
|
||||||
Me.grpStats.Controls.Add(Me.lblRestorePath)
|
Me.grpStats.Controls.Add(Me.lblRestorePath)
|
||||||
Me.grpStats.Controls.Add(Me.txtRestorePath)
|
|
||||||
Me.grpStats.Controls.Add(Me.btnOpenRestorePath)
|
Me.grpStats.Controls.Add(Me.btnOpenRestorePath)
|
||||||
Me.grpStats.Controls.Add(Me.btnOpenBackupFile)
|
Me.grpStats.Controls.Add(Me.btnOpenBackupFile)
|
||||||
Me.grpStats.Controls.Add(Me.txtFileSize)
|
|
||||||
Me.grpStats.Controls.Add(Me.btnDeleteBackup)
|
Me.grpStats.Controls.Add(Me.btnDeleteBackup)
|
||||||
Me.grpStats.Controls.Add(Me.lblFileSize)
|
Me.grpStats.Controls.Add(Me.lblBackupFile)
|
||||||
Me.grpStats.Controls.Add(Me.lblSync)
|
Me.grpStats.Controls.Add(Me.lblRemote)
|
||||||
Me.grpStats.Controls.Add(Me.txtCurrentBackup)
|
Me.grpStats.Controls.Add(Me.lblLocalData)
|
||||||
Me.grpStats.Controls.Add(Me.lblCurrentBackup)
|
|
||||||
Me.grpStats.Controls.Add(Me.txtLocalBackup)
|
|
||||||
Me.grpStats.Controls.Add(Me.lblLastBackup)
|
|
||||||
Me.grpStats.Location = New System.Drawing.Point(247, 365)
|
Me.grpStats.Location = New System.Drawing.Point(247, 365)
|
||||||
Me.grpStats.Name = "grpStats"
|
Me.grpStats.Name = "grpStats"
|
||||||
Me.grpStats.Size = New System.Drawing.Size(525, 154)
|
Me.grpStats.Size = New System.Drawing.Size(525, 154)
|
||||||
@@ -487,6 +526,48 @@ Partial Class frmGameManager
|
|||||||
Me.grpStats.TabStop = False
|
Me.grpStats.TabStop = False
|
||||||
Me.grpStats.Text = "Backup Information"
|
Me.grpStats.Text = "Backup Information"
|
||||||
'
|
'
|
||||||
|
'cboRemoteBackup
|
||||||
|
'
|
||||||
|
Me.cboRemoteBackup.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList
|
||||||
|
Me.cboRemoteBackup.FormattingEnabled = True
|
||||||
|
Me.cboRemoteBackup.Location = New System.Drawing.Point(96, 24)
|
||||||
|
Me.cboRemoteBackup.Name = "cboRemoteBackup"
|
||||||
|
Me.cboRemoteBackup.Size = New System.Drawing.Size(387, 21)
|
||||||
|
Me.cboRemoteBackup.TabIndex = 12
|
||||||
|
'
|
||||||
|
'lblRestorePathData
|
||||||
|
'
|
||||||
|
Me.lblRestorePathData.AutoEllipsis = True
|
||||||
|
Me.lblRestorePathData.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
|
||||||
|
Me.lblRestorePathData.Location = New System.Drawing.Point(96, 98)
|
||||||
|
Me.lblRestorePathData.Name = "lblRestorePathData"
|
||||||
|
Me.lblRestorePathData.Size = New System.Drawing.Size(387, 20)
|
||||||
|
Me.lblRestorePathData.TabIndex = 7
|
||||||
|
Me.lblRestorePathData.Tag = "wipe"
|
||||||
|
Me.lblRestorePathData.TextAlign = System.Drawing.ContentAlignment.MiddleLeft
|
||||||
|
'
|
||||||
|
'lblBackupFileData
|
||||||
|
'
|
||||||
|
Me.lblBackupFileData.AutoEllipsis = True
|
||||||
|
Me.lblBackupFileData.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
|
||||||
|
Me.lblBackupFileData.Location = New System.Drawing.Point(96, 73)
|
||||||
|
Me.lblBackupFileData.Name = "lblBackupFileData"
|
||||||
|
Me.lblBackupFileData.Size = New System.Drawing.Size(387, 20)
|
||||||
|
Me.lblBackupFileData.TabIndex = 6
|
||||||
|
Me.lblBackupFileData.Tag = "wipe"
|
||||||
|
Me.lblBackupFileData.TextAlign = System.Drawing.ContentAlignment.MiddleLeft
|
||||||
|
'
|
||||||
|
'lblLocalBackupData
|
||||||
|
'
|
||||||
|
Me.lblLocalBackupData.AutoEllipsis = True
|
||||||
|
Me.lblLocalBackupData.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
|
||||||
|
Me.lblLocalBackupData.Location = New System.Drawing.Point(96, 49)
|
||||||
|
Me.lblLocalBackupData.Name = "lblLocalBackupData"
|
||||||
|
Me.lblLocalBackupData.Size = New System.Drawing.Size(387, 20)
|
||||||
|
Me.lblLocalBackupData.TabIndex = 5
|
||||||
|
Me.lblLocalBackupData.Tag = "wipe"
|
||||||
|
Me.lblLocalBackupData.TextAlign = System.Drawing.ContentAlignment.MiddleLeft
|
||||||
|
'
|
||||||
'lblRestorePath
|
'lblRestorePath
|
||||||
'
|
'
|
||||||
Me.lblRestorePath.AutoSize = True
|
Me.lblRestorePath.AutoSize = True
|
||||||
@@ -496,122 +577,77 @@ Partial Class frmGameManager
|
|||||||
Me.lblRestorePath.TabIndex = 3
|
Me.lblRestorePath.TabIndex = 3
|
||||||
Me.lblRestorePath.Text = "Restore Path:"
|
Me.lblRestorePath.Text = "Restore Path:"
|
||||||
'
|
'
|
||||||
'txtRestorePath
|
|
||||||
'
|
|
||||||
Me.txtRestorePath.Location = New System.Drawing.Point(96, 99)
|
|
||||||
Me.txtRestorePath.Name = "txtRestorePath"
|
|
||||||
Me.txtRestorePath.ReadOnly = True
|
|
||||||
Me.txtRestorePath.Size = New System.Drawing.Size(387, 20)
|
|
||||||
Me.txtRestorePath.TabIndex = 8
|
|
||||||
'
|
|
||||||
'btnOpenRestorePath
|
'btnOpenRestorePath
|
||||||
'
|
'
|
||||||
Me.btnOpenRestorePath.Location = New System.Drawing.Point(339, 125)
|
Me.btnOpenRestorePath.Location = New System.Drawing.Point(369, 125)
|
||||||
Me.btnOpenRestorePath.Name = "btnOpenRestorePath"
|
Me.btnOpenRestorePath.Name = "btnOpenRestorePath"
|
||||||
Me.btnOpenRestorePath.Size = New System.Drawing.Size(114, 23)
|
Me.btnOpenRestorePath.Size = New System.Drawing.Size(114, 23)
|
||||||
Me.btnOpenRestorePath.TabIndex = 12
|
Me.btnOpenRestorePath.TabIndex = 11
|
||||||
Me.btnOpenRestorePath.Text = "O&pen Restore Path"
|
Me.btnOpenRestorePath.Text = "O&pen Restore Path"
|
||||||
Me.btnOpenRestorePath.UseVisualStyleBackColor = True
|
Me.btnOpenRestorePath.UseVisualStyleBackColor = True
|
||||||
'
|
'
|
||||||
'btnOpenBackupFile
|
'btnOpenBackupFile
|
||||||
'
|
'
|
||||||
Me.btnOpenBackupFile.Location = New System.Drawing.Point(216, 125)
|
Me.btnOpenBackupFile.Location = New System.Drawing.Point(249, 125)
|
||||||
Me.btnOpenBackupFile.Name = "btnOpenBackupFile"
|
Me.btnOpenBackupFile.Name = "btnOpenBackupFile"
|
||||||
Me.btnOpenBackupFile.Size = New System.Drawing.Size(114, 23)
|
Me.btnOpenBackupFile.Size = New System.Drawing.Size(114, 23)
|
||||||
Me.btnOpenBackupFile.TabIndex = 11
|
Me.btnOpenBackupFile.TabIndex = 10
|
||||||
Me.btnOpenBackupFile.Text = "&Open Backup File"
|
Me.btnOpenBackupFile.Text = "&Open Backup File"
|
||||||
Me.btnOpenBackupFile.UseVisualStyleBackColor = True
|
Me.btnOpenBackupFile.UseVisualStyleBackColor = True
|
||||||
'
|
'
|
||||||
'txtFileSize
|
|
||||||
'
|
|
||||||
Me.txtFileSize.Location = New System.Drawing.Point(96, 74)
|
|
||||||
Me.txtFileSize.Name = "txtFileSize"
|
|
||||||
Me.txtFileSize.ReadOnly = True
|
|
||||||
Me.txtFileSize.Size = New System.Drawing.Size(387, 20)
|
|
||||||
Me.txtFileSize.TabIndex = 7
|
|
||||||
Me.txtFileSize.TabStop = False
|
|
||||||
'
|
|
||||||
'btnDeleteBackup
|
'btnDeleteBackup
|
||||||
'
|
'
|
||||||
Me.btnDeleteBackup.Location = New System.Drawing.Point(96, 125)
|
Me.btnDeleteBackup.Location = New System.Drawing.Point(129, 125)
|
||||||
Me.btnDeleteBackup.Name = "btnDeleteBackup"
|
Me.btnDeleteBackup.Name = "btnDeleteBackup"
|
||||||
Me.btnDeleteBackup.Size = New System.Drawing.Size(114, 23)
|
Me.btnDeleteBackup.Size = New System.Drawing.Size(114, 23)
|
||||||
Me.btnDeleteBackup.TabIndex = 10
|
Me.btnDeleteBackup.TabIndex = 8
|
||||||
Me.btnDeleteBackup.Text = "&Delete Backup"
|
Me.btnDeleteBackup.Text = "&Delete Backup"
|
||||||
Me.btnDeleteBackup.UseVisualStyleBackColor = True
|
Me.btnDeleteBackup.UseVisualStyleBackColor = True
|
||||||
'
|
'
|
||||||
'lblFileSize
|
'lblBackupFile
|
||||||
'
|
'
|
||||||
Me.lblFileSize.AutoSize = True
|
Me.lblBackupFile.AutoSize = True
|
||||||
Me.lblFileSize.Location = New System.Drawing.Point(6, 77)
|
Me.lblBackupFile.Location = New System.Drawing.Point(6, 77)
|
||||||
Me.lblFileSize.Name = "lblFileSize"
|
Me.lblBackupFile.Name = "lblBackupFile"
|
||||||
Me.lblFileSize.Size = New System.Drawing.Size(70, 13)
|
Me.lblBackupFile.Size = New System.Drawing.Size(66, 13)
|
||||||
Me.lblFileSize.TabIndex = 2
|
Me.lblBackupFile.TabIndex = 2
|
||||||
Me.lblFileSize.Text = "Backup Size:"
|
Me.lblBackupFile.Text = "Backup File:"
|
||||||
'
|
'
|
||||||
'lblSync
|
'lblRemote
|
||||||
'
|
'
|
||||||
Me.lblSync.AutoSize = True
|
Me.lblRemote.AutoSize = True
|
||||||
Me.lblSync.Location = New System.Drawing.Point(6, 130)
|
Me.lblRemote.Location = New System.Drawing.Point(6, 27)
|
||||||
Me.lblSync.Name = "lblSync"
|
Me.lblRemote.Name = "lblRemote"
|
||||||
Me.lblSync.Size = New System.Drawing.Size(62, 13)
|
Me.lblRemote.Size = New System.Drawing.Size(73, 13)
|
||||||
Me.lblSync.TabIndex = 4
|
Me.lblRemote.TabIndex = 0
|
||||||
Me.lblSync.Text = "Up to Date!"
|
Me.lblRemote.Text = "Backup Data:"
|
||||||
Me.lblSync.Visible = False
|
|
||||||
'
|
'
|
||||||
'txtCurrentBackup
|
'lblLocalData
|
||||||
'
|
'
|
||||||
Me.txtCurrentBackup.Location = New System.Drawing.Point(96, 24)
|
Me.lblLocalData.AutoSize = True
|
||||||
Me.txtCurrentBackup.Name = "txtCurrentBackup"
|
Me.lblLocalData.Location = New System.Drawing.Point(6, 53)
|
||||||
Me.txtCurrentBackup.ReadOnly = True
|
Me.lblLocalData.Name = "lblLocalData"
|
||||||
Me.txtCurrentBackup.Size = New System.Drawing.Size(387, 20)
|
Me.lblLocalData.Size = New System.Drawing.Size(62, 13)
|
||||||
Me.txtCurrentBackup.TabIndex = 5
|
Me.lblLocalData.TabIndex = 1
|
||||||
Me.txtCurrentBackup.TabStop = False
|
Me.lblLocalData.Text = "Local Data:"
|
||||||
'
|
|
||||||
'lblCurrentBackup
|
|
||||||
'
|
|
||||||
Me.lblCurrentBackup.AutoSize = True
|
|
||||||
Me.lblCurrentBackup.Location = New System.Drawing.Point(6, 27)
|
|
||||||
Me.lblCurrentBackup.Name = "lblCurrentBackup"
|
|
||||||
Me.lblCurrentBackup.Size = New System.Drawing.Size(84, 13)
|
|
||||||
Me.lblCurrentBackup.TabIndex = 0
|
|
||||||
Me.lblCurrentBackup.Text = "Current Backup:"
|
|
||||||
'
|
|
||||||
'txtLocalBackup
|
|
||||||
'
|
|
||||||
Me.txtLocalBackup.Location = New System.Drawing.Point(96, 50)
|
|
||||||
Me.txtLocalBackup.Name = "txtLocalBackup"
|
|
||||||
Me.txtLocalBackup.ReadOnly = True
|
|
||||||
Me.txtLocalBackup.Size = New System.Drawing.Size(387, 20)
|
|
||||||
Me.txtLocalBackup.TabIndex = 6
|
|
||||||
Me.txtLocalBackup.TabStop = False
|
|
||||||
'
|
|
||||||
'lblLastBackup
|
|
||||||
'
|
|
||||||
Me.lblLastBackup.AutoSize = True
|
|
||||||
Me.lblLastBackup.Location = New System.Drawing.Point(6, 53)
|
|
||||||
Me.lblLastBackup.Name = "lblLastBackup"
|
|
||||||
Me.lblLastBackup.Size = New System.Drawing.Size(76, 13)
|
|
||||||
Me.lblLastBackup.TabIndex = 1
|
|
||||||
Me.lblLastBackup.Text = "Local Backup:"
|
|
||||||
'
|
'
|
||||||
'btnMarkAsRestored
|
'btnMarkAsRestored
|
||||||
'
|
'
|
||||||
Me.btnMarkAsRestored.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
|
Me.btnMarkAsRestored.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
|
||||||
Me.btnMarkAsRestored.Location = New System.Drawing.Point(429, 525)
|
Me.btnMarkAsRestored.Location = New System.Drawing.Point(429, 526)
|
||||||
Me.btnMarkAsRestored.Name = "btnMarkAsRestored"
|
Me.btnMarkAsRestored.Name = "btnMarkAsRestored"
|
||||||
Me.btnMarkAsRestored.Size = New System.Drawing.Size(100, 23)
|
Me.btnMarkAsRestored.Size = New System.Drawing.Size(100, 23)
|
||||||
Me.btnMarkAsRestored.TabIndex = 16
|
Me.btnMarkAsRestored.TabIndex = 17
|
||||||
Me.btnMarkAsRestored.Text = "&Mark as Restored"
|
Me.btnMarkAsRestored.Text = "&Mark as Restored"
|
||||||
Me.btnMarkAsRestored.UseVisualStyleBackColor = True
|
Me.btnMarkAsRestored.UseVisualStyleBackColor = True
|
||||||
'
|
'
|
||||||
'btnRestore
|
'btnRestore
|
||||||
'
|
'
|
||||||
Me.btnRestore.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
|
Me.btnRestore.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
|
||||||
Me.btnRestore.Location = New System.Drawing.Point(535, 525)
|
Me.btnRestore.Location = New System.Drawing.Point(535, 526)
|
||||||
Me.btnRestore.Name = "btnRestore"
|
Me.btnRestore.Name = "btnRestore"
|
||||||
Me.btnRestore.Size = New System.Drawing.Size(75, 23)
|
Me.btnRestore.Size = New System.Drawing.Size(75, 23)
|
||||||
Me.btnRestore.TabIndex = 17
|
Me.btnRestore.TabIndex = 18
|
||||||
Me.btnRestore.Text = "&Restore"
|
Me.btnRestore.Text = "&Restore"
|
||||||
Me.btnRestore.UseVisualStyleBackColor = True
|
Me.btnRestore.UseVisualStyleBackColor = True
|
||||||
'
|
'
|
||||||
@@ -694,10 +730,10 @@ Partial Class frmGameManager
|
|||||||
Me.optPendingRestores.AutoSize = True
|
Me.optPendingRestores.AutoSize = True
|
||||||
Me.optPendingRestores.Location = New System.Drawing.Point(6, 64)
|
Me.optPendingRestores.Location = New System.Drawing.Point(6, 64)
|
||||||
Me.optPendingRestores.Name = "optPendingRestores"
|
Me.optPendingRestores.Name = "optPendingRestores"
|
||||||
Me.optPendingRestores.Size = New System.Drawing.Size(122, 17)
|
Me.optPendingRestores.Size = New System.Drawing.Size(134, 17)
|
||||||
Me.optPendingRestores.TabIndex = 2
|
Me.optPendingRestores.TabIndex = 2
|
||||||
Me.optPendingRestores.TabStop = True
|
Me.optPendingRestores.TabStop = True
|
||||||
Me.optPendingRestores.Text = "New Saves Pending"
|
Me.optPendingRestores.Text = "New Backups Pending"
|
||||||
Me.optPendingRestores.UseVisualStyleBackColor = True
|
Me.optPendingRestores.UseVisualStyleBackColor = True
|
||||||
'
|
'
|
||||||
'optAllGames
|
'optAllGames
|
||||||
@@ -764,6 +800,25 @@ Partial Class frmGameManager
|
|||||||
Me.lblQuickFilter.TabIndex = 1
|
Me.lblQuickFilter.TabIndex = 1
|
||||||
Me.lblQuickFilter.Text = "Quick Filter:"
|
Me.lblQuickFilter.Text = "Quick Filter:"
|
||||||
'
|
'
|
||||||
|
'cmsDeleteBackup
|
||||||
|
'
|
||||||
|
Me.cmsDeleteBackup.Items.AddRange(New System.Windows.Forms.ToolStripItem() {Me.cmsDeleteOne, Me.cmsDeleteAll})
|
||||||
|
Me.cmsDeleteBackup.Name = "cmsDeleteBackup"
|
||||||
|
Me.cmsDeleteBackup.ShowImageMargin = False
|
||||||
|
Me.cmsDeleteBackup.Size = New System.Drawing.Size(115, 48)
|
||||||
|
'
|
||||||
|
'cmsDeleteOne
|
||||||
|
'
|
||||||
|
Me.cmsDeleteOne.Name = "cmsDeleteOne"
|
||||||
|
Me.cmsDeleteOne.Size = New System.Drawing.Size(114, 22)
|
||||||
|
Me.cmsDeleteOne.Text = "&Selected File"
|
||||||
|
'
|
||||||
|
'cmsDeleteAll
|
||||||
|
'
|
||||||
|
Me.cmsDeleteAll.Name = "cmsDeleteAll"
|
||||||
|
Me.cmsDeleteAll.Size = New System.Drawing.Size(114, 22)
|
||||||
|
Me.cmsDeleteAll.Text = "&All Files"
|
||||||
|
'
|
||||||
'frmGameManager
|
'frmGameManager
|
||||||
'
|
'
|
||||||
Me.AutoScaleDimensions = New System.Drawing.SizeF(6.0!, 13.0!)
|
Me.AutoScaleDimensions = New System.Drawing.SizeF(6.0!, 13.0!)
|
||||||
@@ -798,6 +853,7 @@ Partial Class frmGameManager
|
|||||||
Me.Text = "Game Manager"
|
Me.Text = "Game Manager"
|
||||||
Me.grpConfig.ResumeLayout(False)
|
Me.grpConfig.ResumeLayout(False)
|
||||||
Me.grpConfig.PerformLayout()
|
Me.grpConfig.PerformLayout()
|
||||||
|
CType(Me.nudLimit, System.ComponentModel.ISupportInitialize).EndInit()
|
||||||
Me.grpExtra.ResumeLayout(False)
|
Me.grpExtra.ResumeLayout(False)
|
||||||
Me.grpExtra.PerformLayout()
|
Me.grpExtra.PerformLayout()
|
||||||
CType(Me.pbIcon, System.ComponentModel.ISupportInitialize).EndInit()
|
CType(Me.pbIcon, System.ComponentModel.ISupportInitialize).EndInit()
|
||||||
@@ -807,6 +863,7 @@ Partial Class frmGameManager
|
|||||||
Me.grpFilter.ResumeLayout(False)
|
Me.grpFilter.ResumeLayout(False)
|
||||||
Me.grpFilter.PerformLayout()
|
Me.grpFilter.PerformLayout()
|
||||||
Me.cmsImport.ResumeLayout(False)
|
Me.cmsImport.ResumeLayout(False)
|
||||||
|
Me.cmsDeleteBackup.ResumeLayout(False)
|
||||||
Me.ResumeLayout(False)
|
Me.ResumeLayout(False)
|
||||||
Me.PerformLayout()
|
Me.PerformLayout()
|
||||||
|
|
||||||
@@ -848,14 +905,10 @@ Partial Class frmGameManager
|
|||||||
Friend WithEvents btnIconBrowse As System.Windows.Forms.Button
|
Friend WithEvents btnIconBrowse As System.Windows.Forms.Button
|
||||||
Friend WithEvents txtIcon As System.Windows.Forms.TextBox
|
Friend WithEvents txtIcon As System.Windows.Forms.TextBox
|
||||||
Friend WithEvents txtID As System.Windows.Forms.TextBox
|
Friend WithEvents txtID As System.Windows.Forms.TextBox
|
||||||
Friend WithEvents txtCurrentBackup As System.Windows.Forms.TextBox
|
Friend WithEvents lblRemote As System.Windows.Forms.Label
|
||||||
Friend WithEvents lblCurrentBackup As System.Windows.Forms.Label
|
Friend WithEvents lblLocalData As System.Windows.Forms.Label
|
||||||
Friend WithEvents txtLocalBackup As System.Windows.Forms.TextBox
|
|
||||||
Friend WithEvents lblLastBackup As System.Windows.Forms.Label
|
|
||||||
Friend WithEvents lblSync As System.Windows.Forms.Label
|
|
||||||
Friend WithEvents chkEnabled As System.Windows.Forms.CheckBox
|
Friend WithEvents chkEnabled As System.Windows.Forms.CheckBox
|
||||||
Friend WithEvents txtFileSize As System.Windows.Forms.TextBox
|
Friend WithEvents lblBackupFile As System.Windows.Forms.Label
|
||||||
Friend WithEvents lblFileSize As System.Windows.Forms.Label
|
|
||||||
Friend WithEvents btnMarkAsRestored As System.Windows.Forms.Button
|
Friend WithEvents btnMarkAsRestored As System.Windows.Forms.Button
|
||||||
Friend WithEvents btnRestore As System.Windows.Forms.Button
|
Friend WithEvents btnRestore As System.Windows.Forms.Button
|
||||||
Friend WithEvents btnDeleteBackup As System.Windows.Forms.Button
|
Friend WithEvents btnDeleteBackup As System.Windows.Forms.Button
|
||||||
@@ -871,7 +924,6 @@ Partial Class frmGameManager
|
|||||||
Friend WithEvents btnInclude As System.Windows.Forms.Button
|
Friend WithEvents btnInclude As System.Windows.Forms.Button
|
||||||
Friend WithEvents btnExclude As System.Windows.Forms.Button
|
Friend WithEvents btnExclude As System.Windows.Forms.Button
|
||||||
Friend WithEvents lblRestorePath As Label
|
Friend WithEvents lblRestorePath As Label
|
||||||
Friend WithEvents txtRestorePath As TextBox
|
|
||||||
Friend WithEvents btnImport As System.Windows.Forms.Button
|
Friend WithEvents btnImport As System.Windows.Forms.Button
|
||||||
Friend WithEvents btnExport As System.Windows.Forms.Button
|
Friend WithEvents btnExport As System.Windows.Forms.Button
|
||||||
Friend WithEvents cmsImport As System.Windows.Forms.ContextMenuStrip
|
Friend WithEvents cmsImport As System.Windows.Forms.ContextMenuStrip
|
||||||
@@ -879,4 +931,14 @@ Partial Class frmGameManager
|
|||||||
Friend WithEvents cmsFile As System.Windows.Forms.ToolStripMenuItem
|
Friend WithEvents cmsFile As System.Windows.Forms.ToolStripMenuItem
|
||||||
Friend WithEvents txtQuickFilter As TextBox
|
Friend WithEvents txtQuickFilter As TextBox
|
||||||
Friend WithEvents lblQuickFilter As Label
|
Friend WithEvents lblQuickFilter As Label
|
||||||
|
Friend WithEvents lblLocalBackupData As Label
|
||||||
|
Friend WithEvents lblRestorePathData As Label
|
||||||
|
Friend WithEvents lblBackupFileData As Label
|
||||||
|
Friend WithEvents lblLimit As Label
|
||||||
|
Friend WithEvents nudLimit As NumericUpDown
|
||||||
|
Friend WithEvents cboRemoteBackup As ComboBox
|
||||||
|
Friend WithEvents cmsDeleteBackup As ContextMenuStrip
|
||||||
|
Friend WithEvents cmsDeleteOne As ToolStripMenuItem
|
||||||
|
Friend WithEvents cmsDeleteAll As ToolStripMenuItem
|
||||||
|
Friend WithEvents chkCleanFolder As CheckBox
|
||||||
End Class
|
End Class
|
||||||
|
|||||||
@@ -120,4 +120,7 @@
|
|||||||
<metadata name="cmsImport.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
|
<metadata name="cmsImport.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
|
||||||
<value>17, 17</value>
|
<value>17, 17</value>
|
||||||
</metadata>
|
</metadata>
|
||||||
|
<metadata name="cmsDeleteBackup.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
|
||||||
|
<value>127, 17</value>
|
||||||
|
</metadata>
|
||||||
</root>
|
</root>
|
||||||
+249
-152
@@ -11,7 +11,7 @@ Public Class frmGameManager
|
|||||||
Private bTriggerBackup As Boolean = False
|
Private bTriggerBackup As Boolean = False
|
||||||
Private bTriggerRestore As Boolean = False
|
Private bTriggerRestore As Boolean = False
|
||||||
Private oBackupList As New List(Of clsGame)
|
Private oBackupList As New List(Of clsGame)
|
||||||
Private oRestoreList As New List(Of clsGame)
|
Private oRestoreList As New Hashtable
|
||||||
Private oAppData As Hashtable
|
Private oAppData As Hashtable
|
||||||
Private oLocalBackupData As SortedList
|
Private oLocalBackupData As SortedList
|
||||||
Private oRemoteBackupData As SortedList
|
Private oRemoteBackupData As SortedList
|
||||||
@@ -114,11 +114,11 @@ Public Class frmGameManager
|
|||||||
End Set
|
End Set
|
||||||
End Property
|
End Property
|
||||||
|
|
||||||
Property RestoreList As List(Of clsGame)
|
Property RestoreList As Hashtable
|
||||||
Get
|
Get
|
||||||
Return oRestoreList
|
Return oRestoreList
|
||||||
End Get
|
End Get
|
||||||
Set(value As List(Of clsGame))
|
Set(value As Hashtable)
|
||||||
oRestoreList = value
|
oRestoreList = value
|
||||||
End Set
|
End Set
|
||||||
End Property
|
End Property
|
||||||
@@ -142,8 +142,8 @@ Public Class frmGameManager
|
|||||||
End Property
|
End Property
|
||||||
|
|
||||||
Private Sub LoadBackupData()
|
Private Sub LoadBackupData()
|
||||||
oRemoteBackupData = mgrManifest.ReadManifest(mgrSQLite.Database.Remote)
|
oRemoteBackupData = mgrManifest.ReadLatestManifest(mgrSQLite.Database.Remote)
|
||||||
oLocalBackupData = mgrManifest.ReadManifest(mgrSQLite.Database.Local)
|
oLocalBackupData = mgrManifest.ReadLatestManifest(mgrSQLite.Database.Local)
|
||||||
End Sub
|
End Sub
|
||||||
|
|
||||||
Private Function ConvertToRelativePath(ByVal sSavePath As String, ByVal sAppPath As String) As String
|
Private Function ConvertToRelativePath(ByVal sSavePath As String, ByVal sAppPath As String) As String
|
||||||
@@ -160,48 +160,54 @@ Public Class frmGameManager
|
|||||||
End Function
|
End Function
|
||||||
|
|
||||||
Private Sub CheckManifestandUpdate(ByVal oOriginalApp As clsGame, ByVal oNewApp As clsGame)
|
Private Sub CheckManifestandUpdate(ByVal oOriginalApp As clsGame, ByVal oNewApp As clsGame)
|
||||||
Dim oBackupItem As clsBackup
|
Dim oBackupItems As List(Of clsBackup)
|
||||||
Dim sDirectory As String
|
Dim sDirectory As String
|
||||||
Dim sNewDirectory As String
|
Dim sNewDirectory As String
|
||||||
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 a name change, check and update the manifest
|
||||||
If oNewApp.Name <> oOriginalApp.Name Then
|
If oNewApp.Name <> oOriginalApp.Name Then
|
||||||
'Local
|
'Local
|
||||||
If mgrManifest.DoManifestCheck(oOriginalApp.Name, mgrSQLite.Database.Local) Then
|
If mgrManifest.DoManifestNameCheck(oOriginalApp.Name, mgrSQLite.Database.Local) Then
|
||||||
oBackupItem = mgrManifest.DoManifestGetByName(oOriginalApp.Name, mgrSQLite.Database.Local)
|
oBackupItems = mgrManifest.DoManifestGetByName(oOriginalApp.Name, mgrSQLite.Database.Local)
|
||||||
|
'The local manifest will only have one entry per game, therefore this runs only once
|
||||||
|
For Each oBackupItem As clsBackup In oBackupItems
|
||||||
|
'Rename Current Backup File & Folder
|
||||||
|
sFileName = BackupFolder & oBackupItem.FileName
|
||||||
|
|
||||||
'Rename Current Backup File & Folder
|
'Rename Backup File
|
||||||
sFileName = BackupFolder & oBackupItem.FileName
|
sNewFileName = Path.GetDirectoryName(sFileName) & Path.DirectorySeparatorChar & Path.GetFileName(sFileName).Replace(oOriginalApp.Name, oNewApp.Name)
|
||||||
|
If File.Exists(sFileName) Then
|
||||||
'Rename Backup File
|
FileSystem.Rename(sFileName, sNewFileName)
|
||||||
sNewFileName = Path.GetDirectoryName(sFileName) & Path.DirectorySeparatorChar & Path.GetFileName(sFileName).Replace(oOriginalApp.Name, oNewApp.Name)
|
|
||||||
If File.Exists(sFileName) Then
|
|
||||||
FileSystem.Rename(sFileName, sNewFileName)
|
|
||||||
End If
|
|
||||||
|
|
||||||
'Rename Directory
|
|
||||||
sDirectory = Path.GetDirectoryName(sFileName)
|
|
||||||
sNewDirectory = sDirectory.Replace(oOriginalApp.Name, oNewApp.Name)
|
|
||||||
If sDirectory <> sNewDirectory Then
|
|
||||||
If Directory.Exists(sDirectory) Then
|
|
||||||
FileSystem.Rename(sDirectory, sNewDirectory)
|
|
||||||
End If
|
End If
|
||||||
End If
|
|
||||||
|
|
||||||
oBackupItem.Name = oNewApp.Name
|
'Rename Directory
|
||||||
oBackupItem.FileName = oBackupItem.FileName.Replace(oOriginalApp.Name, oNewApp.Name)
|
sDirectory = Path.GetDirectoryName(sFileName)
|
||||||
mgrManifest.DoManifestNameUpdate(oOriginalApp.Name, oBackupItem, mgrSQLite.Database.Local)
|
sNewDirectory = sDirectory.Replace(oOriginalApp.Name, oNewApp.Name)
|
||||||
oLocalBackupData = mgrManifest.ReadManifest(mgrSQLite.Database.Local)
|
If sDirectory <> sNewDirectory Then
|
||||||
|
If Directory.Exists(sDirectory) Then
|
||||||
|
FileSystem.Rename(sDirectory, sNewDirectory)
|
||||||
|
End If
|
||||||
|
End If
|
||||||
|
|
||||||
|
oBackupItem.Name = oNewApp.Name
|
||||||
|
oBackupItem.FileName = oBackupItem.FileName.Replace(oOriginalApp.Name, oNewApp.Name)
|
||||||
|
mgrManifest.DoManifestUpdateByID(oBackupItem, mgrSQLite.Database.Local)
|
||||||
|
Next
|
||||||
|
oLocalBackupData = mgrManifest.ReadLatestManifest(mgrSQLite.Database.Local)
|
||||||
End If
|
End If
|
||||||
|
|
||||||
'Remote
|
'Remote
|
||||||
If mgrManifest.DoManifestCheck(oOriginalApp.Name, mgrSQLite.Database.Remote) Then
|
If mgrManifest.DoManifestNameCheck(oOriginalApp.Name, mgrSQLite.Database.Remote) Then
|
||||||
oBackupItem = mgrManifest.DoManifestGetByName(oOriginalApp.Name, mgrSQLite.Database.Remote)
|
oBackupItems = mgrManifest.DoManifestGetByName(oOriginalApp.Name, mgrSQLite.Database.Remote)
|
||||||
oBackupItem.Name = oNewApp.Name
|
|
||||||
oBackupItem.FileName = oBackupItem.FileName.Replace(oOriginalApp.Name, oNewApp.Name)
|
For Each oBackupItem As clsBackup In oBackupItems
|
||||||
mgrManifest.DoManifestNameUpdate(oOriginalApp.Name, oBackupItem, mgrSQLite.Database.Remote)
|
oBackupItem.Name = oNewApp.Name
|
||||||
oRemoteBackupData = mgrManifest.ReadManifest(mgrSQLite.Database.Remote)
|
oBackupItem.FileName = oBackupItem.FileName.Replace(oOriginalApp.Name, oNewApp.Name)
|
||||||
|
mgrManifest.DoManifestUpdateByID(oBackupItem, mgrSQLite.Database.Remote)
|
||||||
|
Next
|
||||||
|
oRemoteBackupData = mgrManifest.ReadLatestManifest(mgrSQLite.Database.Remote)
|
||||||
End If
|
End If
|
||||||
End If
|
End If
|
||||||
End Sub
|
End Sub
|
||||||
@@ -281,7 +287,7 @@ Public Class frmGameManager
|
|||||||
End If
|
End If
|
||||||
End If
|
End If
|
||||||
|
|
||||||
sNewPath = mgrCommon.OpenFileBrowser(frmGameManager_ChooseExe, "exe", _
|
sNewPath = mgrCommon.OpenFileBrowser(frmGameManager_ChooseExe, "exe",
|
||||||
frmGameManager_Executable, sDefaultFolder, False)
|
frmGameManager_Executable, sDefaultFolder, False)
|
||||||
|
|
||||||
If sNewPath <> String.Empty Then
|
If sNewPath <> String.Empty Then
|
||||||
@@ -339,10 +345,10 @@ Public Class frmGameManager
|
|||||||
|
|
||||||
'Unix Handler
|
'Unix Handler
|
||||||
If Not mgrCommon.IsUnix Then
|
If Not mgrCommon.IsUnix Then
|
||||||
sNewPath = mgrCommon.OpenFileBrowser(frmGameManager_ChooseCustomIcon, "ico", _
|
sNewPath = mgrCommon.OpenFileBrowser(frmGameManager_ChooseCustomIcon, "ico",
|
||||||
frmGameManager_Icon, sDefaultFolder, False)
|
frmGameManager_Icon, sDefaultFolder, False)
|
||||||
Else
|
Else
|
||||||
sNewPath = mgrCommon.OpenFileBrowser(frmGameManager_ChooseCustomIcon, "png", _
|
sNewPath = mgrCommon.OpenFileBrowser(frmGameManager_ChooseCustomIcon, "png",
|
||||||
"PNG", sDefaultFolder, False)
|
"PNG", sDefaultFolder, False)
|
||||||
End If
|
End If
|
||||||
|
|
||||||
@@ -464,6 +470,7 @@ Public Class frmGameManager
|
|||||||
frm.ShowDialog()
|
frm.ShowDialog()
|
||||||
|
|
||||||
txtBox.Text = frm.BuilderString
|
txtBox.Text = frm.BuilderString
|
||||||
|
VerifyCleanFolder()
|
||||||
End Sub
|
End Sub
|
||||||
|
|
||||||
Private Function FindRestorePath() As Boolean
|
Private Function FindRestorePath() As Boolean
|
||||||
@@ -496,12 +503,12 @@ Public Class frmGameManager
|
|||||||
Dim oProcessStartInfo As ProcessStartInfo
|
Dim oProcessStartInfo As ProcessStartInfo
|
||||||
|
|
||||||
If CurrentBackupItem.AbsolutePath Then
|
If CurrentBackupItem.AbsolutePath Then
|
||||||
sPath = CurrentBackupItem.RestorePath
|
sPath = CurrentBackupItem.RestorePath
|
||||||
Else
|
Else
|
||||||
If FindRestorePath() Then
|
If FindRestorePath() Then
|
||||||
sPath = CurrentBackupItem.RelativeRestorePath
|
sPath = CurrentBackupItem.RelativeRestorePath
|
||||||
End If
|
|
||||||
End If
|
End If
|
||||||
|
End If
|
||||||
|
|
||||||
If Directory.Exists(sPath) Then
|
If Directory.Exists(sPath) Then
|
||||||
oProcessStartInfo = New ProcessStartInfo
|
oProcessStartInfo = New ProcessStartInfo
|
||||||
@@ -541,13 +548,49 @@ Public Class frmGameManager
|
|||||||
ModeChange()
|
ModeChange()
|
||||||
End Sub
|
End Sub
|
||||||
|
|
||||||
Private Sub GetBackupInfo(ByVal oApp As clsGame)
|
Private Sub UpdateBackupInfo(ByVal sManifestID As String)
|
||||||
Dim oBackupInfo As clsBackup
|
|
||||||
Dim sFileName As String
|
Dim sFileName As String
|
||||||
|
|
||||||
|
If sManifestID <> String.Empty Then
|
||||||
|
CurrentBackupItem = mgrManifest.DoManifestGetByID(sManifestID, mgrSQLite.Database.Remote)
|
||||||
|
|
||||||
|
sFileName = BackupFolder & CurrentBackupItem.FileName
|
||||||
|
|
||||||
|
If File.Exists(sFileName) Then
|
||||||
|
lblBackupFileData.Text = Path.GetFileName(CurrentBackupItem.FileName) & " (" & mgrCommon.GetFileSize(sFileName) & ")"
|
||||||
|
Else
|
||||||
|
lblBackupFileData.Text = frmGameManager_ErrorNoBackupExists
|
||||||
|
End If
|
||||||
|
|
||||||
|
mgrRestore.DoPathOverride(CurrentBackupItem, CurrentGame)
|
||||||
|
lblRestorePathData.Text = CurrentBackupItem.RestorePath
|
||||||
|
End If
|
||||||
|
|
||||||
|
End Sub
|
||||||
|
|
||||||
|
Private Sub GetBackupInfo(ByVal oApp As clsGame)
|
||||||
|
Dim oBackupInfo As clsBackup
|
||||||
|
Dim oCurrentBackup As clsBackup
|
||||||
|
Dim oCurrentBackups As List(Of clsBackup)
|
||||||
|
Dim sFileName As String
|
||||||
|
Dim oComboItems As New List(Of KeyValuePair(Of String, String))
|
||||||
|
Dim bLocalData As Boolean = False
|
||||||
|
Dim bRemoteData As Boolean = False
|
||||||
|
|
||||||
|
'cboRemoteBackup
|
||||||
|
cboRemoteBackup.ValueMember = "Key"
|
||||||
|
cboRemoteBackup.DisplayMember = "Value"
|
||||||
|
|
||||||
If oRemoteBackupData.Contains(oApp.Name) Then
|
If oRemoteBackupData.Contains(oApp.Name) Then
|
||||||
|
bRemoteData = True
|
||||||
|
oCurrentBackups = mgrManifest.DoManifestGetByName(oApp.Name, mgrSQLite.Database.Remote)
|
||||||
|
|
||||||
|
For Each oCurrentBackup In oCurrentBackups
|
||||||
|
oComboItems.Add(New KeyValuePair(Of String, String)(oCurrentBackup.ID, mgrCommon.FormatString(frmGameManager_BackupTimeAndName, New String() {oCurrentBackup.DateUpdated, oCurrentBackup.UpdatedBy})))
|
||||||
|
Next
|
||||||
|
|
||||||
CurrentBackupItem = DirectCast(oRemoteBackupData(oApp.Name), clsBackup)
|
CurrentBackupItem = DirectCast(oRemoteBackupData(oApp.Name), clsBackup)
|
||||||
txtCurrentBackup.Text = mgrCommon.FormatString(frmGameManager_BackupTimeAndName, New String() {CurrentBackupItem.DateUpdated, CurrentBackupItem.UpdatedBy})
|
|
||||||
sFileName = BackupFolder & CurrentBackupItem.FileName
|
sFileName = BackupFolder & CurrentBackupItem.FileName
|
||||||
|
|
||||||
btnOpenBackupFile.Enabled = True
|
btnOpenBackupFile.Enabled = True
|
||||||
@@ -556,80 +599,95 @@ Public Class frmGameManager
|
|||||||
btnDeleteBackup.Enabled = True
|
btnDeleteBackup.Enabled = True
|
||||||
|
|
||||||
If File.Exists(sFileName) Then
|
If File.Exists(sFileName) Then
|
||||||
txtFileSize.Text = mgrCommon.GetFileSize(sFileName)
|
lblBackupFileData.Text = Path.GetFileName(CurrentBackupItem.FileName) & " (" & mgrCommon.GetFileSize(sFileName) & ")"
|
||||||
Else
|
Else
|
||||||
txtFileSize.Text = frmGameManager_ErrorNoBackupExists
|
lblBackupFileData.Text = frmGameManager_ErrorNoBackupExists
|
||||||
End If
|
End If
|
||||||
|
|
||||||
mgrRestore.DoPathOverride(CurrentBackupItem, oApp)
|
mgrRestore.DoPathOverride(CurrentBackupItem, oApp)
|
||||||
txtRestorePath.Text = CurrentBackupItem.RestorePath
|
lblRestorePathData.Text = CurrentBackupItem.RestorePath
|
||||||
Else
|
Else
|
||||||
txtCurrentBackup.Text = frmGameManager_Never
|
oComboItems.Add(New KeyValuePair(Of String, String)(String.Empty, frmGameManager_None))
|
||||||
txtFileSize.Text = String.Empty
|
lblBackupFileData.Text = String.Empty
|
||||||
txtRestorePath.Text = String.Empty
|
lblRestorePathData.Text = String.Empty
|
||||||
btnOpenBackupFile.Enabled = False
|
btnOpenBackupFile.Enabled = False
|
||||||
btnOpenRestorePath.Enabled = False
|
btnOpenRestorePath.Enabled = False
|
||||||
btnRestore.Enabled = False
|
btnRestore.Enabled = False
|
||||||
btnDeleteBackup.Enabled = False
|
btnDeleteBackup.Enabled = False
|
||||||
End If
|
End If
|
||||||
|
|
||||||
|
cboRemoteBackup.DataSource = oComboItems
|
||||||
|
|
||||||
If oLocalBackupData.Contains(oApp.Name) Then
|
If oLocalBackupData.Contains(oApp.Name) Then
|
||||||
|
bLocalData = True
|
||||||
oBackupInfo = DirectCast(oLocalBackupData(oApp.Name), clsBackup)
|
oBackupInfo = DirectCast(oLocalBackupData(oApp.Name), clsBackup)
|
||||||
txtLocalBackup.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
|
||||||
txtLocalBackup.Text = frmGameManager_Never
|
lblLocalBackupData.Text = frmGameManager_Unknown
|
||||||
End If
|
End If
|
||||||
|
|
||||||
If txtCurrentBackup.Text = frmGameManager_Never And txtLocalBackup.Text = frmGameManager_Never Then
|
If Not bRemoteData And Not bLocalData Then
|
||||||
lblSync.Visible = False
|
|
||||||
btnMarkAsRestored.Enabled = False
|
btnMarkAsRestored.Enabled = False
|
||||||
ElseIf txtCurrentBackup.Text = frmGameManager_Never And txtLocalBackup.Text <> frmGameManager_Never Then
|
lblLocalBackupData.ForeColor = Color.Black
|
||||||
lblSync.Visible = False
|
ElseIf Not bRemoteData And bLocalData Then
|
||||||
btnMarkAsRestored.Enabled = False
|
btnMarkAsRestored.Enabled = False
|
||||||
ElseIf txtCurrentBackup.Text <> txtLocalBackup.Text Then
|
lblLocalBackupData.ForeColor = Color.Black
|
||||||
lblSync.ForeColor = Color.Red
|
ElseIf oComboItems(0).Value <> lblLocalBackupData.Text Then
|
||||||
lblSync.Text = frmGameManager_OutofSync
|
lblLocalBackupData.ForeColor = Color.Red
|
||||||
lblSync.Visible = True
|
|
||||||
btnMarkAsRestored.Enabled = True
|
btnMarkAsRestored.Enabled = True
|
||||||
Else
|
Else
|
||||||
lblSync.ForeColor = Color.Green
|
lblLocalBackupData.ForeColor = Color.Green
|
||||||
lblSync.Text = frmGameManager_UpToDate
|
|
||||||
lblSync.Visible = True
|
|
||||||
btnMarkAsRestored.Enabled = False
|
btnMarkAsRestored.Enabled = False
|
||||||
End If
|
End If
|
||||||
|
|
||||||
End Sub
|
End Sub
|
||||||
|
|
||||||
Private Sub DeleteBackup()
|
Private Sub DeleteAllBackups()
|
||||||
Dim oDir As DirectoryInfo
|
Dim oBackupData As List(Of clsBackup)
|
||||||
Dim sSubDir As String
|
Dim oBackup As clsBackup
|
||||||
|
|
||||||
If mgrCommon.ShowMessage(frmGameManager_ConfirmBackupDelete, CurrentBackupItem.Name, MsgBoxStyle.YesNo) = MsgBoxResult.Yes Then
|
If mgrCommon.ShowMessage(frmGameManager_ConfirmBackupDeleteAll, CurrentGame.Name, MsgBoxStyle.YesNo) = MsgBoxResult.Yes Then
|
||||||
mgrManifest.DoManifestDelete(CurrentBackupItem, mgrSQLite.Database.Local)
|
oBackupData = mgrManifest.DoManifestGetByName(CurrentGame.Name, mgrSQLite.Database.Remote)
|
||||||
mgrManifest.DoManifestDelete(CurrentBackupItem, mgrSQLite.Database.Remote)
|
|
||||||
|
For Each oBackup In oBackupData
|
||||||
|
'Delete the specific remote manifest entry
|
||||||
|
mgrManifest.DoManifestDeletebyID(oBackup, mgrSQLite.Database.Remote)
|
||||||
|
'Delete referenced backup file from the backup folder
|
||||||
|
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)
|
||||||
|
mgrCommon.DeleteDirectoryByBackup(BackupFolder, oBackup)
|
||||||
|
Next
|
||||||
|
|
||||||
|
'Delete local manifest entry
|
||||||
|
mgrManifest.DoManifestDeletebyName(CurrentBackupItem, mgrSQLite.Database.Local)
|
||||||
|
|
||||||
|
LoadBackupData()
|
||||||
|
|
||||||
|
If oCurrentGame.Temporary Then
|
||||||
|
LoadData()
|
||||||
|
eCurrentMode = eModes.Disabled
|
||||||
|
ModeChange()
|
||||||
|
Else
|
||||||
|
FillData()
|
||||||
|
End If
|
||||||
|
End If
|
||||||
|
End Sub
|
||||||
|
|
||||||
|
Private Sub DeleteBackup()
|
||||||
|
If mgrCommon.ShowMessage(frmGameManager_ConfirmBackupDelete, Path.GetFileName(CurrentBackupItem.FileName), MsgBoxStyle.YesNo) = MsgBoxResult.Yes Then
|
||||||
|
'Delete the specific remote manifest entry
|
||||||
|
mgrManifest.DoManifestDeletebyID(CurrentBackupItem, mgrSQLite.Database.Remote)
|
||||||
|
|
||||||
|
'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
|
||||||
|
mgrManifest.DoManifestDeletebyName(CurrentBackupItem, mgrSQLite.Database.Local)
|
||||||
|
End If
|
||||||
|
|
||||||
'Delete referenced backup file from the backup folder
|
'Delete referenced backup file from the backup folder
|
||||||
mgrCommon.DeleteFile(BackupFolder & CurrentBackupItem.FileName)
|
mgrCommon.DeleteFile(BackupFolder & CurrentBackupItem.FileName)
|
||||||
|
|
||||||
'Check if using backup sub-directories (Probably not the best way to check for this)
|
'Check for sub-directory and delete if empty
|
||||||
If CurrentBackupItem.FileName.StartsWith(CurrentBackupItem.Name & Path.DirectorySeparatorChar) Then
|
mgrCommon.DeleteDirectoryByBackup(BackupFolder, CurrentBackupItem)
|
||||||
'Build sub-dir backup path
|
|
||||||
sSubDir = BackupFolder & CurrentBackupItem.Name
|
|
||||||
|
|
||||||
If Directory.Exists(sSubDir) Then
|
|
||||||
'Check if there's any sub-directories or files remaining
|
|
||||||
oDir = New DirectoryInfo(sSubDir)
|
|
||||||
If oDir.GetDirectories.Length > 0 Or oDir.GetFiles.Length > 0 Then
|
|
||||||
'Confirm
|
|
||||||
If mgrCommon.ShowMessage(frmGameManager_ConfirmBackupFolderDelete, New String() {sSubDir, oDir.GetDirectories.Length, oDir.GetFiles.Length}, MsgBoxStyle.YesNo) = MsgBoxResult.Yes Then
|
|
||||||
If Directory.Exists(sSubDir) Then mgrCommon.DeleteDirectory(sSubDir, True)
|
|
||||||
End If
|
|
||||||
Else
|
|
||||||
'Folder is empty, delete the empty sub-folder
|
|
||||||
If Directory.Exists(sSubDir) Then mgrCommon.DeleteDirectory(sSubDir)
|
|
||||||
End If
|
|
||||||
End If
|
|
||||||
End If
|
|
||||||
|
|
||||||
LoadBackupData()
|
LoadBackupData()
|
||||||
|
|
||||||
@@ -657,7 +715,9 @@ Public Class frmGameManager
|
|||||||
txtFileType.Text = oApp.FileType
|
txtFileType.Text = oApp.FileType
|
||||||
txtExclude.Text = oApp.ExcludeList
|
txtExclude.Text = oApp.ExcludeList
|
||||||
chkFolderSave.Checked = oApp.FolderSave
|
chkFolderSave.Checked = oApp.FolderSave
|
||||||
|
chkCleanFolder.Checked = oApp.CleanFolder
|
||||||
chkTimeStamp.Checked = oApp.AppendTimeStamp
|
chkTimeStamp.Checked = oApp.AppendTimeStamp
|
||||||
|
nudLimit.Value = oApp.BackupLimit
|
||||||
chkEnabled.Checked = oApp.Enabled
|
chkEnabled.Checked = oApp.Enabled
|
||||||
chkMonitorOnly.Checked = oApp.MonitorOnly
|
chkMonitorOnly.Checked = oApp.MonitorOnly
|
||||||
|
|
||||||
@@ -729,9 +789,6 @@ Public Class frmGameManager
|
|||||||
AddHandler DirectCast(ctl, NumericUpDown).ValueChanged, AddressOf DirtyCheck_ValueChanged
|
AddHandler DirectCast(ctl, NumericUpDown).ValueChanged, AddressOf DirtyCheck_ValueChanged
|
||||||
End If
|
End If
|
||||||
Next
|
Next
|
||||||
|
|
||||||
'Exemptions
|
|
||||||
RemoveHandler txtRestorePath.TextChanged, AddressOf DirtyCheck_ValueChanged
|
|
||||||
End Sub
|
End Sub
|
||||||
|
|
||||||
Private Sub AssignDirtyHandlersMisc()
|
Private Sub AssignDirtyHandlersMisc()
|
||||||
@@ -745,8 +802,12 @@ Public Class frmGameManager
|
|||||||
DirectCast(ctl, TextBox).Text = String.Empty
|
DirectCast(ctl, TextBox).Text = String.Empty
|
||||||
ElseIf TypeOf ctl Is CheckBox Then
|
ElseIf TypeOf ctl Is CheckBox Then
|
||||||
DirectCast(ctl, CheckBox).Checked = False
|
DirectCast(ctl, CheckBox).Checked = False
|
||||||
|
ElseIf TypeOf ctl Is Label Then
|
||||||
|
If ctl.Tag = "wipe" Then DirectCast(ctl, Label).Text = String.Empty
|
||||||
ElseIf TypeOf ctl Is NumericUpDown Then
|
ElseIf TypeOf ctl Is NumericUpDown Then
|
||||||
DirectCast(ctl, NumericUpDown).Value = 0
|
DirectCast(ctl, NumericUpDown).Value = DirectCast(ctl, NumericUpDown).Minimum
|
||||||
|
ElseIf TypeOf ctl Is ComboBox Then
|
||||||
|
DirectCast(ctl, ComboBox).DataSource = Nothing
|
||||||
End If
|
End If
|
||||||
Next
|
Next
|
||||||
End Sub
|
End Sub
|
||||||
@@ -767,6 +828,7 @@ Public Class frmGameManager
|
|||||||
WipeControls(grpConfig.Controls)
|
WipeControls(grpConfig.Controls)
|
||||||
WipeControls(grpExtra.Controls)
|
WipeControls(grpExtra.Controls)
|
||||||
WipeControls(grpStats.Controls)
|
WipeControls(grpStats.Controls)
|
||||||
|
chkCleanFolder.Enabled = False
|
||||||
pbIcon.Image = Icon_Unknown
|
pbIcon.Image = Icon_Unknown
|
||||||
chkEnabled.Enabled = True
|
chkEnabled.Enabled = True
|
||||||
chkMonitorOnly.Enabled = True
|
chkMonitorOnly.Enabled = True
|
||||||
@@ -780,7 +842,6 @@ Public Class frmGameManager
|
|||||||
btnDeleteBackup.Enabled = False
|
btnDeleteBackup.Enabled = False
|
||||||
btnOpenBackupFile.Enabled = False
|
btnOpenBackupFile.Enabled = False
|
||||||
btnOpenRestorePath.Enabled = False
|
btnOpenRestorePath.Enabled = False
|
||||||
lblSync.Visible = False
|
|
||||||
chkEnabled.Checked = True
|
chkEnabled.Checked = True
|
||||||
chkMonitorOnly.Checked = False
|
chkMonitorOnly.Checked = False
|
||||||
btnTags.Enabled = False
|
btnTags.Enabled = False
|
||||||
@@ -863,7 +924,6 @@ Public Class frmGameManager
|
|||||||
WipeControls(grpExtra.Controls)
|
WipeControls(grpExtra.Controls)
|
||||||
WipeControls(grpStats.Controls)
|
WipeControls(grpStats.Controls)
|
||||||
pbIcon.Image = Icon_Unknown
|
pbIcon.Image = Icon_Unknown
|
||||||
lblSync.Visible = False
|
|
||||||
btnSave.Enabled = False
|
btnSave.Enabled = False
|
||||||
btnCancel.Enabled = False
|
btnCancel.Enabled = False
|
||||||
grpConfig.Enabled = False
|
grpConfig.Enabled = False
|
||||||
@@ -890,7 +950,6 @@ Public Class frmGameManager
|
|||||||
WipeControls(grpExtra.Controls)
|
WipeControls(grpExtra.Controls)
|
||||||
WipeControls(grpStats.Controls)
|
WipeControls(grpStats.Controls)
|
||||||
pbIcon.Image = Icon_Unknown
|
pbIcon.Image = Icon_Unknown
|
||||||
lblSync.Visible = False
|
|
||||||
btnSave.Enabled = True
|
btnSave.Enabled = True
|
||||||
btnCancel.Enabled = False
|
btnCancel.Enabled = False
|
||||||
grpConfig.Enabled = False
|
grpConfig.Enabled = False
|
||||||
@@ -926,38 +985,29 @@ Public Class frmGameManager
|
|||||||
Else
|
Else
|
||||||
btnInclude.Enabled = True
|
btnInclude.Enabled = True
|
||||||
End If
|
End If
|
||||||
|
VerifyCleanFolder()
|
||||||
End Sub
|
End Sub
|
||||||
|
|
||||||
Private Sub MonitorOnlyModeChange()
|
Private Sub TimeStampModeChange()
|
||||||
If chkMonitorOnly.Checked Then
|
If chkTimeStamp.Checked Then
|
||||||
txtSavePath.Text = String.Empty
|
nudLimit.Visible = True
|
||||||
chkFolderSave.Checked = True
|
lblLimit.Visible = True
|
||||||
chkTimeStamp.Checked = False
|
nudLimit.Value = 5
|
||||||
|
|
||||||
If txtFileType.Text <> String.Empty Then
|
|
||||||
txtFileType.Text = String.Empty
|
|
||||||
UpdateBuilderButtonLabel(txtFileType.Text, frmGameManager_IncludeShortcut, btnInclude, False)
|
|
||||||
End If
|
|
||||||
If txtExclude.Text <> String.Empty Then
|
|
||||||
txtExclude.Text = String.Empty
|
|
||||||
UpdateBuilderButtonLabel(txtExclude.Text, frmGameManager_ExcludeShortcut, btnExclude, False)
|
|
||||||
End If
|
|
||||||
|
|
||||||
lblSavePath.Enabled = False
|
|
||||||
btnSavePathBrowse.Enabled = False
|
|
||||||
txtSavePath.Enabled = False
|
|
||||||
chkFolderSave.Enabled = False
|
|
||||||
chkTimeStamp.Enabled = False
|
|
||||||
btnInclude.Enabled = False
|
|
||||||
btnExclude.Enabled = False
|
|
||||||
Else
|
Else
|
||||||
lblSavePath.Enabled = True
|
nudLimit.Visible = False
|
||||||
btnSavePathBrowse.Enabled = True
|
nudLimit.Value = nudLimit.Minimum
|
||||||
txtSavePath.Enabled = True
|
lblLimit.Visible = False
|
||||||
chkFolderSave.Enabled = True
|
End If
|
||||||
chkTimeStamp.Enabled = True
|
End Sub
|
||||||
btnInclude.Enabled = True
|
|
||||||
btnExclude.Enabled = True
|
Private Sub VerifyCleanFolder()
|
||||||
|
If Not bIsLoading Then
|
||||||
|
If chkFolderSave.Checked = True And txtExclude.Text = String.Empty And txtSavePath.Text <> String.Empty Then
|
||||||
|
chkCleanFolder.Enabled = True
|
||||||
|
Else
|
||||||
|
chkCleanFolder.Checked = False
|
||||||
|
chkCleanFolder.Enabled = False
|
||||||
|
End If
|
||||||
End If
|
End If
|
||||||
End Sub
|
End Sub
|
||||||
|
|
||||||
@@ -1027,7 +1077,9 @@ Public Class frmGameManager
|
|||||||
oApp.FileType = txtFileType.Text
|
oApp.FileType = txtFileType.Text
|
||||||
oApp.ExcludeList = txtExclude.Text
|
oApp.ExcludeList = txtExclude.Text
|
||||||
oApp.FolderSave = chkFolderSave.Checked
|
oApp.FolderSave = chkFolderSave.Checked
|
||||||
|
oApp.CleanFolder = chkCleanFolder.Checked
|
||||||
oApp.AppendTimeStamp = chkTimeStamp.Checked
|
oApp.AppendTimeStamp = chkTimeStamp.Checked
|
||||||
|
oApp.BackupLimit = nudLimit.Value
|
||||||
oApp.Enabled = chkEnabled.Checked
|
oApp.Enabled = chkEnabled.Checked
|
||||||
oApp.MonitorOnly = chkMonitorOnly.Checked
|
oApp.MonitorOnly = chkMonitorOnly.Checked
|
||||||
oApp.ProcessPath = txtAppPath.Text
|
oApp.ProcessPath = txtAppPath.Text
|
||||||
@@ -1108,6 +1160,7 @@ Public Class frmGameManager
|
|||||||
eCurrentMode = eModes.View
|
eCurrentMode = eModes.View
|
||||||
FillData()
|
FillData()
|
||||||
ModeChange()
|
ModeChange()
|
||||||
|
VerifyCleanFolder()
|
||||||
ElseIf lstGames.SelectedItems.Count > 1 Then
|
ElseIf lstGames.SelectedItems.Count > 1 Then
|
||||||
eCurrentMode = eModes.MultiSelect
|
eCurrentMode = eModes.MultiSelect
|
||||||
ModeChange()
|
ModeChange()
|
||||||
@@ -1160,8 +1213,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.DoManifestCheck(oMarkList(0).Name, mgrSQLite.Database.Local) Then
|
If mgrManifest.DoGlobalManifestCheck(oMarkList(0).Name, mgrSQLite.Database.Local) Then
|
||||||
mgrManifest.DoManifestUpdate(oMarkList(0), mgrSQLite.Database.Local)
|
mgrManifest.DoManifestUpdateByName(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
|
||||||
@@ -1170,8 +1223,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.DoManifestCheck(oGameBackup.Name, mgrSQLite.Database.Local) Then
|
If mgrManifest.DoGlobalManifestCheck(oGameBackup.Name, mgrSQLite.Database.Local) Then
|
||||||
mgrManifest.DoManifestUpdate(oGameBackup, mgrSQLite.Database.Local)
|
mgrManifest.DoManifestUpdateByName(oGameBackup, mgrSQLite.Database.Local)
|
||||||
Else
|
Else
|
||||||
mgrManifest.DoManifestAdd(oGameBackup, mgrSQLite.Database.Local)
|
mgrManifest.DoManifestAdd(oGameBackup, mgrSQLite.Database.Local)
|
||||||
End If
|
End If
|
||||||
@@ -1198,7 +1251,7 @@ Public Class frmGameManager
|
|||||||
End If
|
End If
|
||||||
End Sub
|
End Sub
|
||||||
|
|
||||||
Private Sub TriggerSelectedBackup()
|
Private Sub TriggerSelectedBackup(Optional ByVal bPrompt As Boolean = True)
|
||||||
Dim oData As KeyValuePair(Of String, String)
|
Dim oData As KeyValuePair(Of String, String)
|
||||||
Dim sMsg As String = String.Empty
|
Dim sMsg As String = String.Empty
|
||||||
Dim oGame As clsGame
|
Dim oGame As clsGame
|
||||||
@@ -1209,8 +1262,7 @@ Public Class frmGameManager
|
|||||||
|
|
||||||
For Each oData In lstGames.SelectedItems
|
For Each oData In lstGames.SelectedItems
|
||||||
oGame = DirectCast(AppData(oData.Key), clsGame)
|
oGame = DirectCast(AppData(oData.Key), clsGame)
|
||||||
'Filter out any games set to monitor only
|
BackupList.Add(oGame)
|
||||||
If Not oGame.MonitorOnly Then BackupList.Add(oGame)
|
|
||||||
Next
|
Next
|
||||||
|
|
||||||
If BackupList.Count = 1 Then
|
If BackupList.Count = 1 Then
|
||||||
@@ -1224,7 +1276,12 @@ Public Class frmGameManager
|
|||||||
End If
|
End If
|
||||||
|
|
||||||
If bDoBackup Then
|
If bDoBackup Then
|
||||||
If mgrCommon.ShowMessage(sMsg, MsgBoxStyle.YesNo) = MsgBoxResult.Yes Then
|
If bPrompt Then
|
||||||
|
If mgrCommon.ShowMessage(sMsg, MsgBoxStyle.YesNo) = MsgBoxResult.Yes Then
|
||||||
|
TriggerBackup = True
|
||||||
|
Me.Close()
|
||||||
|
End If
|
||||||
|
Else
|
||||||
TriggerBackup = True
|
TriggerBackup = True
|
||||||
Me.Close()
|
Me.Close()
|
||||||
End If
|
End If
|
||||||
@@ -1232,29 +1289,38 @@ Public Class frmGameManager
|
|||||||
End If
|
End If
|
||||||
End Sub
|
End Sub
|
||||||
|
|
||||||
Private Sub TriggerSelectedRestore()
|
Private Sub TriggerSelectedRestore(Optional ByVal bPrompt As Boolean = True)
|
||||||
Dim oData As KeyValuePair(Of String, String)
|
Dim oData As KeyValuePair(Of String, String)
|
||||||
Dim sMsg As String = String.Empty
|
Dim sMsg As String = String.Empty
|
||||||
Dim oGame As clsGame
|
Dim oGame As clsGame
|
||||||
|
Dim oBackup As clsBackup
|
||||||
Dim bDoRestore As Boolean = False
|
Dim bDoRestore As Boolean = False
|
||||||
|
|
||||||
If lstGames.SelectedItems.Count > 0 Then
|
If lstGames.SelectedItems.Count > 0 Then
|
||||||
RestoreList.Clear()
|
RestoreList.Clear()
|
||||||
|
|
||||||
For Each oData In lstGames.SelectedItems
|
If lstGames.SelectedItems.Count = 1 Then
|
||||||
If oRemoteBackupData.Contains(oData.Value) Then
|
RestoreList.Add(CurrentGame, CurrentBackupItem)
|
||||||
oGame = DirectCast(AppData(oData.Key), clsGame)
|
Else
|
||||||
'Filter out any games set to monitor only
|
For Each oData In lstGames.SelectedItems
|
||||||
If Not oGame.MonitorOnly Then RestoreList.Add(oGame)
|
If oRemoteBackupData.Contains(oData.Value) Then
|
||||||
End If
|
oGame = DirectCast(AppData(oData.Key), clsGame)
|
||||||
Next
|
oBackup = DirectCast(oRemoteBackupData(oData.Value), clsBackup)
|
||||||
|
RestoreList.Add(oGame, oBackup)
|
||||||
|
End If
|
||||||
|
Next
|
||||||
|
End If
|
||||||
|
|
||||||
If RestoreList.Count = 1 Then
|
If RestoreList.Count = 1 Then
|
||||||
bDoRestore = True
|
bDoRestore = True
|
||||||
If Not mgrRestore.CheckManifest(RestoreList(0).Name) Then
|
oGame = New clsGame
|
||||||
sMsg = mgrCommon.FormatString(frmGameManager_ConfirmRestoreAnyway, RestoreList(0).Name)
|
For Each de As DictionaryEntry In RestoreList
|
||||||
|
oGame = DirectCast(de.Key, clsGame)
|
||||||
|
Next
|
||||||
|
If Not mgrRestore.CheckManifest(oGame.Name) Then
|
||||||
|
sMsg = mgrCommon.FormatString(frmGameManager_ConfirmRestoreAnyway, oGame.Name)
|
||||||
Else
|
Else
|
||||||
sMsg = mgrCommon.FormatString(frmGameManager_ConfirmRestore, RestoreList(0).Name)
|
sMsg = mgrCommon.FormatString(frmGameManager_ConfirmRestore, oGame.Name)
|
||||||
End If
|
End If
|
||||||
ElseIf RestoreList.Count > 1 Then
|
ElseIf RestoreList.Count > 1 Then
|
||||||
bDoRestore = True
|
bDoRestore = True
|
||||||
@@ -1264,7 +1330,12 @@ Public Class frmGameManager
|
|||||||
End If
|
End If
|
||||||
|
|
||||||
If bDoRestore Then
|
If bDoRestore Then
|
||||||
If mgrCommon.ShowMessage(sMsg, MsgBoxStyle.YesNo) = MsgBoxResult.Yes Then
|
If bPrompt Then
|
||||||
|
If mgrCommon.ShowMessage(sMsg, MsgBoxStyle.YesNo) = MsgBoxResult.Yes Then
|
||||||
|
TriggerRestore = True
|
||||||
|
Me.Close()
|
||||||
|
End If
|
||||||
|
Else
|
||||||
TriggerRestore = True
|
TriggerRestore = True
|
||||||
Me.Close()
|
Me.Close()
|
||||||
End If
|
End If
|
||||||
@@ -1338,9 +1409,9 @@ Public Class frmGameManager
|
|||||||
btnOpenRestorePath.Text = frmGameManager_btnOpenRestorePath
|
btnOpenRestorePath.Text = frmGameManager_btnOpenRestorePath
|
||||||
btnOpenBackupFile.Text = frmGameManager_btnOpenBackupFile
|
btnOpenBackupFile.Text = frmGameManager_btnOpenBackupFile
|
||||||
btnDeleteBackup.Text = frmGameManager_btnDeleteBackup
|
btnDeleteBackup.Text = frmGameManager_btnDeleteBackup
|
||||||
lblFileSize.Text = frmGameManager_lblFileSize
|
lblBackupFile.Text = frmGameManager_lblBackupFile
|
||||||
lblCurrentBackup.Text = frmGameManager_lblCurrentBackup
|
lblRemote.Text = frmGameManager_lblRemote
|
||||||
lblLastBackup.Text = frmGameManager_lblLastBackup
|
lblLocalData.Text = frmGameManager_lblLocalData
|
||||||
btnIconBrowse.Text = frmGameManager_btnIconBrowse
|
btnIconBrowse.Text = frmGameManager_btnIconBrowse
|
||||||
lblVersion.Text = frmGameManager_lblVersion
|
lblVersion.Text = frmGameManager_lblVersion
|
||||||
lblCompany.Text = frmGameManager_lblCompany
|
lblCompany.Text = frmGameManager_lblCompany
|
||||||
@@ -1357,6 +1428,7 @@ Public Class frmGameManager
|
|||||||
lblName.Text = frmGameManager_lblName
|
lblName.Text = frmGameManager_lblName
|
||||||
chkTimeStamp.Text = frmGameManager_chkTimeStamp
|
chkTimeStamp.Text = frmGameManager_chkTimeStamp
|
||||||
chkFolderSave.Text = frmGameManager_chkFolderSave
|
chkFolderSave.Text = frmGameManager_chkFolderSave
|
||||||
|
chkCleanFolder.Text = frmGameManager_chkCleanFolder
|
||||||
btnBackup.Text = frmGameManager_btnBackup
|
btnBackup.Text = frmGameManager_btnBackup
|
||||||
btnClose.Text = frmGameManager_btnClose
|
btnClose.Text = frmGameManager_btnClose
|
||||||
btnDelete.Text = frmGameManager_btnDelete
|
btnDelete.Text = frmGameManager_btnDelete
|
||||||
@@ -1364,6 +1436,9 @@ Public Class frmGameManager
|
|||||||
cmsOfficial.Text = frmGameManager_cmsOfficial
|
cmsOfficial.Text = frmGameManager_cmsOfficial
|
||||||
cmsFile.Text = frmGameManager_cmsFile
|
cmsFile.Text = frmGameManager_cmsFile
|
||||||
lblQuickFilter.Text = frmGameManager_lblQuickFilter
|
lblQuickFilter.Text = frmGameManager_lblQuickFilter
|
||||||
|
lblLimit.Text = frmGameManager_lblLimit
|
||||||
|
cmsDeleteOne.Text = frmGameManager_cmsDeleteOne
|
||||||
|
cmsDeleteAll.Text = frmGameManager_cmsDeleteAll
|
||||||
|
|
||||||
'Init Filter Timer
|
'Init Filter Timer
|
||||||
tmFilterTimer = New Timer()
|
tmFilterTimer = New Timer()
|
||||||
@@ -1471,9 +1546,21 @@ Public Class frmGameManager
|
|||||||
End Sub
|
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
|
||||||
|
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)
|
||||||
|
Else
|
||||||
|
DeleteBackup()
|
||||||
|
End If
|
||||||
|
End Sub
|
||||||
|
|
||||||
|
Private Sub cmsDeleteOne_Click(sender As Object, e As EventArgs) Handles cmsDeleteOne.Click
|
||||||
DeleteBackup()
|
DeleteBackup()
|
||||||
End Sub
|
End Sub
|
||||||
|
|
||||||
|
Private Sub cmsDeleteAll_Click(sender As Object, e As EventArgs) Handles cmsDeleteAll.Click
|
||||||
|
DeleteAllBackups()
|
||||||
|
End Sub
|
||||||
|
|
||||||
Private Sub btnMarkAsRestored_Click(sender As Object, e As EventArgs) Handles btnMarkAsRestored.Click
|
Private Sub btnMarkAsRestored_Click(sender As Object, e As EventArgs) Handles btnMarkAsRestored.Click
|
||||||
MarkAsRestored()
|
MarkAsRestored()
|
||||||
End Sub
|
End Sub
|
||||||
@@ -1505,12 +1592,18 @@ Public Class frmGameManager
|
|||||||
FolderSaveModeChange()
|
FolderSaveModeChange()
|
||||||
End Sub
|
End Sub
|
||||||
|
|
||||||
Private Sub chkMonitorOnly_CheckedChanged(sender As Object, e As EventArgs) Handles chkMonitorOnly.CheckedChanged
|
Private Sub chkTimeStamp_CheckedChanged(sender As Object, e As EventArgs) Handles chkTimeStamp.CheckedChanged
|
||||||
MonitorOnlyModeChange()
|
TimeStampModeChange()
|
||||||
|
End Sub
|
||||||
|
|
||||||
|
Private Sub cboRemoteBackup_SelectedIndexChanged(sender As Object, e As EventArgs) Handles cboRemoteBackup.SelectedIndexChanged
|
||||||
|
If Not bIsLoading Then
|
||||||
|
UpdateBackupInfo(DirectCast(cboRemoteBackup.SelectedItem, KeyValuePair(Of String, String)).Key)
|
||||||
|
End If
|
||||||
End Sub
|
End Sub
|
||||||
|
|
||||||
Private Sub btnImport_Click(sender As Object, e As EventArgs) Handles btnImport.Click
|
Private Sub btnImport_Click(sender As Object, e As EventArgs) Handles btnImport.Click
|
||||||
cmsImport.Show(btnImport, New Drawing.Point(70, 11), ToolStripDropDownDirection.AboveRight)
|
cmsImport.Show(btnImport, New Drawing.Point(btnImport.Size.Width - Math.Floor(btnImport.Size.Width * 0.1), btnImport.Size.Height - Math.Floor(btnImport.Size.Height * 0.5)), ToolStripDropDownDirection.AboveRight)
|
||||||
End Sub
|
End Sub
|
||||||
|
|
||||||
Private Sub cmsOfficial_Click(sender As Object, e As EventArgs) Handles cmsOfficial.Click
|
Private Sub cmsOfficial_Click(sender As Object, e As EventArgs) Handles cmsOfficial.Click
|
||||||
@@ -1532,6 +1625,10 @@ Public Class frmGameManager
|
|||||||
End If
|
End If
|
||||||
End Sub
|
End Sub
|
||||||
|
|
||||||
|
Private Sub txtSavePath_TextChanged(sender As Object, e As EventArgs) Handles txtSavePath.TextChanged
|
||||||
|
VerifyCleanFolder()
|
||||||
|
End Sub
|
||||||
|
|
||||||
Private Sub tmFilterTimer_Tick(sender As Object, ByVal e As EventArgs) Handles tmFilterTimer.Tick
|
Private Sub tmFilterTimer_Tick(sender As Object, ByVal e As EventArgs) Handles tmFilterTimer.Tick
|
||||||
lstGames.DataSource = Nothing
|
lstGames.DataSource = Nothing
|
||||||
FormatAndFillList()
|
FormatAndFillList()
|
||||||
|
|||||||
@@ -226,6 +226,8 @@ Public Class frmIncludeExclude
|
|||||||
sNewString = InputBox(frmIncludeExclude_RawEditInfo, mgrCommon.FormatString(frmIncludeExclude_RawEditTitle, FormName), sCurrentString)
|
sNewString = InputBox(frmIncludeExclude_RawEditInfo, mgrCommon.FormatString(frmIncludeExclude_RawEditTitle, FormName), sCurrentString)
|
||||||
If sNewString <> String.Empty Then
|
If sNewString <> String.Empty Then
|
||||||
ParseBuilderString(sNewString)
|
ParseBuilderString(sNewString)
|
||||||
|
Else
|
||||||
|
lstBuilder.Clear()
|
||||||
End If
|
End If
|
||||||
End Sub
|
End Sub
|
||||||
|
|
||||||
|
|||||||
Generated
+2
-2
@@ -229,7 +229,7 @@ Partial Class frmMain
|
|||||||
Me.txtLog.Name = "txtLog"
|
Me.txtLog.Name = "txtLog"
|
||||||
Me.txtLog.ReadOnly = True
|
Me.txtLog.ReadOnly = True
|
||||||
Me.txtLog.ScrollBars = System.Windows.Forms.ScrollBars.Vertical
|
Me.txtLog.ScrollBars = System.Windows.Forms.ScrollBars.Vertical
|
||||||
Me.txtLog.Size = New System.Drawing.Size(500, 177)
|
Me.txtLog.Size = New System.Drawing.Size(500, 186)
|
||||||
Me.txtLog.TabIndex = 10
|
Me.txtLog.TabIndex = 10
|
||||||
Me.txtLog.TabStop = False
|
Me.txtLog.TabStop = False
|
||||||
'
|
'
|
||||||
@@ -523,6 +523,7 @@ Partial Class frmMain
|
|||||||
'
|
'
|
||||||
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.AutoSize = True
|
||||||
Me.ClientSize = New System.Drawing.Size(524, 401)
|
Me.ClientSize = New System.Drawing.Size(524, 401)
|
||||||
Me.Controls.Add(Me.pbTime)
|
Me.Controls.Add(Me.pbTime)
|
||||||
Me.Controls.Add(Me.lblStatus3)
|
Me.Controls.Add(Me.lblStatus3)
|
||||||
@@ -538,7 +539,6 @@ Partial Class frmMain
|
|||||||
Me.Controls.Add(Me.gMonStatusStrip)
|
Me.Controls.Add(Me.gMonStatusStrip)
|
||||||
Me.Controls.Add(Me.gMonMainMenu)
|
Me.Controls.Add(Me.gMonMainMenu)
|
||||||
Me.Controls.Add(Me.txtLog)
|
Me.Controls.Add(Me.txtLog)
|
||||||
Me.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
|
|
||||||
Me.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle
|
Me.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle
|
||||||
Me.Icon = CType(resources.GetObject("$this.Icon"), System.Drawing.Icon)
|
Me.Icon = CType(resources.GetObject("$this.Icon"), System.Drawing.Icon)
|
||||||
Me.KeyPreview = True
|
Me.KeyPreview = True
|
||||||
|
|||||||
+246
-81
@@ -1,4 +1,5 @@
|
|||||||
Imports GBM.My.Resources
|
Imports GBM.My.Resources
|
||||||
|
Imports System.IO
|
||||||
|
|
||||||
'Name: frmMain
|
'Name: frmMain
|
||||||
'Description: Game Backup Monitor Main Screen
|
'Description: Game Backup Monitor Main Screen
|
||||||
@@ -38,12 +39,19 @@ Public Class frmMain
|
|||||||
Private sPriorPath As String
|
Private sPriorPath As String
|
||||||
Private sPriorCompany As String
|
Private sPriorCompany As String
|
||||||
Private sPriorVersion As String
|
Private sPriorVersion As String
|
||||||
|
Private iFormHeight As Integer
|
||||||
|
Private iLogSpacer As Integer
|
||||||
|
Private iRestoreTimeOut As Integer
|
||||||
|
|
||||||
'Developer Debug Flags
|
'Developer Debug Flags
|
||||||
Private bProcessDebugMode As Boolean = False
|
Private bProcessDebugMode As Boolean = False
|
||||||
|
|
||||||
WithEvents oFileWatcher As New System.IO.FileSystemWatcher
|
WithEvents oFileWatcher As New FileSystemWatcher
|
||||||
|
|
||||||
|
'Timers - There may only be one System.Windows.Forms.Timer and it must be tmScanTimer.
|
||||||
WithEvents tmScanTimer As New Timer
|
WithEvents tmScanTimer As New Timer
|
||||||
|
WithEvents tmRestoreCheck As New System.Timers.Timer
|
||||||
|
WithEvents tmFileWatcherQueue As New System.Timers.Timer
|
||||||
|
|
||||||
Public WithEvents oProcess As New mgrProcesses
|
Public WithEvents oProcess As New mgrProcesses
|
||||||
Public WithEvents oBackup As New mgrBackup
|
Public WithEvents oBackup As New mgrBackup
|
||||||
@@ -51,6 +59,7 @@ Public Class frmMain
|
|||||||
Public hshScanList As Hashtable
|
Public hshScanList As Hashtable
|
||||||
Public oSettings As New mgrSettings
|
Public oSettings As New mgrSettings
|
||||||
|
|
||||||
|
Delegate Sub UpdateNotifierCallBack(ByVal iCount As Integer)
|
||||||
Delegate Sub UpdateLogCallBack(ByVal sLogUpdate As String, ByVal bTrayUpdate As Boolean, ByVal objIcon As System.Windows.Forms.ToolTipIcon, ByVal bTimeStamp As Boolean)
|
Delegate Sub UpdateLogCallBack(ByVal sLogUpdate As String, ByVal bTrayUpdate As Boolean, ByVal objIcon As System.Windows.Forms.ToolTipIcon, ByVal bTimeStamp As Boolean)
|
||||||
Delegate Sub WorkingGameInfoCallBack(ByVal sTitle As String, ByVal sStatus1 As String, ByVal sStatus2 As String, ByVal sStatus3 As String)
|
Delegate Sub WorkingGameInfoCallBack(ByVal sTitle As String, ByVal sStatus1 As String, ByVal sStatus2 As String, ByVal sStatus3 As String)
|
||||||
Delegate Sub UpdateStatusCallBack(ByVal sStatus As String)
|
Delegate Sub UpdateStatusCallBack(ByVal sStatus As String)
|
||||||
@@ -77,7 +86,7 @@ Public Class frmMain
|
|||||||
Dim sStatus3 As String
|
Dim sStatus3 As String
|
||||||
|
|
||||||
'Build Info
|
'Build Info
|
||||||
sStatus1 = IO.Path.GetFileName(oRestoreInfo.FileName)
|
sStatus1 = Path.GetFileName(oRestoreInfo.FileName)
|
||||||
sStatus2 = mgrCommon.FormatString(frmMain_UpdatedBy, New String() {oRestoreInfo.UpdatedBy, oRestoreInfo.DateUpdated})
|
sStatus2 = mgrCommon.FormatString(frmMain_UpdatedBy, New String() {oRestoreInfo.UpdatedBy, oRestoreInfo.DateUpdated})
|
||||||
If oRestoreInfo.AbsolutePath Then
|
If oRestoreInfo.AbsolutePath Then
|
||||||
sStatus3 = oRestoreInfo.RestorePath
|
sStatus3 = oRestoreInfo.RestorePath
|
||||||
@@ -99,7 +108,7 @@ Public Class frmMain
|
|||||||
If oGame.AbsolutePath Then
|
If oGame.AbsolutePath Then
|
||||||
sStatus2 = oGame.Path
|
sStatus2 = oGame.Path
|
||||||
Else
|
Else
|
||||||
sStatus2 = oGame.ProcessPath & System.IO.Path.DirectorySeparatorChar & oGame.Path
|
sStatus2 = oGame.ProcessPath & Path.DirectorySeparatorChar & oGame.Path
|
||||||
End If
|
End If
|
||||||
sStatus3 = String.Empty
|
sStatus3 = String.Empty
|
||||||
|
|
||||||
@@ -157,8 +166,7 @@ Public Class frmMain
|
|||||||
OperationEnded()
|
OperationEnded()
|
||||||
End Sub
|
End Sub
|
||||||
|
|
||||||
Private Sub RunRestore(ByVal oRestoreList As List(Of clsGame))
|
Private Sub RunRestore(ByVal oRestoreList As Hashtable)
|
||||||
Dim oBackupData As SortedList = mgrManifest.ReadManifest(mgrSQLite.Database.Remote)
|
|
||||||
Dim oGame As clsGame
|
Dim oGame As clsGame
|
||||||
Dim oReadyList As New List(Of clsBackup)
|
Dim oReadyList As New List(Of clsBackup)
|
||||||
Dim oRestoreInfo As clsBackup
|
Dim oRestoreInfo As clsBackup
|
||||||
@@ -168,9 +176,10 @@ Public Class frmMain
|
|||||||
OperationStarted()
|
OperationStarted()
|
||||||
|
|
||||||
'Build Restore List
|
'Build Restore List
|
||||||
For Each oGame In oRestoreList
|
For Each de As DictionaryEntry In oRestoreList
|
||||||
bPathVerified = False
|
bPathVerified = False
|
||||||
oRestoreInfo = oBackupData(oGame.Name)
|
oGame = DirectCast(de.Key, clsGame)
|
||||||
|
oRestoreInfo = DirectCast(de.Value, clsBackup)
|
||||||
|
|
||||||
If mgrRestore.CheckPath(oRestoreInfo, oGame, bTriggerReload) Then
|
If mgrRestore.CheckPath(oRestoreInfo, oGame, bTriggerReload) Then
|
||||||
bPathVerified = True
|
bPathVerified = True
|
||||||
@@ -179,7 +188,7 @@ Public Class frmMain
|
|||||||
End If
|
End If
|
||||||
|
|
||||||
If bPathVerified Then
|
If bPathVerified Then
|
||||||
If oRestore.CheckRestorePrereq(oRestoreInfo) Then
|
If oRestore.CheckRestorePrereq(oRestoreInfo, oGame.CleanFolder) Then
|
||||||
oReadyList.Add(oRestoreInfo)
|
oReadyList.Add(oRestoreInfo)
|
||||||
End If
|
End If
|
||||||
End If
|
End If
|
||||||
@@ -326,15 +335,17 @@ Public Class frmMain
|
|||||||
End If
|
End If
|
||||||
End Sub
|
End Sub
|
||||||
|
|
||||||
Private Sub CheckRestore()
|
Private Sub UpdateNotifier(ByVal iCount As Integer)
|
||||||
Dim slRestoreData As SortedList = mgrRestore.CompareManifests()
|
'Thread Safe
|
||||||
Dim sNotification As String
|
If Me.InvokeRequired = True Then
|
||||||
|
Dim d As New UpdateNotifierCallBack(AddressOf UpdateNotifier)
|
||||||
If slRestoreData.Count > 0 Then
|
Me.Invoke(d, New Object() {iCount})
|
||||||
If slRestoreData.Count > 1 Then
|
Else
|
||||||
sNotification = mgrCommon.FormatString(frmMain_NewSaveNotificationMulti, slRestoreData.Count)
|
Dim sNotification As String
|
||||||
|
If iCount > 1 Then
|
||||||
|
sNotification = mgrCommon.FormatString(frmMain_NewSaveNotificationMulti, iCount)
|
||||||
Else
|
Else
|
||||||
sNotification = mgrCommon.FormatString(frmMain_NewSaveNotificationSingle, slRestoreData.Count)
|
sNotification = mgrCommon.FormatString(frmMain_NewSaveNotificationSingle, iCount)
|
||||||
End If
|
End If
|
||||||
gMonNotification.Image = Icon_Inbox
|
gMonNotification.Image = Icon_Inbox
|
||||||
gMonTrayNotification.Image = Icon_Inbox
|
gMonTrayNotification.Image = Icon_Inbox
|
||||||
@@ -345,6 +356,149 @@ Public Class frmMain
|
|||||||
End If
|
End If
|
||||||
End Sub
|
End Sub
|
||||||
|
|
||||||
|
Private Sub StartRestoreCheck()
|
||||||
|
iRestoreTimeOut = -1
|
||||||
|
tmRestoreCheck.Interval = 60000
|
||||||
|
tmRestoreCheck.AutoReset = True
|
||||||
|
tmRestoreCheck.Start()
|
||||||
|
AutoRestoreCheck()
|
||||||
|
End Sub
|
||||||
|
|
||||||
|
Private Sub AutoRestoreCheck()
|
||||||
|
Dim slRestoreData As SortedList = mgrRestore.CompareManifests()
|
||||||
|
Dim sNotReady As New List(Of String)
|
||||||
|
Dim sNotInstalled As New List(Of String)
|
||||||
|
Dim sNoCheckSum As New List(Of String)
|
||||||
|
Dim oBackup As clsBackup
|
||||||
|
Dim sFileName As String
|
||||||
|
Dim sExtractPath As String
|
||||||
|
Dim bFinished As Boolean = True
|
||||||
|
Dim hshRestore As Hashtable
|
||||||
|
Dim hshGames As Hashtable
|
||||||
|
Dim oGame As clsGame
|
||||||
|
Dim sGame As String
|
||||||
|
|
||||||
|
'Shut down the timer and bail out if there's nothing to do
|
||||||
|
If slRestoreData.Count = 0 Then
|
||||||
|
tmRestoreCheck.Stop()
|
||||||
|
Exit Sub
|
||||||
|
End If
|
||||||
|
|
||||||
|
If oSettings.AutoMark Or oSettings.AutoRestore Then
|
||||||
|
'Increment Timer
|
||||||
|
iRestoreTimeOut += 1
|
||||||
|
|
||||||
|
'Check backup files
|
||||||
|
For Each de As DictionaryEntry In slRestoreData
|
||||||
|
oBackup = DirectCast(de.Value, clsBackup)
|
||||||
|
|
||||||
|
'Check if backup file is ready to restore
|
||||||
|
If oBackup.CheckSum <> String.Empty Then
|
||||||
|
sFileName = oSettings.BackupFolder & Path.DirectorySeparatorChar & oBackup.FileName
|
||||||
|
If mgrHash.Generate_SHA256_Hash(sFileName) <> oBackup.CheckSum Then
|
||||||
|
sNotReady.Add(de.Key)
|
||||||
|
bFinished = False
|
||||||
|
End If
|
||||||
|
Else
|
||||||
|
sNoCheckSum.Add(de.Key)
|
||||||
|
End If
|
||||||
|
|
||||||
|
'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)
|
||||||
|
If hshGames.Count = 1 Then
|
||||||
|
oGame = DirectCast(hshGames(0), clsGame)
|
||||||
|
mgrRestore.DoPathOverride(oBackup, oGame)
|
||||||
|
If oGame.ProcessPath <> String.Empty Then
|
||||||
|
oBackup.RelativeRestorePath = oGame.ProcessPath & Path.DirectorySeparatorChar & oBackup.RestorePath
|
||||||
|
End If
|
||||||
|
End If
|
||||||
|
|
||||||
|
If oBackup.AbsolutePath Then
|
||||||
|
sExtractPath = oBackup.RestorePath
|
||||||
|
Else
|
||||||
|
sExtractPath = oBackup.RelativeRestorePath
|
||||||
|
End If
|
||||||
|
|
||||||
|
If Not Directory.Exists(sExtractPath) Then
|
||||||
|
If oSettings.AutoMark Then
|
||||||
|
If mgrManifest.DoGlobalManifestCheck(de.Key, mgrSQLite.Database.Local) Then
|
||||||
|
mgrManifest.DoManifestUpdateByName(de.Value, mgrSQLite.Database.Local)
|
||||||
|
Else
|
||||||
|
mgrManifest.DoManifestAdd(de.Value, mgrSQLite.Database.Local)
|
||||||
|
End If
|
||||||
|
End If
|
||||||
|
sNotInstalled.Add(de.Key)
|
||||||
|
End If
|
||||||
|
Next
|
||||||
|
|
||||||
|
'Remove any backup files that are not ready
|
||||||
|
For Each s As String In sNotReady
|
||||||
|
slRestoreData.Remove(s)
|
||||||
|
UpdateLog(mgrCommon.FormatString(frmMain_RestoreNotReady, s), False, ToolTipIcon.Info, True)
|
||||||
|
Next
|
||||||
|
|
||||||
|
'Remove any backup files that should not be automatically restored
|
||||||
|
For Each s As String In sNotInstalled
|
||||||
|
slRestoreData.Remove(s)
|
||||||
|
If oSettings.AutoMark Then
|
||||||
|
UpdateLog(mgrCommon.FormatString(frmMain_AutoMark, s), False, ToolTipIcon.Info, True)
|
||||||
|
Else
|
||||||
|
UpdateLog(mgrCommon.FormatString(frmMain_NoAutoMark, s), False, ToolTipIcon.Info, True)
|
||||||
|
End If
|
||||||
|
Next
|
||||||
|
For Each s As String In sNoCheckSum
|
||||||
|
slRestoreData.Remove(s)
|
||||||
|
UpdateLog(mgrCommon.FormatString(frmMain_NoCheckSum, s), False, ToolTipIcon.Info, True)
|
||||||
|
Next
|
||||||
|
|
||||||
|
'Automatically restore backup files
|
||||||
|
If oSettings.AutoRestore Then
|
||||||
|
If slRestoreData.Count > 0 Then
|
||||||
|
hshRestore = New Hashtable
|
||||||
|
sGame = String.Empty
|
||||||
|
For Each de As DictionaryEntry In slRestoreData
|
||||||
|
hshGames = mgrMonitorList.DoListGetbyName(de.Key)
|
||||||
|
If hshGames.Count = 1 Then
|
||||||
|
oGame = DirectCast(hshGames(0), clsGame)
|
||||||
|
sGame = oGame.CroppedName
|
||||||
|
hshRestore.Add(oGame, de.Value)
|
||||||
|
Else
|
||||||
|
UpdateLog(mgrCommon.FormatString(frmMain_AutoRestoreFailure, de.Key), False, ToolTipIcon.Info, True)
|
||||||
|
End If
|
||||||
|
Next
|
||||||
|
|
||||||
|
'Handle notifications
|
||||||
|
If oSettings.RestoreOnLaunch Then
|
||||||
|
If slRestoreData.Count > 1 Then
|
||||||
|
UpdateLog(mgrCommon.FormatString(frmMain_RestoreNotificationMulti, slRestoreData.Count), True, ToolTipIcon.Info, True)
|
||||||
|
Else
|
||||||
|
UpdateLog(mgrCommon.FormatString(frmMain_RestoreNotificationSingle, sGame), True, ToolTipIcon.Info, True)
|
||||||
|
End If
|
||||||
|
End If
|
||||||
|
|
||||||
|
RunRestore(hshRestore)
|
||||||
|
End If
|
||||||
|
End If
|
||||||
|
|
||||||
|
'Shutdown if we are finished
|
||||||
|
If bFinished Then
|
||||||
|
tmRestoreCheck.Stop()
|
||||||
|
End If
|
||||||
|
|
||||||
|
'Time out after 15 minutes
|
||||||
|
If iRestoreTimeOut = 15 Then
|
||||||
|
tmRestoreCheck.Stop()
|
||||||
|
End If
|
||||||
|
End If
|
||||||
|
|
||||||
|
'Update the menu notifier if we aren't using auto restore
|
||||||
|
If oSettings.RestoreOnLaunch And Not oSettings.AutoRestore Then
|
||||||
|
If slRestoreData.Count > 0 Then
|
||||||
|
UpdateNotifier(slRestoreData.Count)
|
||||||
|
End If
|
||||||
|
End If
|
||||||
|
End Sub
|
||||||
|
|
||||||
'Functions handling the display of game information
|
'Functions handling the display of game information
|
||||||
Private Sub SetIcon()
|
Private Sub SetIcon()
|
||||||
Dim sIcon As String
|
Dim sIcon As String
|
||||||
@@ -362,7 +516,7 @@ Public Class frmMain
|
|||||||
End If
|
End If
|
||||||
|
|
||||||
Try
|
Try
|
||||||
fbBrowser.InitialDirectory = IO.Path.GetDirectoryName(oProcess.FoundProcess.MainModule.FileName)
|
fbBrowser.InitialDirectory = Path.GetDirectoryName(oProcess.FoundProcess.MainModule.FileName)
|
||||||
Catch ex As Exception
|
Catch ex As Exception
|
||||||
fbBrowser.InitialDirectory = Environment.GetFolderPath(Environment.SpecialFolder.MyDocuments)
|
fbBrowser.InitialDirectory = Environment.GetFolderPath(Environment.SpecialFolder.MyDocuments)
|
||||||
End Try
|
End Try
|
||||||
@@ -370,7 +524,7 @@ Public Class frmMain
|
|||||||
|
|
||||||
If fbBrowser.ShowDialog() = Windows.Forms.DialogResult.OK Then
|
If fbBrowser.ShowDialog() = Windows.Forms.DialogResult.OK Then
|
||||||
sIcon = fbBrowser.FileName
|
sIcon = fbBrowser.FileName
|
||||||
If IO.File.Exists(sIcon) Then
|
If File.Exists(sIcon) Then
|
||||||
oProcess.GameInfo.Icon = sIcon
|
oProcess.GameInfo.Icon = sIcon
|
||||||
pbIcon.Image = Image.FromFile(sIcon)
|
pbIcon.Image = Image.FromFile(sIcon)
|
||||||
mgrMonitorList.DoListUpdate(oProcess.GameInfo)
|
mgrMonitorList.DoListUpdate(oProcess.GameInfo)
|
||||||
@@ -461,7 +615,7 @@ Public Class frmMain
|
|||||||
End Try
|
End Try
|
||||||
|
|
||||||
'Check for a custom icon & details
|
'Check for a custom icon & details
|
||||||
If IO.File.Exists(oProcess.GameInfo.Icon) Then
|
If File.Exists(oProcess.GameInfo.Icon) Then
|
||||||
pbIcon.Image = Image.FromFile(oProcess.GameInfo.Icon)
|
pbIcon.Image = Image.FromFile(oProcess.GameInfo.Icon)
|
||||||
End If
|
End If
|
||||||
If sFileName = String.Empty Then
|
If sFileName = String.Empty Then
|
||||||
@@ -650,6 +804,7 @@ Public Class frmMain
|
|||||||
bProcessDebugMode = bDebugEnable
|
bProcessDebugMode = bDebugEnable
|
||||||
mgrCommon.ShowMessage(frmMain_CommandSucess, MsgBoxStyle.Exclamation)
|
mgrCommon.ShowMessage(frmMain_CommandSucess, MsgBoxStyle.Exclamation)
|
||||||
End Select
|
End Select
|
||||||
|
|
||||||
Case Else
|
Case Else
|
||||||
mgrCommon.ShowMessage(frmMain_ErrorCommandInvalid, sMainCommand, MsgBoxStyle.Exclamation)
|
mgrCommon.ShowMessage(frmMain_ErrorCommandInvalid, sMainCommand, MsgBoxStyle.Exclamation)
|
||||||
End Select
|
End Select
|
||||||
@@ -659,9 +814,9 @@ Public Class frmMain
|
|||||||
|
|
||||||
Private Sub OpenAbout()
|
Private Sub OpenAbout()
|
||||||
Dim iProcessType As System.Reflection.ProcessorArchitecture = System.Reflection.AssemblyName.GetAssemblyName(Application.ExecutablePath()).ProcessorArchitecture
|
Dim iProcessType As System.Reflection.ProcessorArchitecture = System.Reflection.AssemblyName.GetAssemblyName(Application.ExecutablePath()).ProcessorArchitecture
|
||||||
Dim sVersion As String = My.Application.Info.Version.Major & "." & My.Application.Info.Version.Minor
|
Dim sVersion As String = My.Application.Info.Version.Major & "." & My.Application.Info.Version.Minor & "." & My.Application.Info.Version.Build
|
||||||
Dim sProcessType = [Enum].GetName(GetType(System.Reflection.ProcessorArchitecture), iProcessType)
|
Dim sProcessType = [Enum].GetName(GetType(System.Reflection.ProcessorArchitecture), iProcessType)
|
||||||
Dim sRevision As String = My.Application.Info.Version.Build & "." & My.Application.Info.Version.Revision
|
Dim sRevision As String = My.Application.Info.Version.Revision
|
||||||
Dim sConstCopyright As String = Chr(169) & mgrCommon.FormatString(App_Copyright, Now.Year.ToString)
|
Dim sConstCopyright As String = Chr(169) & mgrCommon.FormatString(App_Copyright, Now.Year.ToString)
|
||||||
|
|
||||||
mgrCommon.ShowMessage(frmMain_About, New String() {sVersion, sProcessType, sRevision, sConstCopyright}, MsgBoxStyle.Information)
|
mgrCommon.ShowMessage(frmMain_About, New String() {sVersion, sProcessType, sRevision, sConstCopyright}, MsgBoxStyle.Information)
|
||||||
@@ -754,8 +909,8 @@ Public Class frmMain
|
|||||||
End Sub
|
End Sub
|
||||||
|
|
||||||
Private Sub CheckForNewBackups()
|
Private Sub CheckForNewBackups()
|
||||||
If oSettings.RestoreOnLaunch Then
|
If oSettings.RestoreOnLaunch Or oSettings.AutoRestore Or oSettings.AutoMark Then
|
||||||
CheckRestore()
|
StartRestoreCheck()
|
||||||
End If
|
End If
|
||||||
End Sub
|
End Sub
|
||||||
|
|
||||||
@@ -768,32 +923,37 @@ Public Class frmMain
|
|||||||
End Sub
|
End Sub
|
||||||
|
|
||||||
Private Sub StartSyncWatcher()
|
Private Sub StartSyncWatcher()
|
||||||
If oSettings.Sync Then
|
oFileWatcher.EnableRaisingEvents = True
|
||||||
oFileWatcher.EnableRaisingEvents = True
|
|
||||||
End If
|
|
||||||
End Sub
|
End Sub
|
||||||
|
|
||||||
Private Sub StopSyncWatcher()
|
Private Sub StopSyncWatcher()
|
||||||
If oSettings.Sync Then
|
oFileWatcher.EnableRaisingEvents = False
|
||||||
oFileWatcher.EnableRaisingEvents = False
|
|
||||||
End If
|
|
||||||
End Sub
|
End Sub
|
||||||
|
|
||||||
Private Sub SetupSyncWatcher()
|
Private Sub SetupSyncWatcher()
|
||||||
If oSettings.Sync Then
|
oFileWatcher.Path = oSettings.BackupFolder
|
||||||
oFileWatcher.Path = oSettings.BackupFolder
|
oFileWatcher.Filter = "gbm.s3db"
|
||||||
oFileWatcher.Filter = "gbm.s3db"
|
oFileWatcher.NotifyFilter = NotifyFilters.LastWrite
|
||||||
oFileWatcher.NotifyFilter = IO.NotifyFilters.LastWrite
|
|
||||||
End If
|
|
||||||
End Sub
|
End Sub
|
||||||
|
|
||||||
Private Sub HandleSyncWatcher() Handles oFileWatcher.Changed
|
Private Sub QueueSyncWatcher() Handles oFileWatcher.Changed
|
||||||
|
tmFileWatcherQueue.Stop()
|
||||||
|
tmFileWatcherQueue.AutoReset = False
|
||||||
|
tmFileWatcherQueue.Interval = 30000
|
||||||
|
tmFileWatcherQueue.Start()
|
||||||
|
End Sub
|
||||||
|
|
||||||
|
Private Sub HandleSyncWatcher() Handles tmFileWatcherQueue.Elapsed
|
||||||
|
tmFileWatcherQueue.Stop()
|
||||||
|
StopSyncWatcher()
|
||||||
If oSettings.Sync Then
|
If oSettings.Sync Then
|
||||||
UpdateLog(frmMain_MasterListChanged, False, ToolTipIcon.Info, True)
|
UpdateLog(frmMain_MasterListChanged, False, ToolTipIcon.Info, True)
|
||||||
SyncGameSettings()
|
SyncGameSettings()
|
||||||
LoadGameSettings()
|
LoadGameSettings()
|
||||||
CheckForNewBackups()
|
|
||||||
End If
|
End If
|
||||||
|
CheckForNewBackups()
|
||||||
|
StartSyncWatcher()
|
||||||
End Sub
|
End Sub
|
||||||
|
|
||||||
Private Sub SyncGameSettings()
|
Private Sub SyncGameSettings()
|
||||||
@@ -813,6 +973,13 @@ Public Class frmMain
|
|||||||
|
|
||||||
Private Sub LoadAndVerify()
|
Private Sub LoadAndVerify()
|
||||||
|
|
||||||
|
'If the default utility is missing we cannot continue
|
||||||
|
If Not oBackup.CheckForUtilities(mgrPath.Default7zLocation) Then
|
||||||
|
mgrCommon.ShowMessage(frmMain_Error7zip, MsgBoxStyle.Critical)
|
||||||
|
bInitFail = True
|
||||||
|
Exit Sub
|
||||||
|
End If
|
||||||
|
|
||||||
'Local Database Check
|
'Local Database Check
|
||||||
VerifyDBVersion(mgrSQLite.Database.Local)
|
VerifyDBVersion(mgrSQLite.Database.Local)
|
||||||
LocalDatabaseCheck()
|
LocalDatabaseCheck()
|
||||||
@@ -825,8 +992,8 @@ Public Class frmMain
|
|||||||
If Not bFirstRun Then
|
If Not bFirstRun Then
|
||||||
'The application cannot continue if this fails
|
'The application cannot continue if this fails
|
||||||
If Not VerifyBackupLocation() Then
|
If Not VerifyBackupLocation() Then
|
||||||
bShutdown = True
|
bInitFail = True
|
||||||
Me.Close()
|
Exit Sub
|
||||||
End If
|
End If
|
||||||
|
|
||||||
'Remote Database Check
|
'Remote Database Check
|
||||||
@@ -857,34 +1024,20 @@ Public Class frmMain
|
|||||||
End If
|
End If
|
||||||
End If
|
End If
|
||||||
|
|
||||||
'If the default utility is missing we cannot continue
|
|
||||||
If Not oBackup.CheckForUtilities(mgrPath.Default7zLocation) Then
|
|
||||||
mgrCommon.ShowMessage(frmMain_Error7zip, MsgBoxStyle.Critical)
|
|
||||||
bShutdown = True
|
|
||||||
Me.Close()
|
|
||||||
End If
|
|
||||||
|
|
||||||
End Sub
|
End Sub
|
||||||
|
|
||||||
'Functions that handle buttons, menus and other GUI features on this form
|
'Functions that handle buttons, menus and other GUI features on this form
|
||||||
Private Sub ToggleLog()
|
Private Sub ToggleLog()
|
||||||
If bLogToggle = False Then
|
If bLogToggle = False Then
|
||||||
txtLog.Visible = True
|
txtLog.Visible = True
|
||||||
|
Me.Size = New System.Drawing.Size(Me.Size.Width, iFormHeight)
|
||||||
'Unix Handler
|
|
||||||
If mgrCommon.IsUnix Then
|
|
||||||
Me.Size = New System.Drawing.Size(Me.Size.Width, 440)
|
|
||||||
Else
|
|
||||||
Me.Size = New System.Drawing.Size(Me.Size.Width, 425)
|
|
||||||
End If
|
|
||||||
|
|
||||||
bLogToggle = True
|
bLogToggle = True
|
||||||
btnLogToggle.Text = frmMain_btnToggleLog_Hide
|
btnLogToggle.Text = frmMain_btnToggleLog_Hide
|
||||||
txtLog.Select(txtLog.TextLength, 0)
|
txtLog.Select(txtLog.TextLength, 0)
|
||||||
txtLog.ScrollToCaret()
|
txtLog.ScrollToCaret()
|
||||||
Else
|
Else
|
||||||
txtLog.Visible = False
|
txtLog.Visible = False
|
||||||
Me.Size = New System.Drawing.Size(Me.Size.Width, 245)
|
Me.Size = New System.Drawing.Size(Me.Size.Width, Me.Size.Height - (txtLog.Height + iLogSpacer))
|
||||||
bLogToggle = False
|
bLogToggle = False
|
||||||
btnLogToggle.Text = frmMain_btnToggleLog_Show
|
btnLogToggle.Text = frmMain_btnToggleLog_Show
|
||||||
End If
|
End If
|
||||||
@@ -1082,7 +1235,7 @@ Public Class frmMain
|
|||||||
txtLog.ScrollToCaret()
|
txtLog.ScrollToCaret()
|
||||||
gMonTray.BalloonTipText = sLogUpdate
|
gMonTray.BalloonTipText = sLogUpdate
|
||||||
gMonTray.BalloonTipIcon = objIcon
|
gMonTray.BalloonTipIcon = objIcon
|
||||||
If bTrayUpdate Then gMonTray.ShowBalloonTip(5000)
|
If bTrayUpdate Then gMonTray.ShowBalloonTip(10000)
|
||||||
End If
|
End If
|
||||||
Application.DoEvents()
|
Application.DoEvents()
|
||||||
End Sub
|
End Sub
|
||||||
@@ -1104,6 +1257,9 @@ Public Class frmMain
|
|||||||
End Sub
|
End Sub
|
||||||
|
|
||||||
Private Sub SetForm()
|
Private Sub SetForm()
|
||||||
|
'Disable Autosize in Linux (Mono prevents manual resizing when this is enabled)
|
||||||
|
If mgrCommon.IsUnix Then Me.AutoSize = False
|
||||||
|
|
||||||
'Set Form Name
|
'Set Form Name
|
||||||
Me.Name = App_NameLong
|
Me.Name = App_NameLong
|
||||||
|
|
||||||
@@ -1166,7 +1322,9 @@ Public Class frmMain
|
|||||||
lblLastAction.Text = String.Empty
|
lblLastAction.Text = String.Empty
|
||||||
pbTime.SizeMode = PictureBoxSizeMode.AutoSize
|
pbTime.SizeMode = PictureBoxSizeMode.AutoSize
|
||||||
pbTime.Image = Icon_Clock
|
pbTime.Image = Icon_Clock
|
||||||
Me.Size = New System.Drawing.Size(Me.Size.Width, 245)
|
iFormHeight = Me.Size.Height
|
||||||
|
iLogSpacer = gMonStatusStrip.Location.Y - (txtLog.Location.Y + txtLog.Height)
|
||||||
|
Me.Size = New System.Drawing.Size(Me.Size.Width, Me.Size.Height - (txtLog.Height + iLogSpacer))
|
||||||
AddHandler mgrMonitorList.UpdateLog, AddressOf UpdateLog
|
AddHandler mgrMonitorList.UpdateLog, AddressOf UpdateLog
|
||||||
ResetGameInfo()
|
ResetGameInfo()
|
||||||
End Sub
|
End Sub
|
||||||
@@ -1261,9 +1419,9 @@ Public Class frmMain
|
|||||||
Dim sSettingsRoot As String = Environment.GetFolderPath(Environment.SpecialFolder.LocalApplicationData) & "/gbm"
|
Dim sSettingsRoot As String = Environment.GetFolderPath(Environment.SpecialFolder.LocalApplicationData) & "/gbm"
|
||||||
Dim sDBLocation As String = sSettingsRoot & "/gbm.s3db"
|
Dim sDBLocation As String = sSettingsRoot & "/gbm.s3db"
|
||||||
|
|
||||||
If Not IO.Directory.Exists(sSettingsRoot) Then
|
If Not Directory.Exists(sSettingsRoot) Then
|
||||||
Try
|
Try
|
||||||
IO.Directory.CreateDirectory(sSettingsRoot)
|
Directory.CreateDirectory(sSettingsRoot)
|
||||||
Catch ex As Exception
|
Catch ex As Exception
|
||||||
mgrCommon.ShowMessage(frmMain_ErrorSettingsFolder, ex.Message, MsgBoxStyle.Critical)
|
mgrCommon.ShowMessage(frmMain_ErrorSettingsFolder, ex.Message, MsgBoxStyle.Critical)
|
||||||
bShutdown = True
|
bShutdown = True
|
||||||
@@ -1271,7 +1429,7 @@ Public Class frmMain
|
|||||||
End Try
|
End Try
|
||||||
End If
|
End If
|
||||||
|
|
||||||
If Not IO.File.Exists(sDBLocation) Then bFirstRun = True
|
If Not File.Exists(sDBLocation) Then bFirstRun = True
|
||||||
End Sub
|
End Sub
|
||||||
|
|
||||||
Private Sub VerifyDBVersion(ByVal iDB As mgrSQLite.Database)
|
Private Sub VerifyDBVersion(ByVal iDB As mgrSQLite.Database)
|
||||||
@@ -1524,6 +1682,12 @@ Public Class frmMain
|
|||||||
End If
|
End If
|
||||||
End Sub
|
End Sub
|
||||||
|
|
||||||
|
Private Sub AutoRestoreEventProcessor(myObject As Object, ByVal myEventArgs As EventArgs) Handles tmRestoreCheck.Elapsed
|
||||||
|
If eCurrentStatus <> eStatus.Paused Then
|
||||||
|
AutoRestoreCheck()
|
||||||
|
End If
|
||||||
|
End Sub
|
||||||
|
|
||||||
Private Sub ScanTimerEventProcessor(myObject As Object, ByVal myEventArgs As EventArgs) Handles tmScanTimer.Tick
|
Private Sub ScanTimerEventProcessor(myObject As Object, ByVal myEventArgs As EventArgs) Handles tmScanTimer.Tick
|
||||||
Dim bNeedsPath As Boolean = False
|
Dim bNeedsPath As Boolean = False
|
||||||
Dim bContinue As Boolean = True
|
Dim bContinue As Boolean = True
|
||||||
@@ -1643,35 +1807,36 @@ Public Class frmMain
|
|||||||
SetForm()
|
SetForm()
|
||||||
VerifyGameDataPath()
|
VerifyGameDataPath()
|
||||||
LoadAndVerify()
|
LoadAndVerify()
|
||||||
VerifyCustomPathVariables()
|
If Not bInitFail Then
|
||||||
|
VerifyCustomPathVariables()
|
||||||
|
|
||||||
If oSettings.StartToTray And Not mgrCommon.IsUnix Then
|
If oSettings.StartToTray And Not mgrCommon.IsUnix Then
|
||||||
bShowToggle = False
|
bShowToggle = False
|
||||||
Me.Visible = False
|
Me.Visible = False
|
||||||
Me.ShowInTaskbar = False
|
Me.ShowInTaskbar = False
|
||||||
|
End If
|
||||||
|
|
||||||
|
If oSettings.MonitorOnStartup Then
|
||||||
|
eCurrentStatus = eStatus.Stopped
|
||||||
|
Else
|
||||||
|
eCurrentStatus = eStatus.Running
|
||||||
|
End If
|
||||||
|
|
||||||
|
HandleScan()
|
||||||
|
CheckForNewBackups()
|
||||||
|
|
||||||
|
'Unix Handler
|
||||||
|
If mgrCommon.IsUnix Then
|
||||||
|
Me.MinimizeBox = True
|
||||||
|
Else
|
||||||
|
Me.gMonTray.Visible = True
|
||||||
|
End If
|
||||||
End If
|
End If
|
||||||
|
|
||||||
If oSettings.MonitorOnStartup Then
|
|
||||||
eCurrentStatus = eStatus.Stopped
|
|
||||||
Else
|
|
||||||
eCurrentStatus = eStatus.Running
|
|
||||||
End If
|
|
||||||
|
|
||||||
HandleScan()
|
|
||||||
CheckForNewBackups()
|
|
||||||
Catch ex As Exception
|
Catch ex As Exception
|
||||||
If mgrCommon.ShowMessage(frmMain_ErrorInitFailure, ex.Message, MsgBoxStyle.YesNo) = MsgBoxResult.No Then
|
If mgrCommon.ShowMessage(frmMain_ErrorInitFailure, ex.Message, MsgBoxStyle.YesNo) = MsgBoxResult.No Then
|
||||||
bInitFail = True
|
bInitFail = True
|
||||||
End If
|
End If
|
||||||
End Try
|
End Try
|
||||||
|
|
||||||
'Unix Handler
|
|
||||||
If mgrCommon.IsUnix Then
|
|
||||||
Me.MinimizeBox = True
|
|
||||||
Else
|
|
||||||
Me.gMonTray.Visible = True
|
|
||||||
End If
|
|
||||||
|
|
||||||
End Sub
|
End Sub
|
||||||
|
|
||||||
Private Sub frmMain_Shown(sender As Object, e As EventArgs) Handles MyBase.Shown
|
Private Sub frmMain_Shown(sender As Object, e As EventArgs) Handles MyBase.Shown
|
||||||
|
|||||||
Generated
-105
@@ -1,105 +0,0 @@
|
|||||||
<Global.Microsoft.VisualBasic.CompilerServices.DesignerGenerated()> _
|
|
||||||
Partial Class frmManifestViewer
|
|
||||||
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.dgView = New System.Windows.Forms.DataGridView()
|
|
||||||
Me.btnCancel = New System.Windows.Forms.Button()
|
|
||||||
Me.lblError = New System.Windows.Forms.Label()
|
|
||||||
Me.fbBrowser = New System.Windows.Forms.FolderBrowserDialog()
|
|
||||||
Me.cboManifest = New System.Windows.Forms.ComboBox()
|
|
||||||
CType(Me.dgView, System.ComponentModel.ISupportInitialize).BeginInit()
|
|
||||||
Me.SuspendLayout()
|
|
||||||
'
|
|
||||||
'dgView
|
|
||||||
'
|
|
||||||
Me.dgView.Anchor = CType((((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Bottom) _
|
|
||||||
Or System.Windows.Forms.AnchorStyles.Left) _
|
|
||||||
Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
|
|
||||||
Me.dgView.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill
|
|
||||||
Me.dgView.BackgroundColor = System.Drawing.SystemColors.Window
|
|
||||||
Me.dgView.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize
|
|
||||||
Me.dgView.Location = New System.Drawing.Point(12, 12)
|
|
||||||
Me.dgView.Name = "dgView"
|
|
||||||
Me.dgView.RowHeadersVisible = False
|
|
||||||
Me.dgView.Size = New System.Drawing.Size(960, 338)
|
|
||||||
Me.dgView.TabIndex = 0
|
|
||||||
'
|
|
||||||
'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(897, 356)
|
|
||||||
Me.btnCancel.Name = "btnCancel"
|
|
||||||
Me.btnCancel.Size = New System.Drawing.Size(75, 23)
|
|
||||||
Me.btnCancel.TabIndex = 2
|
|
||||||
Me.btnCancel.Text = "C&lose"
|
|
||||||
Me.btnCancel.UseVisualStyleBackColor = True
|
|
||||||
'
|
|
||||||
'lblError
|
|
||||||
'
|
|
||||||
Me.lblError.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
|
|
||||||
Me.lblError.AutoSize = True
|
|
||||||
Me.lblError.Location = New System.Drawing.Point(139, 362)
|
|
||||||
Me.lblError.Name = "lblError"
|
|
||||||
Me.lblError.Size = New System.Drawing.Size(54, 13)
|
|
||||||
Me.lblError.TabIndex = 5
|
|
||||||
Me.lblError.Text = "Info Label"
|
|
||||||
'
|
|
||||||
'fbBrowser
|
|
||||||
'
|
|
||||||
Me.fbBrowser.ShowNewFolderButton = False
|
|
||||||
'
|
|
||||||
'cboManifest
|
|
||||||
'
|
|
||||||
Me.cboManifest.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
|
|
||||||
Me.cboManifest.FormattingEnabled = True
|
|
||||||
Me.cboManifest.Location = New System.Drawing.Point(12, 359)
|
|
||||||
Me.cboManifest.Name = "cboManifest"
|
|
||||||
Me.cboManifest.Size = New System.Drawing.Size(121, 21)
|
|
||||||
Me.cboManifest.TabIndex = 6
|
|
||||||
'
|
|
||||||
'frmManifestViewer
|
|
||||||
'
|
|
||||||
Me.AutoScaleDimensions = New System.Drawing.SizeF(6.0!, 13.0!)
|
|
||||||
Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font
|
|
||||||
Me.ClientSize = New System.Drawing.Size(984, 392)
|
|
||||||
Me.Controls.Add(Me.cboManifest)
|
|
||||||
Me.Controls.Add(Me.lblError)
|
|
||||||
Me.Controls.Add(Me.btnCancel)
|
|
||||||
Me.Controls.Add(Me.dgView)
|
|
||||||
Me.MinimizeBox = False
|
|
||||||
Me.Name = "frmManifestViewer"
|
|
||||||
Me.ShowIcon = False
|
|
||||||
Me.ShowInTaskbar = False
|
|
||||||
Me.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen
|
|
||||||
Me.Text = "Manifest Viewer"
|
|
||||||
CType(Me.dgView, System.ComponentModel.ISupportInitialize).EndInit()
|
|
||||||
Me.ResumeLayout(False)
|
|
||||||
Me.PerformLayout()
|
|
||||||
|
|
||||||
End Sub
|
|
||||||
Friend WithEvents dgView As System.Windows.Forms.DataGridView
|
|
||||||
Friend WithEvents btnCancel As System.Windows.Forms.Button
|
|
||||||
Friend WithEvents lblError As System.Windows.Forms.Label
|
|
||||||
Friend WithEvents fbBrowser As System.Windows.Forms.FolderBrowserDialog
|
|
||||||
Friend WithEvents cboManifest As System.Windows.Forms.ComboBox
|
|
||||||
End Class
|
|
||||||
@@ -1,123 +0,0 @@
|
|||||||
<?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>
|
|
||||||
<metadata name="fbBrowser.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
|
|
||||||
<value>17, 17</value>
|
|
||||||
</metadata>
|
|
||||||
</root>
|
|
||||||
@@ -1,149 +0,0 @@
|
|||||||
Public Class frmManifestViewer
|
|
||||||
|
|
||||||
Private bShutdown As Boolean = False
|
|
||||||
Private oLocalManifest As SortedList
|
|
||||||
Private oRemoteManfiest As SortedList
|
|
||||||
Private oRestoreInfo As clsBackup
|
|
||||||
Private oDataTable As DataTable
|
|
||||||
|
|
||||||
Property RestoreInfo As clsBackup
|
|
||||||
Get
|
|
||||||
Return oRestoreInfo
|
|
||||||
End Get
|
|
||||||
Set(value As clsBackup)
|
|
||||||
oRestoreInfo = value
|
|
||||||
End Set
|
|
||||||
End Property
|
|
||||||
|
|
||||||
Property LocalManifestData As SortedList
|
|
||||||
Get
|
|
||||||
Return oLocalManifest
|
|
||||||
End Get
|
|
||||||
Set(value As SortedList)
|
|
||||||
oLocalManifest = value
|
|
||||||
End Set
|
|
||||||
End Property
|
|
||||||
|
|
||||||
Property RemoteManifestData As SortedList
|
|
||||||
Get
|
|
||||||
Return oRemoteManfiest
|
|
||||||
End Get
|
|
||||||
Set(value As SortedList)
|
|
||||||
oRemoteManfiest = value
|
|
||||||
End Set
|
|
||||||
End Property
|
|
||||||
|
|
||||||
Private Sub FormatManifest(ByVal iManifest As Integer)
|
|
||||||
Dim oRow As Object()
|
|
||||||
Dim oLoadData As SortedList
|
|
||||||
|
|
||||||
If iManifest = 1 Then
|
|
||||||
oLoadData = LocalManifestData
|
|
||||||
Else
|
|
||||||
oLoadData = RemoteManifestData
|
|
||||||
End If
|
|
||||||
|
|
||||||
oDataTable = New DataTable
|
|
||||||
|
|
||||||
'Setup Columns
|
|
||||||
oDataTable.Columns.Add("Name")
|
|
||||||
oDataTable.Columns.Add("Backup Path")
|
|
||||||
oDataTable.Columns.Add("Restore Path")
|
|
||||||
oDataTable.Columns.Add("Absolute Path")
|
|
||||||
oDataTable.Columns.Add("Date Updated")
|
|
||||||
oDataTable.Columns.Add("Updated By")
|
|
||||||
|
|
||||||
|
|
||||||
'Setup Data Types
|
|
||||||
oDataTable.Columns(0).DataType = GetType(String)
|
|
||||||
oDataTable.Columns(1).DataType = GetType(String)
|
|
||||||
oDataTable.Columns(2).DataType = GetType(String)
|
|
||||||
oDataTable.Columns(3).DataType = GetType(Boolean)
|
|
||||||
oDataTable.Columns(4).DataType = GetType(DateTime)
|
|
||||||
oDataTable.Columns(5).DataType = GetType(String)
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
For Each o As clsBackup In oLoadData.Values
|
|
||||||
oRow = New Object() {o.Name, o.FileName, o.RestorePath, o.AbsolutePath, o.DateUpdated, o.UpdatedBy}
|
|
||||||
oDataTable.Rows.Add(oRow)
|
|
||||||
Next
|
|
||||||
|
|
||||||
'Sort
|
|
||||||
oDataTable.DefaultView.Sort = "Name asc"
|
|
||||||
dgView.DataSource = oDataTable
|
|
||||||
|
|
||||||
'Setup Column Widths
|
|
||||||
dgView.Columns(0).MinimumWidth = 100
|
|
||||||
dgView.Columns(1).MinimumWidth = 175
|
|
||||||
dgView.Columns(2).MinimumWidth = 175
|
|
||||||
dgView.Columns(3).MinimumWidth = 60
|
|
||||||
dgView.Columns(4).MinimumWidth = 125
|
|
||||||
dgView.Columns(5).MinimumWidth = 100
|
|
||||||
|
|
||||||
dgView.Columns(0).FillWeight = 100
|
|
||||||
dgView.Columns(1).FillWeight = 100
|
|
||||||
dgView.Columns(2).FillWeight = 100
|
|
||||||
dgView.Columns(3).FillWeight = 25
|
|
||||||
dgView.Columns(4).FillWeight = 50
|
|
||||||
dgView.Columns(5).FillWeight = 50
|
|
||||||
|
|
||||||
End Sub
|
|
||||||
|
|
||||||
Private Sub LoadCombo()
|
|
||||||
Dim oCombo As New List(Of KeyValuePair(Of Integer, String))
|
|
||||||
oCombo.Add(New KeyValuePair(Of Integer, String)(1, "Local Manifest"))
|
|
||||||
oCombo.Add(New KeyValuePair(Of Integer, String)(2, "Remote Manifest"))
|
|
||||||
cboManifest.DataSource = oCombo
|
|
||||||
cboManifest.ValueMember = "key"
|
|
||||||
cboManifest.DisplayMember = "value"
|
|
||||||
End Sub
|
|
||||||
|
|
||||||
Private Sub frmManifestInfo_Load(sender As System.Object, e As System.EventArgs) Handles MyBase.Load
|
|
||||||
dgView.ReadOnly = True
|
|
||||||
dgView.AllowUserToAddRows = False
|
|
||||||
lblError.Text = String.Empty
|
|
||||||
LoadCombo()
|
|
||||||
FormatManifest(CInt(cboManifest.SelectedValue))
|
|
||||||
End Sub
|
|
||||||
|
|
||||||
Private Sub dgView_CellStateChanged(sender As Object, e As DataGridViewCellStateChangedEventArgs) Handles dgView.CellStateChanged
|
|
||||||
lblError.ForeColor = Color.Black
|
|
||||||
|
|
||||||
Select Case dgView.Columns(e.Cell.ColumnIndex).Index
|
|
||||||
Case 0
|
|
||||||
lblError.Text = "The name of the application."
|
|
||||||
Case 1
|
|
||||||
lblError.Text = "The location of the backup file to restore."
|
|
||||||
Case 2
|
|
||||||
lblError.Text = "When the backup file was updated from this computer."
|
|
||||||
Case 3
|
|
||||||
lblError.Text = "The name of this computer."
|
|
||||||
Case 4
|
|
||||||
lblError.Text = "When the local backup file was last updated."
|
|
||||||
Case 5
|
|
||||||
lblError.Text = "The name of the computer that performed the last backup."
|
|
||||||
End Select
|
|
||||||
End Sub
|
|
||||||
|
|
||||||
Private Sub btnCancel_Click(sender As Object, e As EventArgs) Handles btnCancel.Click
|
|
||||||
Me.Close()
|
|
||||||
End Sub
|
|
||||||
|
|
||||||
Private Sub frmGameInfo_FormClosing(sender As Object, e As FormClosingEventArgs) Handles MyBase.FormClosing
|
|
||||||
|
|
||||||
If Not bShutdown Then
|
|
||||||
If MsgBox("Are you sure you want to close?", MsgBoxStyle.YesNo, "ABM") = MsgBoxResult.Yes Then
|
|
||||||
bShutdown = True
|
|
||||||
End If
|
|
||||||
End If
|
|
||||||
|
|
||||||
If Not bShutdown Then
|
|
||||||
e.Cancel = True
|
|
||||||
End If
|
|
||||||
End Sub
|
|
||||||
|
|
||||||
Private Sub cboManifest_SelectionChangeCommitted(sender As Object, e As EventArgs) Handles cboManifest.SelectionChangeCommitted
|
|
||||||
FormatManifest(CInt(cboManifest.SelectedValue))
|
|
||||||
End Sub
|
|
||||||
End Class
|
|
||||||
Generated
+136
-104
@@ -23,7 +23,6 @@ Partial Class frmSettings
|
|||||||
<System.Diagnostics.DebuggerStepThrough()> _
|
<System.Diagnostics.DebuggerStepThrough()> _
|
||||||
Private Sub InitializeComponent()
|
Private Sub InitializeComponent()
|
||||||
Me.chkMonitorOnStartup = New System.Windows.Forms.CheckBox()
|
Me.chkMonitorOnStartup = New System.Windows.Forms.CheckBox()
|
||||||
Me.chkBackupConfirm = New System.Windows.Forms.CheckBox()
|
|
||||||
Me.grpStartup = New System.Windows.Forms.GroupBox()
|
Me.grpStartup = New System.Windows.Forms.GroupBox()
|
||||||
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()
|
||||||
@@ -39,12 +38,6 @@ Partial Class frmSettings
|
|||||||
Me.chkCreateFolder = New System.Windows.Forms.CheckBox()
|
Me.chkCreateFolder = New System.Windows.Forms.CheckBox()
|
||||||
Me.btnSave = New System.Windows.Forms.Button()
|
Me.btnSave = New System.Windows.Forms.Button()
|
||||||
Me.btnCancel = New System.Windows.Forms.Button()
|
Me.btnCancel = New System.Windows.Forms.Button()
|
||||||
Me.lblMinutes = New System.Windows.Forms.Label()
|
|
||||||
Me.nudSupressBackupThreshold = New System.Windows.Forms.NumericUpDown()
|
|
||||||
Me.chkSupressBackup = New System.Windows.Forms.CheckBox()
|
|
||||||
Me.chkCheckSum = New System.Windows.Forms.CheckBox()
|
|
||||||
Me.chkRestoreOnLaunch = New System.Windows.Forms.CheckBox()
|
|
||||||
Me.chkOverwriteWarning = New System.Windows.Forms.CheckBox()
|
|
||||||
Me.grp7zGeneral = New System.Windows.Forms.GroupBox()
|
Me.grp7zGeneral = New System.Windows.Forms.GroupBox()
|
||||||
Me.cboCompression = New System.Windows.Forms.ComboBox()
|
Me.cboCompression = New System.Windows.Forms.ComboBox()
|
||||||
Me.lblCompression = New System.Windows.Forms.Label()
|
Me.lblCompression = New System.Windows.Forms.Label()
|
||||||
@@ -57,6 +50,15 @@ Partial Class frmSettings
|
|||||||
Me.lbl7zProduct = New System.Windows.Forms.Label()
|
Me.lbl7zProduct = New System.Windows.Forms.Label()
|
||||||
Me.btnDefaults = New System.Windows.Forms.Button()
|
Me.btnDefaults = New System.Windows.Forms.Button()
|
||||||
Me.pnlBackup = New System.Windows.Forms.Panel()
|
Me.pnlBackup = New System.Windows.Forms.Panel()
|
||||||
|
Me.lblMinutes = New System.Windows.Forms.Label()
|
||||||
|
Me.nudSupressBackupThreshold = New System.Windows.Forms.NumericUpDown()
|
||||||
|
Me.chkSupressBackup = New System.Windows.Forms.CheckBox()
|
||||||
|
Me.chkBackupConfirm = New System.Windows.Forms.CheckBox()
|
||||||
|
Me.chkOverwriteWarning = New System.Windows.Forms.CheckBox()
|
||||||
|
Me.grpBackupHandling = New System.Windows.Forms.GroupBox()
|
||||||
|
Me.chkAutoRestore = New System.Windows.Forms.CheckBox()
|
||||||
|
Me.chkRestoreNotify = New System.Windows.Forms.CheckBox()
|
||||||
|
Me.chkAutoMark = New System.Windows.Forms.CheckBox()
|
||||||
Me.pnl7z = New System.Windows.Forms.Panel()
|
Me.pnl7z = New System.Windows.Forms.Panel()
|
||||||
Me.grp7zAdvanced = New System.Windows.Forms.GroupBox()
|
Me.grp7zAdvanced = New System.Windows.Forms.GroupBox()
|
||||||
Me.grp7zInformation = New System.Windows.Forms.GroupBox()
|
Me.grp7zInformation = New System.Windows.Forms.GroupBox()
|
||||||
@@ -65,9 +67,10 @@ Partial Class frmSettings
|
|||||||
Me.lstSettings = New System.Windows.Forms.ListBox()
|
Me.lstSettings = New System.Windows.Forms.ListBox()
|
||||||
Me.grpStartup.SuspendLayout()
|
Me.grpStartup.SuspendLayout()
|
||||||
Me.grpFolderOptions.SuspendLayout()
|
Me.grpFolderOptions.SuspendLayout()
|
||||||
CType(Me.nudSupressBackupThreshold, System.ComponentModel.ISupportInitialize).BeginInit()
|
|
||||||
Me.grp7zGeneral.SuspendLayout()
|
Me.grp7zGeneral.SuspendLayout()
|
||||||
Me.pnlBackup.SuspendLayout()
|
Me.pnlBackup.SuspendLayout()
|
||||||
|
CType(Me.nudSupressBackupThreshold, System.ComponentModel.ISupportInitialize).BeginInit()
|
||||||
|
Me.grpBackupHandling.SuspendLayout()
|
||||||
Me.pnl7z.SuspendLayout()
|
Me.pnl7z.SuspendLayout()
|
||||||
Me.grp7zAdvanced.SuspendLayout()
|
Me.grp7zAdvanced.SuspendLayout()
|
||||||
Me.grp7zInformation.SuspendLayout()
|
Me.grp7zInformation.SuspendLayout()
|
||||||
@@ -85,16 +88,6 @@ Partial Class frmSettings
|
|||||||
Me.chkMonitorOnStartup.Text = "Start monitoring at launch"
|
Me.chkMonitorOnStartup.Text = "Start monitoring at launch"
|
||||||
Me.chkMonitorOnStartup.UseVisualStyleBackColor = True
|
Me.chkMonitorOnStartup.UseVisualStyleBackColor = True
|
||||||
'
|
'
|
||||||
'chkBackupConfirm
|
|
||||||
'
|
|
||||||
Me.chkBackupConfirm.AutoSize = True
|
|
||||||
Me.chkBackupConfirm.Location = New System.Drawing.Point(6, 88)
|
|
||||||
Me.chkBackupConfirm.Name = "chkBackupConfirm"
|
|
||||||
Me.chkBackupConfirm.Size = New System.Drawing.Size(160, 17)
|
|
||||||
Me.chkBackupConfirm.TabIndex = 1
|
|
||||||
Me.chkBackupConfirm.Text = "Disable backup confirmation"
|
|
||||||
Me.chkBackupConfirm.UseVisualStyleBackColor = True
|
|
||||||
'
|
|
||||||
'grpStartup
|
'grpStartup
|
||||||
'
|
'
|
||||||
Me.grpStartup.Controls.Add(Me.chkStartWindows)
|
Me.grpStartup.Controls.Add(Me.chkStartWindows)
|
||||||
@@ -133,7 +126,7 @@ Partial Class frmSettings
|
|||||||
Me.chkAutoSaveLog.Location = New System.Drawing.Point(6, 204)
|
Me.chkAutoSaveLog.Location = New System.Drawing.Point(6, 204)
|
||||||
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 = 7
|
Me.chkAutoSaveLog.TabIndex = 3
|
||||||
Me.chkAutoSaveLog.Text = "Autosave log when max length is exceeded"
|
Me.chkAutoSaveLog.Text = "Autosave log when max length is exceeded"
|
||||||
Me.chkAutoSaveLog.UseVisualStyleBackColor = True
|
Me.chkAutoSaveLog.UseVisualStyleBackColor = True
|
||||||
'
|
'
|
||||||
@@ -142,7 +135,7 @@ Partial Class frmSettings
|
|||||||
Me.btnOptionalFields.Location = New System.Drawing.Point(110, 38)
|
Me.btnOptionalFields.Location = New System.Drawing.Point(110, 38)
|
||||||
Me.btnOptionalFields.Name = "btnOptionalFields"
|
Me.btnOptionalFields.Name = "btnOptionalFields"
|
||||||
Me.btnOptionalFields.Size = New System.Drawing.Size(134, 23)
|
Me.btnOptionalFields.Size = New System.Drawing.Size(134, 23)
|
||||||
Me.btnOptionalFields.TabIndex = 6
|
Me.btnOptionalFields.TabIndex = 2
|
||||||
Me.btnOptionalFields.Text = "Choose &Optional Fields..."
|
Me.btnOptionalFields.Text = "Choose &Optional Fields..."
|
||||||
Me.btnOptionalFields.UseVisualStyleBackColor = True
|
Me.btnOptionalFields.UseVisualStyleBackColor = True
|
||||||
'
|
'
|
||||||
@@ -152,7 +145,7 @@ Partial Class frmSettings
|
|||||||
Me.chkTimeTracking.Location = New System.Drawing.Point(6, 19)
|
Me.chkTimeTracking.Location = New System.Drawing.Point(6, 19)
|
||||||
Me.chkTimeTracking.Name = "chkTimeTracking"
|
Me.chkTimeTracking.Name = "chkTimeTracking"
|
||||||
Me.chkTimeTracking.Size = New System.Drawing.Size(122, 17)
|
Me.chkTimeTracking.Size = New System.Drawing.Size(122, 17)
|
||||||
Me.chkTimeTracking.TabIndex = 4
|
Me.chkTimeTracking.TabIndex = 0
|
||||||
Me.chkTimeTracking.Text = "Enable time tracking"
|
Me.chkTimeTracking.Text = "Enable time tracking"
|
||||||
Me.chkTimeTracking.UseVisualStyleBackColor = True
|
Me.chkTimeTracking.UseVisualStyleBackColor = True
|
||||||
'
|
'
|
||||||
@@ -162,7 +155,7 @@ Partial Class frmSettings
|
|||||||
Me.chkSync.Location = New System.Drawing.Point(6, 42)
|
Me.chkSync.Location = New System.Drawing.Point(6, 42)
|
||||||
Me.chkSync.Name = "chkSync"
|
Me.chkSync.Name = "chkSync"
|
||||||
Me.chkSync.Size = New System.Drawing.Size(98, 17)
|
Me.chkSync.Size = New System.Drawing.Size(98, 17)
|
||||||
Me.chkSync.TabIndex = 5
|
Me.chkSync.TabIndex = 1
|
||||||
Me.chkSync.Text = "Enable syncing"
|
Me.chkSync.Text = "Enable syncing"
|
||||||
Me.chkSync.UseVisualStyleBackColor = True
|
Me.chkSync.UseVisualStyleBackColor = True
|
||||||
'
|
'
|
||||||
@@ -172,7 +165,7 @@ Partial Class frmSettings
|
|||||||
Me.chkShowDetectionTips.Location = New System.Drawing.Point(6, 181)
|
Me.chkShowDetectionTips.Location = New System.Drawing.Point(6, 181)
|
||||||
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 = 3
|
Me.chkShowDetectionTips.TabIndex = 2
|
||||||
Me.chkShowDetectionTips.Text = "Show detection notifications"
|
Me.chkShowDetectionTips.Text = "Show detection notifications"
|
||||||
Me.chkShowDetectionTips.UseVisualStyleBackColor = True
|
Me.chkShowDetectionTips.UseVisualStyleBackColor = True
|
||||||
'
|
'
|
||||||
@@ -185,7 +178,7 @@ Partial Class frmSettings
|
|||||||
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, 70)
|
||||||
Me.grpFolderOptions.TabIndex = 1
|
Me.grpFolderOptions.TabIndex = 0
|
||||||
Me.grpFolderOptions.TabStop = False
|
Me.grpFolderOptions.TabStop = False
|
||||||
Me.grpFolderOptions.Text = "Folders"
|
Me.grpFolderOptions.Text = "Folders"
|
||||||
'
|
'
|
||||||
@@ -194,7 +187,7 @@ Partial Class frmSettings
|
|||||||
Me.btnBackupFolder.Location = New System.Drawing.Point(313, 17)
|
Me.btnBackupFolder.Location = New System.Drawing.Point(313, 17)
|
||||||
Me.btnBackupFolder.Name = "btnBackupFolder"
|
Me.btnBackupFolder.Name = "btnBackupFolder"
|
||||||
Me.btnBackupFolder.Size = New System.Drawing.Size(27, 20)
|
Me.btnBackupFolder.Size = New System.Drawing.Size(27, 20)
|
||||||
Me.btnBackupFolder.TabIndex = 2
|
Me.btnBackupFolder.TabIndex = 1
|
||||||
Me.btnBackupFolder.Text = "..."
|
Me.btnBackupFolder.Text = "..."
|
||||||
Me.btnBackupFolder.UseVisualStyleBackColor = True
|
Me.btnBackupFolder.UseVisualStyleBackColor = True
|
||||||
'
|
'
|
||||||
@@ -212,7 +205,7 @@ Partial Class frmSettings
|
|||||||
Me.txtBackupFolder.Location = New System.Drawing.Point(91, 17)
|
Me.txtBackupFolder.Location = New System.Drawing.Point(91, 17)
|
||||||
Me.txtBackupFolder.Name = "txtBackupFolder"
|
Me.txtBackupFolder.Name = "txtBackupFolder"
|
||||||
Me.txtBackupFolder.Size = New System.Drawing.Size(216, 20)
|
Me.txtBackupFolder.Size = New System.Drawing.Size(216, 20)
|
||||||
Me.txtBackupFolder.TabIndex = 1
|
Me.txtBackupFolder.TabIndex = 0
|
||||||
'
|
'
|
||||||
'chkCreateFolder
|
'chkCreateFolder
|
||||||
'
|
'
|
||||||
@@ -220,7 +213,7 @@ Partial Class frmSettings
|
|||||||
Me.chkCreateFolder.Location = New System.Drawing.Point(9, 43)
|
Me.chkCreateFolder.Location = New System.Drawing.Point(9, 43)
|
||||||
Me.chkCreateFolder.Name = "chkCreateFolder"
|
Me.chkCreateFolder.Name = "chkCreateFolder"
|
||||||
Me.chkCreateFolder.Size = New System.Drawing.Size(186, 17)
|
Me.chkCreateFolder.Size = New System.Drawing.Size(186, 17)
|
||||||
Me.chkCreateFolder.TabIndex = 3
|
Me.chkCreateFolder.TabIndex = 2
|
||||||
Me.chkCreateFolder.Text = "Create a sub-folder for each game"
|
Me.chkCreateFolder.Text = "Create a sub-folder for each game"
|
||||||
Me.chkCreateFolder.UseVisualStyleBackColor = True
|
Me.chkCreateFolder.UseVisualStyleBackColor = True
|
||||||
'
|
'
|
||||||
@@ -244,63 +237,6 @@ Partial Class frmSettings
|
|||||||
Me.btnCancel.Text = "&Cancel"
|
Me.btnCancel.Text = "&Cancel"
|
||||||
Me.btnCancel.UseVisualStyleBackColor = True
|
Me.btnCancel.UseVisualStyleBackColor = True
|
||||||
'
|
'
|
||||||
'lblMinutes
|
|
||||||
'
|
|
||||||
Me.lblMinutes.AutoSize = True
|
|
||||||
Me.lblMinutes.Location = New System.Drawing.Point(286, 181)
|
|
||||||
Me.lblMinutes.Name = "lblMinutes"
|
|
||||||
Me.lblMinutes.Size = New System.Drawing.Size(43, 13)
|
|
||||||
Me.lblMinutes.TabIndex = 7
|
|
||||||
Me.lblMinutes.Text = "minutes"
|
|
||||||
'
|
|
||||||
'nudSupressBackupThreshold
|
|
||||||
'
|
|
||||||
Me.nudSupressBackupThreshold.Location = New System.Drawing.Point(229, 179)
|
|
||||||
Me.nudSupressBackupThreshold.Maximum = New Decimal(New Integer() {999, 0, 0, 0})
|
|
||||||
Me.nudSupressBackupThreshold.Name = "nudSupressBackupThreshold"
|
|
||||||
Me.nudSupressBackupThreshold.Size = New System.Drawing.Size(51, 20)
|
|
||||||
Me.nudSupressBackupThreshold.TabIndex = 6
|
|
||||||
'
|
|
||||||
'chkSupressBackup
|
|
||||||
'
|
|
||||||
Me.chkSupressBackup.AutoSize = True
|
|
||||||
Me.chkSupressBackup.Location = New System.Drawing.Point(6, 180)
|
|
||||||
Me.chkSupressBackup.Name = "chkSupressBackup"
|
|
||||||
Me.chkSupressBackup.Size = New System.Drawing.Size(217, 17)
|
|
||||||
Me.chkSupressBackup.TabIndex = 5
|
|
||||||
Me.chkSupressBackup.Text = "Backup only when session time exceeds"
|
|
||||||
Me.chkSupressBackup.UseVisualStyleBackColor = True
|
|
||||||
'
|
|
||||||
'chkCheckSum
|
|
||||||
'
|
|
||||||
Me.chkCheckSum.AutoSize = True
|
|
||||||
Me.chkCheckSum.Location = New System.Drawing.Point(6, 134)
|
|
||||||
Me.chkCheckSum.Name = "chkCheckSum"
|
|
||||||
Me.chkCheckSum.Size = New System.Drawing.Size(195, 17)
|
|
||||||
Me.chkCheckSum.TabIndex = 3
|
|
||||||
Me.chkCheckSum.Text = "Verify backup files with a checksum"
|
|
||||||
Me.chkCheckSum.UseVisualStyleBackColor = True
|
|
||||||
'
|
|
||||||
'chkRestoreOnLaunch
|
|
||||||
'
|
|
||||||
Me.chkRestoreOnLaunch.AutoSize = True
|
|
||||||
Me.chkRestoreOnLaunch.Location = New System.Drawing.Point(6, 157)
|
|
||||||
Me.chkRestoreOnLaunch.Name = "chkRestoreOnLaunch"
|
|
||||||
Me.chkRestoreOnLaunch.Size = New System.Drawing.Size(257, 17)
|
|
||||||
Me.chkRestoreOnLaunch.TabIndex = 4
|
|
||||||
Me.chkRestoreOnLaunch.Text = "Notify when there are new backup files to restore"
|
|
||||||
Me.chkRestoreOnLaunch.UseVisualStyleBackColor = True
|
|
||||||
'
|
|
||||||
'chkOverwriteWarning
|
|
||||||
'
|
|
||||||
Me.chkOverwriteWarning.AutoSize = True
|
|
||||||
Me.chkOverwriteWarning.Location = New System.Drawing.Point(6, 111)
|
|
||||||
Me.chkOverwriteWarning.Name = "chkOverwriteWarning"
|
|
||||||
Me.chkOverwriteWarning.Size = New System.Drawing.Size(139, 17)
|
|
||||||
Me.chkOverwriteWarning.TabIndex = 2
|
|
||||||
Me.chkOverwriteWarning.Text = "Show overwrite warning"
|
|
||||||
Me.chkOverwriteWarning.UseVisualStyleBackColor = True
|
|
||||||
'
|
|
||||||
'grp7zGeneral
|
'grp7zGeneral
|
||||||
'
|
'
|
||||||
Me.grp7zGeneral.Controls.Add(Me.cboCompression)
|
Me.grp7zGeneral.Controls.Add(Me.cboCompression)
|
||||||
@@ -319,7 +255,7 @@ Partial Class frmSettings
|
|||||||
Me.cboCompression.Location = New System.Drawing.Point(110, 17)
|
Me.cboCompression.Location = New System.Drawing.Point(110, 17)
|
||||||
Me.cboCompression.Name = "cboCompression"
|
Me.cboCompression.Name = "cboCompression"
|
||||||
Me.cboCompression.Size = New System.Drawing.Size(238, 21)
|
Me.cboCompression.Size = New System.Drawing.Size(238, 21)
|
||||||
Me.cboCompression.TabIndex = 1
|
Me.cboCompression.TabIndex = 0
|
||||||
'
|
'
|
||||||
'lblCompression
|
'lblCompression
|
||||||
'
|
'
|
||||||
@@ -335,7 +271,7 @@ Partial Class frmSettings
|
|||||||
Me.btn7zLocation.Location = New System.Drawing.Point(313, 41)
|
Me.btn7zLocation.Location = New System.Drawing.Point(313, 41)
|
||||||
Me.btn7zLocation.Name = "btn7zLocation"
|
Me.btn7zLocation.Name = "btn7zLocation"
|
||||||
Me.btn7zLocation.Size = New System.Drawing.Size(27, 20)
|
Me.btn7zLocation.Size = New System.Drawing.Size(27, 20)
|
||||||
Me.btn7zLocation.TabIndex = 5
|
Me.btn7zLocation.TabIndex = 2
|
||||||
Me.btn7zLocation.Text = "..."
|
Me.btn7zLocation.Text = "..."
|
||||||
Me.btn7zLocation.UseVisualStyleBackColor = True
|
Me.btn7zLocation.UseVisualStyleBackColor = True
|
||||||
'
|
'
|
||||||
@@ -344,7 +280,7 @@ Partial Class frmSettings
|
|||||||
Me.txt7zLocation.Location = New System.Drawing.Point(110, 41)
|
Me.txt7zLocation.Location = New System.Drawing.Point(110, 41)
|
||||||
Me.txt7zLocation.Name = "txt7zLocation"
|
Me.txt7zLocation.Name = "txt7zLocation"
|
||||||
Me.txt7zLocation.Size = New System.Drawing.Size(197, 20)
|
Me.txt7zLocation.Size = New System.Drawing.Size(197, 20)
|
||||||
Me.txt7zLocation.TabIndex = 4
|
Me.txt7zLocation.TabIndex = 1
|
||||||
'
|
'
|
||||||
'lblLocation
|
'lblLocation
|
||||||
'
|
'
|
||||||
@@ -360,7 +296,7 @@ Partial Class frmSettings
|
|||||||
Me.txt7zArguments.Location = New System.Drawing.Point(110, 15)
|
Me.txt7zArguments.Location = New System.Drawing.Point(110, 15)
|
||||||
Me.txt7zArguments.Name = "txt7zArguments"
|
Me.txt7zArguments.Name = "txt7zArguments"
|
||||||
Me.txt7zArguments.Size = New System.Drawing.Size(238, 20)
|
Me.txt7zArguments.Size = New System.Drawing.Size(238, 20)
|
||||||
Me.txt7zArguments.TabIndex = 3
|
Me.txt7zArguments.TabIndex = 0
|
||||||
'
|
'
|
||||||
'lblArguments
|
'lblArguments
|
||||||
'
|
'
|
||||||
@@ -402,17 +338,109 @@ Partial Class frmSettings
|
|||||||
'
|
'
|
||||||
Me.pnlBackup.Controls.Add(Me.lblMinutes)
|
Me.pnlBackup.Controls.Add(Me.lblMinutes)
|
||||||
Me.pnlBackup.Controls.Add(Me.nudSupressBackupThreshold)
|
Me.pnlBackup.Controls.Add(Me.nudSupressBackupThreshold)
|
||||||
Me.pnlBackup.Controls.Add(Me.grpFolderOptions)
|
|
||||||
Me.pnlBackup.Controls.Add(Me.chkSupressBackup)
|
Me.pnlBackup.Controls.Add(Me.chkSupressBackup)
|
||||||
Me.pnlBackup.Controls.Add(Me.chkBackupConfirm)
|
Me.pnlBackup.Controls.Add(Me.chkBackupConfirm)
|
||||||
Me.pnlBackup.Controls.Add(Me.chkCheckSum)
|
|
||||||
Me.pnlBackup.Controls.Add(Me.chkOverwriteWarning)
|
Me.pnlBackup.Controls.Add(Me.chkOverwriteWarning)
|
||||||
Me.pnlBackup.Controls.Add(Me.chkRestoreOnLaunch)
|
Me.pnlBackup.Controls.Add(Me.grpBackupHandling)
|
||||||
|
Me.pnlBackup.Controls.Add(Me.grpFolderOptions)
|
||||||
Me.pnlBackup.Location = New System.Drawing.Point(180, 0)
|
Me.pnlBackup.Location = New System.Drawing.Point(180, 0)
|
||||||
Me.pnlBackup.Name = "pnlBackup"
|
Me.pnlBackup.Name = "pnlBackup"
|
||||||
Me.pnlBackup.Size = New System.Drawing.Size(367, 314)
|
Me.pnlBackup.Size = New System.Drawing.Size(367, 314)
|
||||||
Me.pnlBackup.TabIndex = 3
|
Me.pnlBackup.TabIndex = 3
|
||||||
'
|
'
|
||||||
|
'lblMinutes
|
||||||
|
'
|
||||||
|
Me.lblMinutes.AutoSize = True
|
||||||
|
Me.lblMinutes.Location = New System.Drawing.Point(286, 228)
|
||||||
|
Me.lblMinutes.Name = "lblMinutes"
|
||||||
|
Me.lblMinutes.Size = New System.Drawing.Size(43, 13)
|
||||||
|
Me.lblMinutes.TabIndex = 14
|
||||||
|
Me.lblMinutes.Text = "minutes"
|
||||||
|
'
|
||||||
|
'nudSupressBackupThreshold
|
||||||
|
'
|
||||||
|
Me.nudSupressBackupThreshold.Location = New System.Drawing.Point(229, 226)
|
||||||
|
Me.nudSupressBackupThreshold.Maximum = New Decimal(New Integer() {999, 0, 0, 0})
|
||||||
|
Me.nudSupressBackupThreshold.Name = "nudSupressBackupThreshold"
|
||||||
|
Me.nudSupressBackupThreshold.Size = New System.Drawing.Size(51, 20)
|
||||||
|
Me.nudSupressBackupThreshold.TabIndex = 5
|
||||||
|
'
|
||||||
|
'chkSupressBackup
|
||||||
|
'
|
||||||
|
Me.chkSupressBackup.AutoSize = True
|
||||||
|
Me.chkSupressBackup.Location = New System.Drawing.Point(6, 228)
|
||||||
|
Me.chkSupressBackup.Name = "chkSupressBackup"
|
||||||
|
Me.chkSupressBackup.Size = New System.Drawing.Size(217, 17)
|
||||||
|
Me.chkSupressBackup.TabIndex = 4
|
||||||
|
Me.chkSupressBackup.Text = "Backup only when session time exceeds"
|
||||||
|
Me.chkSupressBackup.UseVisualStyleBackColor = True
|
||||||
|
'
|
||||||
|
'chkBackupConfirm
|
||||||
|
'
|
||||||
|
Me.chkBackupConfirm.AutoSize = True
|
||||||
|
Me.chkBackupConfirm.Location = New System.Drawing.Point(6, 180)
|
||||||
|
Me.chkBackupConfirm.Name = "chkBackupConfirm"
|
||||||
|
Me.chkBackupConfirm.Size = New System.Drawing.Size(160, 17)
|
||||||
|
Me.chkBackupConfirm.TabIndex = 2
|
||||||
|
Me.chkBackupConfirm.Text = "Disable backup confirmation"
|
||||||
|
Me.chkBackupConfirm.UseVisualStyleBackColor = True
|
||||||
|
'
|
||||||
|
'chkOverwriteWarning
|
||||||
|
'
|
||||||
|
Me.chkOverwriteWarning.AutoSize = True
|
||||||
|
Me.chkOverwriteWarning.Location = New System.Drawing.Point(6, 204)
|
||||||
|
Me.chkOverwriteWarning.Name = "chkOverwriteWarning"
|
||||||
|
Me.chkOverwriteWarning.Size = New System.Drawing.Size(139, 17)
|
||||||
|
Me.chkOverwriteWarning.TabIndex = 3
|
||||||
|
Me.chkOverwriteWarning.Text = "Show overwrite warning"
|
||||||
|
Me.chkOverwriteWarning.UseVisualStyleBackColor = True
|
||||||
|
'
|
||||||
|
'grpBackupHandling
|
||||||
|
'
|
||||||
|
Me.grpBackupHandling.Controls.Add(Me.chkAutoRestore)
|
||||||
|
Me.grpBackupHandling.Controls.Add(Me.chkRestoreNotify)
|
||||||
|
Me.grpBackupHandling.Controls.Add(Me.chkAutoMark)
|
||||||
|
Me.grpBackupHandling.Location = New System.Drawing.Point(6, 88)
|
||||||
|
Me.grpBackupHandling.Margin = New System.Windows.Forms.Padding(2, 2, 2, 2)
|
||||||
|
Me.grpBackupHandling.Name = "grpBackupHandling"
|
||||||
|
Me.grpBackupHandling.Padding = New System.Windows.Forms.Padding(2, 2, 2, 2)
|
||||||
|
Me.grpBackupHandling.Size = New System.Drawing.Size(354, 87)
|
||||||
|
Me.grpBackupHandling.TabIndex = 1
|
||||||
|
Me.grpBackupHandling.TabStop = False
|
||||||
|
Me.grpBackupHandling.Text = "Backup Handling"
|
||||||
|
'
|
||||||
|
'chkAutoRestore
|
||||||
|
'
|
||||||
|
Me.chkAutoRestore.AutoSize = True
|
||||||
|
Me.chkAutoRestore.Location = New System.Drawing.Point(8, 41)
|
||||||
|
Me.chkAutoRestore.Margin = New System.Windows.Forms.Padding(2, 2, 2, 2)
|
||||||
|
Me.chkAutoRestore.Name = "chkAutoRestore"
|
||||||
|
Me.chkAutoRestore.Size = New System.Drawing.Size(190, 17)
|
||||||
|
Me.chkAutoRestore.TabIndex = 1
|
||||||
|
Me.chkAutoRestore.Text = "Automatically restore new backups"
|
||||||
|
Me.chkAutoRestore.UseVisualStyleBackColor = True
|
||||||
|
'
|
||||||
|
'chkRestoreNotify
|
||||||
|
'
|
||||||
|
Me.chkRestoreNotify.AutoSize = True
|
||||||
|
Me.chkRestoreNotify.Location = New System.Drawing.Point(8, 19)
|
||||||
|
Me.chkRestoreNotify.Margin = New System.Windows.Forms.Padding(2, 2, 2, 2)
|
||||||
|
Me.chkRestoreNotify.Name = "chkRestoreNotify"
|
||||||
|
Me.chkRestoreNotify.Size = New System.Drawing.Size(216, 17)
|
||||||
|
Me.chkRestoreNotify.TabIndex = 0
|
||||||
|
Me.chkRestoreNotify.Text = "Display notifications about new backups"
|
||||||
|
Me.chkRestoreNotify.UseVisualStyleBackColor = True
|
||||||
|
'
|
||||||
|
'chkAutoMark
|
||||||
|
'
|
||||||
|
Me.chkAutoMark.AutoSize = True
|
||||||
|
Me.chkAutoMark.Location = New System.Drawing.Point(8, 63)
|
||||||
|
Me.chkAutoMark.Name = "chkAutoMark"
|
||||||
|
Me.chkAutoMark.Size = New System.Drawing.Size(321, 17)
|
||||||
|
Me.chkAutoMark.TabIndex = 2
|
||||||
|
Me.chkAutoMark.Text = "Automatically mark new backups as restored when appropriate"
|
||||||
|
Me.chkAutoMark.UseVisualStyleBackColor = True
|
||||||
|
'
|
||||||
'pnl7z
|
'pnl7z
|
||||||
'
|
'
|
||||||
Me.pnl7z.Controls.Add(Me.grp7zAdvanced)
|
Me.pnl7z.Controls.Add(Me.grp7zAdvanced)
|
||||||
@@ -433,7 +461,7 @@ Partial Class frmSettings
|
|||||||
Me.grp7zAdvanced.Location = New System.Drawing.Point(6, 68)
|
Me.grp7zAdvanced.Location = New System.Drawing.Point(6, 68)
|
||||||
Me.grp7zAdvanced.Name = "grp7zAdvanced"
|
Me.grp7zAdvanced.Name = "grp7zAdvanced"
|
||||||
Me.grp7zAdvanced.Size = New System.Drawing.Size(354, 73)
|
Me.grp7zAdvanced.Size = New System.Drawing.Size(354, 73)
|
||||||
Me.grp7zAdvanced.TabIndex = 2
|
Me.grp7zAdvanced.TabIndex = 1
|
||||||
Me.grp7zAdvanced.TabStop = False
|
Me.grp7zAdvanced.TabStop = False
|
||||||
Me.grp7zAdvanced.Text = "Advanced"
|
Me.grp7zAdvanced.Text = "Advanced"
|
||||||
'
|
'
|
||||||
@@ -444,7 +472,7 @@ Partial Class frmSettings
|
|||||||
Me.grp7zInformation.Location = New System.Drawing.Point(6, 146)
|
Me.grp7zInformation.Location = New System.Drawing.Point(6, 146)
|
||||||
Me.grp7zInformation.Name = "grp7zInformation"
|
Me.grp7zInformation.Name = "grp7zInformation"
|
||||||
Me.grp7zInformation.Size = New System.Drawing.Size(354, 63)
|
Me.grp7zInformation.Size = New System.Drawing.Size(354, 63)
|
||||||
Me.grp7zInformation.TabIndex = 1
|
Me.grp7zInformation.TabIndex = 2
|
||||||
Me.grp7zInformation.TabStop = False
|
Me.grp7zInformation.TabStop = False
|
||||||
Me.grp7zInformation.Text = "Utility Information"
|
Me.grp7zInformation.Text = "Utility Information"
|
||||||
'
|
'
|
||||||
@@ -484,13 +512,13 @@ Partial Class 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.pnl7z)
|
||||||
Me.Controls.Add(Me.lstSettings)
|
Me.Controls.Add(Me.lstSettings)
|
||||||
Me.Controls.Add(Me.btnDefaults)
|
Me.Controls.Add(Me.btnDefaults)
|
||||||
Me.Controls.Add(Me.btnCancel)
|
Me.Controls.Add(Me.btnCancel)
|
||||||
Me.Controls.Add(Me.btnSave)
|
Me.Controls.Add(Me.btnSave)
|
||||||
Me.Controls.Add(Me.pnlGeneral)
|
|
||||||
Me.Controls.Add(Me.pnl7z)
|
|
||||||
Me.Controls.Add(Me.pnlBackup)
|
|
||||||
Me.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle
|
Me.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle
|
||||||
Me.MaximizeBox = False
|
Me.MaximizeBox = False
|
||||||
Me.MinimizeBox = False
|
Me.MinimizeBox = False
|
||||||
@@ -503,11 +531,13 @@ Partial Class frmSettings
|
|||||||
Me.grpStartup.PerformLayout()
|
Me.grpStartup.PerformLayout()
|
||||||
Me.grpFolderOptions.ResumeLayout(False)
|
Me.grpFolderOptions.ResumeLayout(False)
|
||||||
Me.grpFolderOptions.PerformLayout()
|
Me.grpFolderOptions.PerformLayout()
|
||||||
CType(Me.nudSupressBackupThreshold, System.ComponentModel.ISupportInitialize).EndInit()
|
|
||||||
Me.grp7zGeneral.ResumeLayout(False)
|
Me.grp7zGeneral.ResumeLayout(False)
|
||||||
Me.grp7zGeneral.PerformLayout()
|
Me.grp7zGeneral.PerformLayout()
|
||||||
Me.pnlBackup.ResumeLayout(False)
|
Me.pnlBackup.ResumeLayout(False)
|
||||||
Me.pnlBackup.PerformLayout()
|
Me.pnlBackup.PerformLayout()
|
||||||
|
CType(Me.nudSupressBackupThreshold, System.ComponentModel.ISupportInitialize).EndInit()
|
||||||
|
Me.grpBackupHandling.ResumeLayout(False)
|
||||||
|
Me.grpBackupHandling.PerformLayout()
|
||||||
Me.pnl7z.ResumeLayout(False)
|
Me.pnl7z.ResumeLayout(False)
|
||||||
Me.grp7zAdvanced.ResumeLayout(False)
|
Me.grp7zAdvanced.ResumeLayout(False)
|
||||||
Me.grp7zAdvanced.PerformLayout()
|
Me.grp7zAdvanced.PerformLayout()
|
||||||
@@ -520,7 +550,6 @@ Partial Class frmSettings
|
|||||||
|
|
||||||
End Sub
|
End Sub
|
||||||
Friend WithEvents chkMonitorOnStartup As System.Windows.Forms.CheckBox
|
Friend WithEvents chkMonitorOnStartup As System.Windows.Forms.CheckBox
|
||||||
Friend WithEvents chkBackupConfirm As System.Windows.Forms.CheckBox
|
|
||||||
Friend WithEvents grpStartup As System.Windows.Forms.GroupBox
|
Friend WithEvents grpStartup As System.Windows.Forms.GroupBox
|
||||||
Friend WithEvents grpFolderOptions As System.Windows.Forms.GroupBox
|
Friend WithEvents grpFolderOptions As System.Windows.Forms.GroupBox
|
||||||
Friend WithEvents txtBackupFolder As System.Windows.Forms.TextBox
|
Friend WithEvents txtBackupFolder As System.Windows.Forms.TextBox
|
||||||
@@ -530,16 +559,10 @@ Partial Class frmSettings
|
|||||||
Friend WithEvents btnBackupFolder As System.Windows.Forms.Button
|
Friend WithEvents btnBackupFolder As System.Windows.Forms.Button
|
||||||
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 chkOverwriteWarning As System.Windows.Forms.CheckBox
|
|
||||||
Friend WithEvents chkCreateFolder As System.Windows.Forms.CheckBox
|
Friend WithEvents chkCreateFolder As System.Windows.Forms.CheckBox
|
||||||
Friend WithEvents chkRestoreOnLaunch As System.Windows.Forms.CheckBox
|
|
||||||
Friend WithEvents chkSync As System.Windows.Forms.CheckBox
|
Friend WithEvents chkSync As System.Windows.Forms.CheckBox
|
||||||
Friend WithEvents chkCheckSum 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 lblMinutes As Label
|
|
||||||
Friend WithEvents nudSupressBackupThreshold As NumericUpDown
|
|
||||||
Friend WithEvents chkSupressBackup As CheckBox
|
|
||||||
Friend WithEvents grp7zGeneral As GroupBox
|
Friend WithEvents grp7zGeneral As GroupBox
|
||||||
Friend WithEvents cboCompression As ComboBox
|
Friend WithEvents cboCompression As ComboBox
|
||||||
Friend WithEvents lblCompression As Label
|
Friend WithEvents lblCompression As Label
|
||||||
@@ -560,4 +583,13 @@ Partial Class frmSettings
|
|||||||
Friend WithEvents lstSettings As ListBox
|
Friend WithEvents lstSettings As ListBox
|
||||||
Friend WithEvents grp7zAdvanced As GroupBox
|
Friend WithEvents grp7zAdvanced As GroupBox
|
||||||
Friend WithEvents grp7zInformation As GroupBox
|
Friend WithEvents grp7zInformation As GroupBox
|
||||||
|
Friend WithEvents lblMinutes As Label
|
||||||
|
Friend WithEvents nudSupressBackupThreshold As NumericUpDown
|
||||||
|
Friend WithEvents chkSupressBackup As CheckBox
|
||||||
|
Friend WithEvents chkBackupConfirm As CheckBox
|
||||||
|
Friend WithEvents chkOverwriteWarning As CheckBox
|
||||||
|
Friend WithEvents grpBackupHandling As GroupBox
|
||||||
|
Friend WithEvents chkAutoMark As CheckBox
|
||||||
|
Friend WithEvents chkAutoRestore As CheckBox
|
||||||
|
Friend WithEvents chkRestoreNotify As CheckBox
|
||||||
End Class
|
End Class
|
||||||
|
|||||||
+11
-13
@@ -4,7 +4,6 @@ Imports System.IO
|
|||||||
Public Class frmSettings
|
Public Class frmSettings
|
||||||
Dim bShutdown As Boolean = False
|
Dim bShutdown As Boolean = False
|
||||||
Dim bSyncSettingsChanged As Boolean = False
|
Dim bSyncSettingsChanged As Boolean = False
|
||||||
Dim bCheckSumDisabled As Boolean = False
|
|
||||||
Dim eCurrentSyncFields As clsGame.eOptionalSyncFields
|
Dim eCurrentSyncFields As clsGame.eOptionalSyncFields
|
||||||
Private oSettings As mgrSettings
|
Private oSettings As mgrSettings
|
||||||
|
|
||||||
@@ -48,7 +47,9 @@ Public Class frmSettings
|
|||||||
oSettings.DisableConfirmation = chkBackupConfirm.Checked
|
oSettings.DisableConfirmation = chkBackupConfirm.Checked
|
||||||
oSettings.CreateSubFolder = chkCreateFolder.Checked
|
oSettings.CreateSubFolder = chkCreateFolder.Checked
|
||||||
oSettings.ShowOverwriteWarning = chkOverwriteWarning.Checked
|
oSettings.ShowOverwriteWarning = chkOverwriteWarning.Checked
|
||||||
oSettings.RestoreOnLaunch = chkRestoreOnLaunch.Checked
|
oSettings.RestoreOnLaunch = chkRestoreNotify.Checked
|
||||||
|
oSettings.AutoRestore = chkAutoRestore.Checked
|
||||||
|
oSettings.AutoMark = chkAutoMark.Checked
|
||||||
oSettings.TimeTracking = chkTimeTracking.Checked
|
oSettings.TimeTracking = chkTimeTracking.Checked
|
||||||
oSettings.SupressBackup = chkSupressBackup.Checked
|
oSettings.SupressBackup = chkSupressBackup.Checked
|
||||||
oSettings.SupressBackupThreshold = nudSupressBackupThreshold.Value
|
oSettings.SupressBackupThreshold = nudSupressBackupThreshold.Value
|
||||||
@@ -61,12 +62,6 @@ Public Class frmSettings
|
|||||||
oSettings.Custom7zArguments = txt7zArguments.Text.Trim
|
oSettings.Custom7zArguments = txt7zArguments.Text.Trim
|
||||||
oSettings.Custom7zLocation = txt7zLocation.Text.Trim
|
oSettings.Custom7zLocation = txt7zLocation.Text.Trim
|
||||||
|
|
||||||
'We need to clear all checksums its turned off
|
|
||||||
If chkCheckSum.Checked = False And oSettings.CheckSum = True Then
|
|
||||||
bCheckSumDisabled = True
|
|
||||||
End If
|
|
||||||
oSettings.CheckSum = chkCheckSum.Checked
|
|
||||||
|
|
||||||
'Turning syncing from off to on is the same as changing the backup folder
|
'Turning syncing from off to on is the same as changing the backup folder
|
||||||
If chkSync.Checked = True And oSettings.Sync = False Then
|
If chkSync.Checked = True And oSettings.Sync = False Then
|
||||||
bSyncSettingsChanged = True
|
bSyncSettingsChanged = True
|
||||||
@@ -106,7 +101,6 @@ Public Class frmSettings
|
|||||||
If ValidateSettings() Then
|
If ValidateSettings() Then
|
||||||
oSettings.SaveSettings()
|
oSettings.SaveSettings()
|
||||||
If bSyncSettingsChanged Then mgrMonitorList.HandleBackupLocationChange(Settings)
|
If bSyncSettingsChanged Then mgrMonitorList.HandleBackupLocationChange(Settings)
|
||||||
If bCheckSumDisabled Then mgrManifest.DoManifestHashWipe()
|
|
||||||
Return True
|
Return True
|
||||||
Else
|
Else
|
||||||
Return False
|
Return False
|
||||||
@@ -177,10 +171,11 @@ Public Class frmSettings
|
|||||||
chkBackupConfirm.Checked = oSettings.DisableConfirmation
|
chkBackupConfirm.Checked = oSettings.DisableConfirmation
|
||||||
chkCreateFolder.Checked = oSettings.CreateSubFolder
|
chkCreateFolder.Checked = oSettings.CreateSubFolder
|
||||||
chkOverwriteWarning.Checked = oSettings.ShowOverwriteWarning
|
chkOverwriteWarning.Checked = oSettings.ShowOverwriteWarning
|
||||||
chkRestoreOnLaunch.Checked = oSettings.RestoreOnLaunch
|
chkRestoreNotify.Checked = oSettings.RestoreOnLaunch
|
||||||
|
chkAutoRestore.Checked = oSettings.AutoRestore
|
||||||
|
chkAutoMark.Checked = oSettings.AutoMark
|
||||||
txtBackupFolder.Text = oSettings.BackupFolder
|
txtBackupFolder.Text = oSettings.BackupFolder
|
||||||
chkSync.Checked = oSettings.Sync
|
chkSync.Checked = oSettings.Sync
|
||||||
chkCheckSum.Checked = oSettings.CheckSum
|
|
||||||
chkTimeTracking.Checked = oSettings.TimeTracking
|
chkTimeTracking.Checked = oSettings.TimeTracking
|
||||||
chkSupressBackup.Checked = oSettings.SupressBackup
|
chkSupressBackup.Checked = oSettings.SupressBackup
|
||||||
nudSupressBackupThreshold.Value = oSettings.SupressBackupThreshold
|
nudSupressBackupThreshold.Value = oSettings.SupressBackupThreshold
|
||||||
@@ -279,8 +274,10 @@ Public Class frmSettings
|
|||||||
'Set Form Text
|
'Set Form Text
|
||||||
lblMinutes.Text = frmSettings_lblMinutes
|
lblMinutes.Text = frmSettings_lblMinutes
|
||||||
chkSupressBackup.Text = frmSettings_chkSupressBackup
|
chkSupressBackup.Text = frmSettings_chkSupressBackup
|
||||||
chkCheckSum.Text = frmSettings_chkCheckSum
|
grpBackupHandling.Text = frmSettings_grpBackupHandling
|
||||||
chkRestoreOnLaunch.Text = frmSettings_chkRestoreOnLaunch
|
chkRestoreNotify.Text = frmSettings_chkRestoreNotify
|
||||||
|
chkAutoRestore.Text = frmSettings_chkAutoRestore
|
||||||
|
chkAutoMark.Text = frmSettings_chkAutoMark
|
||||||
chkOverwriteWarning.Text = frmSettings_chkOverwriteWarning
|
chkOverwriteWarning.Text = frmSettings_chkOverwriteWarning
|
||||||
chkCreateFolder.Text = frmSettings_chkCreateFolder
|
chkCreateFolder.Text = frmSettings_chkCreateFolder
|
||||||
chkBackupConfirm.Text = frmSettings_chkBackupConfirm
|
chkBackupConfirm.Text = frmSettings_chkBackupConfirm
|
||||||
@@ -375,4 +372,5 @@ Public Class frmSettings
|
|||||||
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
+2
-2
@@ -104,9 +104,9 @@ Partial Class frmSyncFields
|
|||||||
Me.chkTimeStamp.AutoSize = True
|
Me.chkTimeStamp.AutoSize = True
|
||||||
Me.chkTimeStamp.Location = New System.Drawing.Point(6, 19)
|
Me.chkTimeStamp.Location = New System.Drawing.Point(6, 19)
|
||||||
Me.chkTimeStamp.Name = "chkTimeStamp"
|
Me.chkTimeStamp.Name = "chkTimeStamp"
|
||||||
Me.chkTimeStamp.Size = New System.Drawing.Size(146, 17)
|
Me.chkTimeStamp.Size = New System.Drawing.Size(133, 17)
|
||||||
Me.chkTimeStamp.TabIndex = 0
|
Me.chkTimeStamp.TabIndex = 0
|
||||||
Me.chkTimeStamp.Text = "Time stamp each backup"
|
Me.chkTimeStamp.Text = "Save multiple backups"
|
||||||
Me.chkTimeStamp.UseVisualStyleBackColor = True
|
Me.chkTimeStamp.UseVisualStyleBackColor = True
|
||||||
'
|
'
|
||||||
'btnCancel
|
'btnCancel
|
||||||
|
|||||||
@@ -3,7 +3,7 @@
|
|||||||
License for use and distribution
|
License for use and distribution
|
||||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||||
|
|
||||||
Copyright (C) 1999-2015 Igor Pavlov.
|
Copyright (C) 1999-2016 Igor Pavlov.
|
||||||
|
|
||||||
7-Zip Extra files are under the GNU LGPL license.
|
7-Zip Extra files are under the GNU LGPL license.
|
||||||
|
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
GBM - Game Backup Monitor
|
GBM - Game Backup Monitor
|
||||||
Copyright (C) 2015 Michael J. Seiferling
|
Copyright (C) 2016 Michael J. Seiferling
|
||||||
|
|
||||||
This program is free software: you can redistribute it and/or modify
|
This program is free software: you can redistribute it and/or modify
|
||||||
it under the terms of the GNU General Public License as published by
|
it under the terms of the GNU General Public License as published by
|
||||||
@@ -16,4 +16,4 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|||||||
|
|
||||||
Contact Information:
|
Contact Information:
|
||||||
|
|
||||||
mseiferling@gmail.com
|
gamebackupmonitor@gmail.com
|
||||||
@@ -50,15 +50,15 @@ Public Class mgrBackup
|
|||||||
oItem.CheckSum = sCheckSum
|
oItem.CheckSum = sCheckSum
|
||||||
|
|
||||||
'Save Remote Manifest
|
'Save Remote Manifest
|
||||||
If mgrManifest.DoManifestCheck(oItem.Name, mgrSQLite.Database.Remote) Then
|
If mgrManifest.DoSpecificManifestCheck(oItem, mgrSQLite.Database.Remote) Then
|
||||||
mgrManifest.DoManifestUpdate(oItem, mgrSQLite.Database.Remote)
|
mgrManifest.DoManifestUpdateByID(oItem, mgrSQLite.Database.Remote)
|
||||||
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.DoManifestCheck(oItem.Name, mgrSQLite.Database.Local) Then
|
If mgrManifest.DoGlobalManifestCheck(oItem.Name, mgrSQLite.Database.Local) Then
|
||||||
mgrManifest.DoManifestUpdate(oItem, mgrSQLite.Database.Local)
|
mgrManifest.DoManifestUpdateByName(oItem, mgrSQLite.Database.Local)
|
||||||
Else
|
Else
|
||||||
mgrManifest.DoManifestAdd(oItem, mgrSQLite.Database.Local)
|
mgrManifest.DoManifestAdd(oItem, mgrSQLite.Database.Local)
|
||||||
End If
|
End If
|
||||||
@@ -107,6 +107,33 @@ Public Class mgrBackup
|
|||||||
Return True
|
Return True
|
||||||
End Function
|
End Function
|
||||||
|
|
||||||
|
Private Sub CheckOldBackups(ByVal oGame As clsGame)
|
||||||
|
Dim oGameBackups As List(Of clsBackup) = mgrManifest.DoManifestGetByName(oGame.Name, mgrSQLite.Database.Remote)
|
||||||
|
Dim oGameBackup As clsBackup
|
||||||
|
Dim sOldBackup As String
|
||||||
|
Dim iBackupCount As Integer = oGameBackups.Count
|
||||||
|
Dim iDelCount As Integer
|
||||||
|
|
||||||
|
'If we've hit or exceeded the maximum backup limit
|
||||||
|
If oGameBackups.Count >= oGame.BackupLimit Then
|
||||||
|
'How many do we need to delete
|
||||||
|
iDelCount = (oGameBackups.Count - oGame.BackupLimit) + 1
|
||||||
|
|
||||||
|
'Delete the oldest backup(s) (Manifest entry and backup file)
|
||||||
|
For i = 1 To iDelCount
|
||||||
|
oGameBackup = oGameBackups(oGameBackups.Count - i)
|
||||||
|
sOldBackup = Settings.BackupFolder & Path.DirectorySeparatorChar & oGameBackup.FileName
|
||||||
|
|
||||||
|
mgrManifest.DoManifestDeletebyID(oGameBackup, mgrSQLite.Database.Remote)
|
||||||
|
mgrManifest.DoManifestDeletebyID(oGameBackup, mgrSQLite.Database.Local)
|
||||||
|
mgrCommon.DeleteFile(sOldBackup)
|
||||||
|
mgrCommon.DeleteDirectoryByBackup(Settings.BackupFolder & Path.DirectorySeparatorChar, oGameBackup)
|
||||||
|
|
||||||
|
RaiseEvent UpdateLog(mgrCommon.FormatString(mgrBackup_BackupLimitExceeded, Path.GetFileName(sOldBackup)), False, ToolTipIcon.Info, True)
|
||||||
|
Next
|
||||||
|
End If
|
||||||
|
End Sub
|
||||||
|
|
||||||
Public Sub DoBackup(ByVal oBackupList As List(Of clsGame))
|
Public Sub DoBackup(ByVal oBackupList As List(Of clsGame))
|
||||||
Dim oGame As clsGame
|
Dim oGame As clsGame
|
||||||
Dim bDoBackup As Boolean
|
Dim bDoBackup As Boolean
|
||||||
@@ -144,6 +171,7 @@ Public Class mgrBackup
|
|||||||
End If
|
End If
|
||||||
|
|
||||||
If oGame.AppendTimeStamp Then
|
If oGame.AppendTimeStamp Then
|
||||||
|
CheckOldBackups(oGame)
|
||||||
sBackupFile = sBackupFile & Path.DirectorySeparatorChar & oGame.Name & sTimeStamp & ".7z"
|
sBackupFile = sBackupFile & Path.DirectorySeparatorChar & oGame.Name & sTimeStamp & ".7z"
|
||||||
Else
|
Else
|
||||||
sBackupFile = sBackupFile & Path.DirectorySeparatorChar & oGame.Name & ".7z"
|
sBackupFile = sBackupFile & Path.DirectorySeparatorChar & oGame.Name & ".7z"
|
||||||
@@ -214,10 +242,10 @@ Public Class mgrBackup
|
|||||||
|
|
||||||
'Write Main Manifest
|
'Write Main Manifest
|
||||||
If bBackupCompleted Then
|
If bBackupCompleted Then
|
||||||
If oSettings.CheckSum Then
|
|
||||||
RaiseEvent UpdateLog(mgrCommon.FormatString(mgrBackup_GenerateHash, oGame.Name), False, ToolTipIcon.Info, True)
|
'Generate checksum for new backup
|
||||||
sHash = mgrHash.Generate_SHA256_Hash(sBackupFile)
|
RaiseEvent UpdateLog(mgrCommon.FormatString(mgrBackup_GenerateHash, oGame.Name), False, ToolTipIcon.Info, True)
|
||||||
End If
|
sHash = mgrHash.Generate_SHA256_Hash(sBackupFile)
|
||||||
|
|
||||||
If Not DoManifestUpdate(oGame, sBackupFile, dTimeStamp, sHash) Then
|
If Not DoManifestUpdate(oGame, sBackupFile, dTimeStamp, sHash) Then
|
||||||
RaiseEvent UpdateLog(mgrCommon.FormatString(mgrBackup_ErrorManifestFailure, oGame.Name), True, ToolTipIcon.Error, True)
|
RaiseEvent UpdateLog(mgrCommon.FormatString(mgrBackup_ErrorManifestFailure, oGame.Name), True, ToolTipIcon.Error, True)
|
||||||
|
|||||||
@@ -30,7 +30,7 @@ Public Class mgrCommon
|
|||||||
|
|
||||||
Public Shared ReadOnly Property AppVersion As Integer
|
Public Shared ReadOnly Property AppVersion As Integer
|
||||||
Get
|
Get
|
||||||
Return (My.Application.Info.Version.Major * 100) + My.Application.Info.Version.Minor
|
Return (My.Application.Info.Version.Major * 100) + (My.Application.Info.Version.Minor * 10) + My.Application.Info.Version.Build
|
||||||
End Get
|
End Get
|
||||||
End Property
|
End Property
|
||||||
|
|
||||||
@@ -191,6 +191,24 @@ Public Class mgrCommon
|
|||||||
End If
|
End If
|
||||||
End Sub
|
End Sub
|
||||||
|
|
||||||
|
'Delete a sub-folder based on the provided backup information
|
||||||
|
Public Shared Sub DeleteDirectoryByBackup(ByVal sBackupFolder As String, ByVal oBackup As clsBackup)
|
||||||
|
Dim oDir As DirectoryInfo
|
||||||
|
Dim sDir As String = sBackupFolder & oBackup.Name
|
||||||
|
|
||||||
|
'Delete sub directory if it's empty
|
||||||
|
If oBackup.FileName.StartsWith(oBackup.Name & Path.DirectorySeparatorChar) Then
|
||||||
|
If Directory.Exists(sDir) Then
|
||||||
|
'Check if there's any sub-directories or files remaining
|
||||||
|
oDir = New DirectoryInfo(sDir)
|
||||||
|
If oDir.GetDirectories.Length = 0 And oDir.GetFiles.Length = 0 Then
|
||||||
|
'Folder is empty, delete the empty sub-folder
|
||||||
|
If Directory.Exists(sDir) Then DeleteDirectory(sDir)
|
||||||
|
End If
|
||||||
|
End If
|
||||||
|
End If
|
||||||
|
End Sub
|
||||||
|
|
||||||
'Save string as text file
|
'Save string as text file
|
||||||
Public Shared Sub SaveText(ByVal sText As String, ByVal sPath As String)
|
Public Shared Sub SaveText(ByVal sText As String, ByVal sPath As String)
|
||||||
Dim oStream As StreamWriter
|
Dim oStream As StreamWriter
|
||||||
|
|||||||
@@ -1,4 +0,0 @@
|
|||||||
Public Class mgrGlobals
|
|
||||||
Public Shared LocalDatabaseHash As String = String.Empty
|
|
||||||
Public Shared RemoteDatabaseHash As String = String.Empty
|
|
||||||
End Class
|
|
||||||
+157
-57
@@ -1,6 +1,37 @@
|
|||||||
Public Class mgrManifest
|
Public Class mgrManifest
|
||||||
|
|
||||||
Public Shared Function ReadManifest(ByVal iSelectDB As mgrSQLite.Database) As SortedList
|
Private Shared Function MapToObject(ByVal dr As DataRow) As clsBackup
|
||||||
|
Dim oBackupItem As clsBackup
|
||||||
|
|
||||||
|
oBackupItem = New clsBackup
|
||||||
|
oBackupItem.ID = CStr(dr("ManifestID"))
|
||||||
|
oBackupItem.Name = CStr(dr("Name"))
|
||||||
|
oBackupItem.FileName = CStr(dr("FileName"))
|
||||||
|
oBackupItem.RestorePath = CStr(dr("RestorePath"))
|
||||||
|
oBackupItem.AbsolutePath = CBool(dr("AbsolutePath"))
|
||||||
|
oBackupItem.DateUpdated = mgrCommon.UnixToDate(dr("DateUpdated"))
|
||||||
|
oBackupItem.UpdatedBy = CStr(dr("UpdatedBy"))
|
||||||
|
If Not IsDBNull(dr("CheckSum")) Then oBackupItem.CheckSum = CStr(dr("CheckSum"))
|
||||||
|
|
||||||
|
Return oBackupItem
|
||||||
|
End Function
|
||||||
|
|
||||||
|
Private Shared Function SetCoreParameters(ByVal oBackupItem As clsBackup) As Hashtable
|
||||||
|
Dim hshParams As New Hashtable
|
||||||
|
|
||||||
|
hshParams.Add("ID", oBackupItem.ID)
|
||||||
|
hshParams.Add("Name", oBackupItem.Name)
|
||||||
|
hshParams.Add("FileName", oBackupItem.FileName)
|
||||||
|
hshParams.Add("Path", oBackupItem.TruePath)
|
||||||
|
hshParams.Add("AbsolutePath", oBackupItem.AbsolutePath)
|
||||||
|
hshParams.Add("DateUpdated", oBackupItem.DateUpdatedUnix)
|
||||||
|
hshParams.Add("UpdatedBy", oBackupItem.UpdatedBy)
|
||||||
|
hshParams.Add("CheckSum", oBackupItem.CheckSum)
|
||||||
|
|
||||||
|
Return hshParams
|
||||||
|
End Function
|
||||||
|
|
||||||
|
Public Shared Function ReadFullManifest(ByVal iSelectDB As mgrSQLite.Database) As SortedList
|
||||||
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
|
||||||
@@ -11,15 +42,26 @@
|
|||||||
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 = New clsBackup
|
oBackupItem = MapToObject(dr)
|
||||||
oBackupItem.ID = CStr(dr("ManifestID"))
|
slList.Add(oBackupItem.ID, oBackupItem)
|
||||||
oBackupItem.Name = CStr(dr("Name"))
|
Next
|
||||||
oBackupItem.FileName = CStr(dr("FileName"))
|
|
||||||
oBackupItem.RestorePath = CStr(dr("RestorePath"))
|
Return slList
|
||||||
oBackupItem.AbsolutePath = CBool(dr("AbsolutePath"))
|
|
||||||
oBackupItem.DateUpdated = mgrCommon.UnixToDate(dr("DateUpdated"))
|
End Function
|
||||||
oBackupItem.UpdatedBy = CStr(dr("UpdatedBy"))
|
|
||||||
If Not IsDBNull(dr("CheckSum")) Then oBackupItem.CheckSum = CStr(dr("CheckSum"))
|
Public Shared Function ReadLatestManifest(ByVal iSelectDB As mgrSQLite.Database) As SortedList
|
||||||
|
Dim oDatabase As New mgrSQLite(iSelectDB)
|
||||||
|
Dim oData As DataSet
|
||||||
|
Dim sSQL As String
|
||||||
|
Dim oBackupItem As clsBackup
|
||||||
|
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"
|
||||||
|
oData = oDatabase.ReadParamData(sSQL, New Hashtable)
|
||||||
|
|
||||||
|
For Each dr As DataRow In oData.Tables(0).Rows
|
||||||
|
oBackupItem = MapToObject(dr)
|
||||||
slList.Add(oBackupItem.Name, oBackupItem)
|
slList.Add(oBackupItem.Name, oBackupItem)
|
||||||
Next
|
Next
|
||||||
|
|
||||||
@@ -27,7 +69,80 @@
|
|||||||
|
|
||||||
End Function
|
End Function
|
||||||
|
|
||||||
Public Shared Function DoManifestCheck(ByVal sName As String, ByVal iSelectDB As mgrSQLite.Database) As Boolean
|
Public Shared Function DoManifestGetByName(ByVal sName As String, ByVal iSelectDB As mgrSQLite.Database) As List(Of clsBackup)
|
||||||
|
Dim oDatabase As New mgrSQLite(iSelectDB)
|
||||||
|
Dim oData As DataSet
|
||||||
|
Dim sSQL As String
|
||||||
|
Dim hshParams As New Hashtable
|
||||||
|
Dim oBackupItem As New clsBackup
|
||||||
|
Dim oList As New List(Of clsBackup)
|
||||||
|
|
||||||
|
|
||||||
|
sSQL = "SELECT * from manifest "
|
||||||
|
sSQL &= "WHERE Name = @Name ORDER BY DateUpdated Desc"
|
||||||
|
|
||||||
|
hshParams.Add("Name", sName)
|
||||||
|
|
||||||
|
oData = oDatabase.ReadParamData(sSQL, hshParams)
|
||||||
|
|
||||||
|
For Each dr As DataRow In oData.Tables(0).Rows
|
||||||
|
oBackupItem = MapToObject(dr)
|
||||||
|
oList.Add(oBackupItem)
|
||||||
|
Next
|
||||||
|
|
||||||
|
Return oList
|
||||||
|
End Function
|
||||||
|
|
||||||
|
Public Shared Function DoManifestGetByID(ByVal sID As String, ByVal iSelectDB As mgrSQLite.Database) As clsBackup
|
||||||
|
Dim oDatabase As New mgrSQLite(iSelectDB)
|
||||||
|
Dim oData As DataSet
|
||||||
|
Dim sSQL As String
|
||||||
|
Dim hshParams As New Hashtable
|
||||||
|
Dim oBackupItem As New clsBackup
|
||||||
|
Dim oList As New List(Of clsBackup)
|
||||||
|
|
||||||
|
sSQL = "SELECT * from manifest "
|
||||||
|
sSQL &= "WHERE ManifestID = @ID ORDER BY DateUpdated Desc"
|
||||||
|
|
||||||
|
hshParams.Add("ID", sID)
|
||||||
|
|
||||||
|
oData = oDatabase.ReadParamData(sSQL, hshParams)
|
||||||
|
|
||||||
|
For Each dr As DataRow In oData.Tables(0).Rows
|
||||||
|
oBackupItem = MapToObject(dr)
|
||||||
|
Next
|
||||||
|
|
||||||
|
Return oBackupItem
|
||||||
|
End Function
|
||||||
|
|
||||||
|
'This should only be used to update specific entries in the remote manifest
|
||||||
|
Public Shared Function DoSpecificManifestCheck(ByRef oItem As clsBackup, 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 AND FileName = @FileName"
|
||||||
|
|
||||||
|
hshParams.Add("Name", oItem.Name)
|
||||||
|
hshParams.Add("FileName", oItem.FileName)
|
||||||
|
|
||||||
|
oData = oDatabase.ReadParamData(sSQL, hshParams)
|
||||||
|
|
||||||
|
If oData.Tables(0).Rows.Count > 0 Then
|
||||||
|
For Each dr As DataRow In oData.Tables(0).Rows
|
||||||
|
oItem.ID = CStr(dr("ManifestID"))
|
||||||
|
Next
|
||||||
|
Return True
|
||||||
|
Else
|
||||||
|
Return False
|
||||||
|
End If
|
||||||
|
|
||||||
|
End Function
|
||||||
|
|
||||||
|
'This should only be used to update entries in the local manifest
|
||||||
|
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
|
||||||
@@ -48,12 +163,11 @@
|
|||||||
|
|
||||||
End Function
|
End Function
|
||||||
|
|
||||||
Public Shared Function DoManifestGetByName(ByVal sName As String, ByVal iSelectDB As mgrSQLite.Database) As clsBackup
|
Public Shared Function DoManifestNameCheck(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
|
||||||
Dim oBackupItem As New clsBackup
|
|
||||||
|
|
||||||
sSQL = "SELECT * from manifest "
|
sSQL = "SELECT * from manifest "
|
||||||
sSQL &= "WHERE Name = @Name"
|
sSQL &= "WHERE Name = @Name"
|
||||||
@@ -62,82 +176,55 @@
|
|||||||
|
|
||||||
oData = oDatabase.ReadParamData(sSQL, hshParams)
|
oData = oDatabase.ReadParamData(sSQL, hshParams)
|
||||||
|
|
||||||
For Each dr As DataRow In oData.Tables(0).Rows
|
If oData.Tables(0).Rows.Count > 0 Then
|
||||||
oBackupItem = New clsBackup
|
Return True
|
||||||
oBackupItem.ID = CStr(dr("ManifestID"))
|
Else
|
||||||
oBackupItem.Name = CStr(dr("Name"))
|
Return False
|
||||||
oBackupItem.FileName = CStr(dr("FileName"))
|
End If
|
||||||
oBackupItem.RestorePath = CStr(dr("RestorePath"))
|
|
||||||
oBackupItem.AbsolutePath = CBool(dr("AbsolutePath"))
|
|
||||||
oBackupItem.DateUpdated = mgrCommon.UnixToDate(dr("DateUpdated"))
|
|
||||||
oBackupItem.UpdatedBy = CStr(dr("UpdatedBy"))
|
|
||||||
If Not IsDBNull(dr("CheckSum")) Then oBackupItem.CheckSum = CStr(dr("CheckSum"))
|
|
||||||
Next
|
|
||||||
|
|
||||||
Return oBackupItem
|
|
||||||
End Function
|
End Function
|
||||||
|
|
||||||
Public Shared Sub DoManifestAdd(ByVal oBackupItem As clsBackup, ByVal iSelectDB As mgrSQLite.Database)
|
Public Shared Sub DoManifestAdd(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 Hashtable
|
||||||
|
|
||||||
sSQL = "INSERT OR REPLACE INTO manifest VALUES (@ID, @Name, @FileName, @Path, @AbsolutePath, @DateUpdated, @UpdatedBy, @CheckSum)"
|
sSQL = "INSERT INTO manifest VALUES (@ID, @Name, @FileName, @Path, @AbsolutePath, @DateUpdated, @UpdatedBy, @CheckSum)"
|
||||||
|
|
||||||
hshParams.Add("ID", oBackupItem.ID)
|
hshParams = SetCoreParameters(oBackupItem)
|
||||||
hshParams.Add("Name", oBackupItem.Name)
|
|
||||||
hshParams.Add("FileName", oBackupItem.FileName)
|
|
||||||
hshParams.Add("Path", oBackupItem.TruePath)
|
|
||||||
hshParams.Add("AbsolutePath", oBackupItem.AbsolutePath)
|
|
||||||
hshParams.Add("DateUpdated", oBackupItem.DateUpdatedUnix)
|
|
||||||
hshParams.Add("UpdatedBy", oBackupItem.UpdatedBy)
|
|
||||||
hshParams.Add("CheckSum", oBackupItem.CheckSum)
|
|
||||||
|
|
||||||
oDatabase.RunParamQuery(sSQL, hshParams)
|
oDatabase.RunParamQuery(sSQL, hshParams)
|
||||||
End Sub
|
End Sub
|
||||||
|
|
||||||
Public Shared Sub DoManifestUpdate(ByVal oBackupItem As clsBackup, ByVal iSelectDB As mgrSQLite.Database)
|
Public Shared Sub DoManifestUpdateByName(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 Hashtable
|
||||||
|
|
||||||
sSQL = "UPDATE manifest SET Name = @Name, FileName = @FileName, RestorePath = @Path, AbsolutePath = @AbsolutePath, "
|
sSQL = "UPDATE manifest SET Name = @Name, FileName = @FileName, RestorePath = @Path, AbsolutePath = @AbsolutePath, "
|
||||||
sSQL &= "DateUpdated = @DateUpdated, UpdatedBy = @UpdatedBy, CheckSum = @CheckSum WHERE Name = @QueryName"
|
sSQL &= "DateUpdated = @DateUpdated, UpdatedBy = @UpdatedBy, CheckSum = @CheckSum WHERE Name = @QueryName"
|
||||||
|
|
||||||
hshParams.Add("Name", oBackupItem.Name)
|
hshParams = SetCoreParameters(oBackupItem)
|
||||||
hshParams.Add("FileName", oBackupItem.FileName)
|
|
||||||
hshParams.Add("Path", oBackupItem.TruePath)
|
|
||||||
hshParams.Add("AbsolutePath", oBackupItem.AbsolutePath)
|
|
||||||
hshParams.Add("DateUpdated", oBackupItem.DateUpdatedUnix)
|
|
||||||
hshParams.Add("UpdatedBy", oBackupItem.UpdatedBy)
|
|
||||||
hshParams.Add("CheckSum", oBackupItem.CheckSum)
|
|
||||||
hshParams.Add("QueryName", oBackupItem.Name)
|
hshParams.Add("QueryName", oBackupItem.Name)
|
||||||
|
|
||||||
oDatabase.RunParamQuery(sSQL, hshParams)
|
oDatabase.RunParamQuery(sSQL, hshParams)
|
||||||
End Sub
|
End Sub
|
||||||
|
|
||||||
Public Shared Sub DoManifestNameUpdate(ByVal sOriginalName As String, ByVal oBackupItem As clsBackup, ByVal iSelectDB As mgrSQLite.Database)
|
Public Shared Sub DoManifestUpdateByID(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 Hashtable
|
||||||
|
|
||||||
sSQL = "UPDATE manifest SET Name = @Name, FileName = @FileName, RestorePath = @Path, AbsolutePath = @AbsolutePath, "
|
sSQL = "UPDATE manifest SET Name = @Name, FileName = @FileName, RestorePath = @Path, AbsolutePath = @AbsolutePath, "
|
||||||
sSQL &= "DateUpdated = @DateUpdated, UpdatedBy = @UpdatedBy, CheckSum = @CheckSum WHERE Name = @QueryName"
|
sSQL &= "DateUpdated = @DateUpdated, UpdatedBy = @UpdatedBy, CheckSum = @CheckSum WHERE ManifestID = @QueryID"
|
||||||
|
|
||||||
hshParams.Add("Name", oBackupItem.Name)
|
hshParams = SetCoreParameters(oBackupItem)
|
||||||
hshParams.Add("FileName", oBackupItem.FileName)
|
hshParams.Add("QueryID", oBackupItem.ID)
|
||||||
hshParams.Add("Path", oBackupItem.TruePath)
|
|
||||||
hshParams.Add("AbsolutePath", oBackupItem.AbsolutePath)
|
|
||||||
hshParams.Add("DateUpdated", oBackupItem.DateUpdatedUnix)
|
|
||||||
hshParams.Add("UpdatedBy", oBackupItem.UpdatedBy)
|
|
||||||
hshParams.Add("CheckSum", oBackupItem.CheckSum)
|
|
||||||
hshParams.Add("QueryName", sOriginalName)
|
|
||||||
|
|
||||||
oDatabase.RunParamQuery(sSQL, hshParams)
|
oDatabase.RunParamQuery(sSQL, hshParams)
|
||||||
|
|
||||||
End Sub
|
End Sub
|
||||||
|
|
||||||
Public Shared Sub DoManifestDelete(ByVal oBackupItem As clsBackup, ByVal iSelectDB As mgrSQLite.Database)
|
Public Shared Sub DoManifestDeletebyName(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
|
||||||
@@ -150,6 +237,19 @@
|
|||||||
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)
|
||||||
|
Dim oDatabase As New mgrSQLite(iSelectDB)
|
||||||
|
Dim sSQL As String
|
||||||
|
Dim hshParams As New Hashtable
|
||||||
|
|
||||||
|
sSQL = "DELETE FROM manifest "
|
||||||
|
sSQL &= "WHERE ManifestID = @ID"
|
||||||
|
|
||||||
|
hshParams.Add("ID", oBackupItem.ID)
|
||||||
|
|
||||||
|
oDatabase.RunParamQuery(sSQL, hshParams)
|
||||||
|
End Sub
|
||||||
|
|
||||||
Public Shared Sub DoManifestHashWipe()
|
Public Shared Sub DoManifestHashWipe()
|
||||||
Dim oLocalDatabase As New mgrSQLite(mgrSQLite.Database.Local)
|
Dim oLocalDatabase As New mgrSQLite(mgrSQLite.Database.Local)
|
||||||
Dim oRemoteDatabase As New mgrSQLite(mgrSQLite.Database.Remote)
|
Dim oRemoteDatabase As New mgrSQLite(mgrSQLite.Database.Remote)
|
||||||
|
|||||||
+440
-476
@@ -10,57 +10,263 @@ Public Class mgrMonitorList
|
|||||||
|
|
||||||
Public Shared Event UpdateLog(sLogUpdate As String, bTrayUpdate As Boolean, objIcon As System.Windows.Forms.ToolTipIcon, bTimeStamp As Boolean)
|
Public Shared Event UpdateLog(sLogUpdate As String, bTrayUpdate As Boolean, objIcon As System.Windows.Forms.ToolTipIcon, bTimeStamp As Boolean)
|
||||||
|
|
||||||
Public Shared Sub HandleBackupLocationChange(ByVal oSettings As mgrSettings)
|
Private Shared Function MapToObject(ByVal dr As DataRow) As clsGame
|
||||||
Dim oDatabase As New mgrSQLite(mgrSQLite.Database.Remote)
|
Dim oGame As New clsGame
|
||||||
Dim iGameCount As Integer
|
|
||||||
|
|
||||||
'Check if a remote database already exists in the new backup location
|
oGame.ID = CStr(dr("MonitorID"))
|
||||||
If oDatabase.CheckDB() Then
|
oGame.Name = CStr(dr("Name"))
|
||||||
'Make sure database is the latest version
|
oGame.ProcessName = CStr(dr("Process"))
|
||||||
oDatabase.DatabaseUpgrade()
|
If Not IsDBNull(dr("Path")) Then oGame.Path = CStr(dr("Path"))
|
||||||
|
oGame.AbsolutePath = CBool(dr("AbsolutePath"))
|
||||||
|
oGame.FolderSave = CBool(dr("FolderSave"))
|
||||||
|
If Not IsDBNull(dr("FileType")) Then oGame.FileType = CStr(dr("FileType"))
|
||||||
|
oGame.AppendTimeStamp = CBool(dr("TimeStamp"))
|
||||||
|
If Not IsDBNull(dr("ExcludeList")) Then oGame.ExcludeList = CStr(dr("ExcludeList"))
|
||||||
|
If Not IsDBNull(dr("ProcessPath")) Then oGame.ProcessPath = CStr(dr("ProcessPath"))
|
||||||
|
If Not IsDBNull(dr("Icon")) Then oGame.Icon = CStr(dr("Icon"))
|
||||||
|
oGame.Hours = CDbl(dr("Hours"))
|
||||||
|
If Not IsDBNull(dr("Version")) Then oGame.Version = CStr(dr("Version"))
|
||||||
|
If Not IsDBNull(dr("Company")) Then oGame.Company = CStr(dr("Company"))
|
||||||
|
oGame.Enabled = CBool(dr("Enabled"))
|
||||||
|
oGame.MonitorOnly = CBool(dr("MonitorOnly"))
|
||||||
|
oGame.BackupLimit = CInt(dr("BackupLimit"))
|
||||||
|
oGame.CleanFolder = CBool(dr("CleanFolder"))
|
||||||
|
|
||||||
'See if the remote database is empty
|
Return oGame
|
||||||
iGameCount = mgrMonitorList.ReadList(eListTypes.FullList, mgrSQLite.Database.Remote).Count
|
End Function
|
||||||
|
|
||||||
'If the remote database actually contains a list, then ask what to do
|
Private Shared Function SetCoreParameters(ByVal oGame As clsGame) As Hashtable
|
||||||
If iGameCount > 0 Then
|
Dim hshParams As New Hashtable
|
||||||
If mgrCommon.ShowMessage(mgrMonitorList_ConfirmExistingData, MsgBoxStyle.YesNo) = MsgBoxResult.Yes Then
|
|
||||||
mgrMonitorList.SyncMonitorLists(oSettings.SyncFields)
|
hshParams.Add("ID", oGame.ID)
|
||||||
Else
|
hshParams.Add("Name", oGame.Name)
|
||||||
mgrMonitorList.SyncMonitorLists(oSettings.SyncFields, False)
|
hshParams.Add("Process", oGame.TrueProcess)
|
||||||
End If
|
hshParams.Add("Path", oGame.TruePath)
|
||||||
Else
|
hshParams.Add("AbsolutePath", oGame.AbsolutePath)
|
||||||
mgrMonitorList.SyncMonitorLists(oSettings.SyncFields)
|
hshParams.Add("FolderSave", oGame.FolderSave)
|
||||||
End If
|
hshParams.Add("FileType", oGame.FileType)
|
||||||
|
hshParams.Add("TimeStamp", oGame.AppendTimeStamp)
|
||||||
|
hshParams.Add("ExcludeList", oGame.ExcludeList)
|
||||||
|
hshParams.Add("ProcessPath", oGame.ProcessPath)
|
||||||
|
hshParams.Add("Icon", oGame.Icon)
|
||||||
|
hshParams.Add("Hours", oGame.Hours)
|
||||||
|
hshParams.Add("Version", oGame.Version)
|
||||||
|
hshParams.Add("Company", oGame.Company)
|
||||||
|
hshParams.Add("Enabled", oGame.Enabled)
|
||||||
|
hshParams.Add("MonitorOnly", oGame.MonitorOnly)
|
||||||
|
hshParams.Add("BackupLimit", oGame.BackupLimit)
|
||||||
|
hshParams.Add("CleanFolder", oGame.CleanFolder)
|
||||||
|
|
||||||
|
Return hshParams
|
||||||
|
End Function
|
||||||
|
|
||||||
|
Public Shared Function ReadList(ByVal eListType As eListTypes, Optional ByVal iSelectDB As mgrSQLite.Database = mgrSQLite.Database.Local) As Hashtable
|
||||||
|
Dim oDatabase As New mgrSQLite(iSelectDB)
|
||||||
|
Dim oData As DataSet
|
||||||
|
Dim sSQL As String
|
||||||
|
Dim hshList As New Hashtable
|
||||||
|
Dim hshDupeList As New Hashtable
|
||||||
|
Dim oGame As clsGame
|
||||||
|
|
||||||
|
sSQL = "Select * from monitorlist ORDER BY Name Asc"
|
||||||
|
oData = oDatabase.ReadParamData(sSQL, New Hashtable)
|
||||||
|
|
||||||
|
For Each dr As DataRow In oData.Tables(0).Rows
|
||||||
|
oGame = MapToObject(dr)
|
||||||
|
Select Case eListType
|
||||||
|
Case eListTypes.FullList
|
||||||
|
'Don't wrap this, if it fails there's a problem with the database
|
||||||
|
hshList.Add(oGame.ProcessName & ":" & oGame.Name, oGame)
|
||||||
|
Case eListTypes.ScanList
|
||||||
|
If hshList.Contains(oGame.ProcessName) Then
|
||||||
|
DirectCast(hshList.Item(oGame.ProcessName), clsGame).Duplicate = True
|
||||||
|
oGame.ProcessName = oGame.ProcessName & ":" & oGame.Name
|
||||||
|
oGame.Duplicate = True
|
||||||
|
End If
|
||||||
|
If oGame.Enabled Then hshList.Add(oGame.ProcessName, oGame)
|
||||||
|
End Select
|
||||||
|
Next
|
||||||
|
|
||||||
|
Return hshList
|
||||||
|
End Function
|
||||||
|
|
||||||
|
Public Shared Sub DoListAdd(ByVal oGame As clsGame, Optional ByVal iSelectDB As mgrSQLite.Database = mgrSQLite.Database.Local)
|
||||||
|
Dim oDatabase As New mgrSQLite(iSelectDB)
|
||||||
|
Dim sSQL As String
|
||||||
|
Dim hshParams As Hashtable
|
||||||
|
|
||||||
|
sSQL = "INSERT INTO monitorlist VALUES (@ID, @Name, @Process, @Path, @AbsolutePath, @FolderSave, @FileType, @TimeStamp, "
|
||||||
|
sSQL &= "@ExcludeList, @ProcessPath, @Icon, @Hours, @Version, @Company, @Enabled, @MonitorOnly, @BackupLimit, @CleanFolder)"
|
||||||
|
|
||||||
|
'Parameters
|
||||||
|
hshParams = SetCoreParameters(oGame)
|
||||||
|
|
||||||
|
oDatabase.RunParamQuery(sSQL, hshParams)
|
||||||
|
|
||||||
|
End Sub
|
||||||
|
|
||||||
|
Public Shared Sub DoListUpdate(ByVal oGame As clsGame, Optional ByVal iSelectDB As mgrSQLite.Database = mgrSQLite.Database.Local)
|
||||||
|
Dim oDatabase As New mgrSQLite(iSelectDB)
|
||||||
|
Dim sSQL As String
|
||||||
|
Dim hshParams As Hashtable
|
||||||
|
|
||||||
|
sSQL = "UPDATE monitorlist SET Name=@Name, Process=@Process, Path=@Path, AbsolutePath=@AbsolutePath, FolderSave=@FolderSave, "
|
||||||
|
sSQL &= "FileType=@FileType, TimeStamp=@TimeStamp, ExcludeList=@ExcludeList, ProcessPath=@ProcessPath, Icon=@Icon, "
|
||||||
|
sSQL &= "Hours=@Hours, Version=@Version, Company=@Company, Enabled=@Enabled, MonitorOnly=@MonitorOnly, BackupLimit=@BackupLimit, CleanFolder=@CleanFolder WHERE MonitorID=@ID"
|
||||||
|
|
||||||
|
'Parameters
|
||||||
|
hshParams = SetCoreParameters(oGame)
|
||||||
|
|
||||||
|
oDatabase.RunParamQuery(sSQL, hshParams)
|
||||||
|
|
||||||
|
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)
|
||||||
|
Dim oDatabase As New mgrSQLite(iSelectDB)
|
||||||
|
Dim sSQL As String
|
||||||
|
Dim hshParams As New Hashtable
|
||||||
|
Dim iCounter As Integer
|
||||||
|
|
||||||
|
sSQL = "UPDATE monitorlist SET Enabled=@Enabled, MonitorOnly=@MonitorOnly WHERE MonitorID IN ("
|
||||||
|
|
||||||
|
'Parameters
|
||||||
|
hshParams.Add("Enabled", oGame.Enabled)
|
||||||
|
hshParams.Add("MonitorOnly", oGame.MonitorOnly)
|
||||||
|
|
||||||
|
For Each s As String In sMonitorIDs
|
||||||
|
sSQL &= "@MonitorID" & iCounter & ","
|
||||||
|
hshParams.Add("MonitorID" & iCounter, s)
|
||||||
|
iCounter += 1
|
||||||
|
Next
|
||||||
|
|
||||||
|
sSQL = sSQL.TrimEnd(",")
|
||||||
|
sSQL &= ")"
|
||||||
|
|
||||||
|
oDatabase.RunParamQuery(sSQL, hshParams)
|
||||||
|
|
||||||
|
End Sub
|
||||||
|
|
||||||
|
Public Shared Sub DoListDelete(ByVal sMonitorID As String, Optional ByVal iSelectDB As mgrSQLite.Database = mgrSQLite.Database.Local)
|
||||||
|
Dim oDatabase As New mgrSQLite(iSelectDB)
|
||||||
|
Dim sSQL As String
|
||||||
|
Dim hshParams As New Hashtable
|
||||||
|
|
||||||
|
sSQL = "DELETE FROM gametags "
|
||||||
|
sSQL &= "WHERE MonitorID = @MonitorID;"
|
||||||
|
sSQL &= "DELETE FROM monitorlist "
|
||||||
|
sSQL &= "WHERE MonitorID = @MonitorID;"
|
||||||
|
|
||||||
|
hshParams.Add("MonitorID", sMonitorID)
|
||||||
|
|
||||||
|
oDatabase.RunParamQuery(sSQL, hshParams)
|
||||||
|
|
||||||
|
End Sub
|
||||||
|
|
||||||
|
Public Shared Sub DoListDeleteMulti(ByVal sMonitorIDs As List(Of String), Optional ByVal iSelectDB As mgrSQLite.Database = mgrSQLite.Database.Local)
|
||||||
|
Dim oDatabase As New mgrSQLite(iSelectDB)
|
||||||
|
Dim sSQL As String
|
||||||
|
Dim hshParams As New Hashtable
|
||||||
|
Dim iCounter As Integer
|
||||||
|
|
||||||
|
sSQL = "DELETE FROM gametags "
|
||||||
|
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 monitorlist "
|
||||||
|
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 &= ");"
|
||||||
|
|
||||||
|
oDatabase.RunParamQuery(sSQL, hshParams)
|
||||||
|
End Sub
|
||||||
|
|
||||||
|
Public Shared Function DoListGetbyID(ByVal iMonitorID As Integer, Optional ByVal iSelectDB As mgrSQLite.Database = mgrSQLite.Database.Local) As clsGame
|
||||||
|
Dim oDatabase As New mgrSQLite(iSelectDB)
|
||||||
|
Dim sSQL As String
|
||||||
|
Dim oData As DataSet
|
||||||
|
Dim oGame As New clsGame
|
||||||
|
Dim hshParams As New Hashtable
|
||||||
|
|
||||||
|
sSQL = "SELECT * from monitorlist "
|
||||||
|
sSQL &= "WHERE MonitorID = @MonitorID"
|
||||||
|
|
||||||
|
hshParams.Add("MonitorID", iMonitorID)
|
||||||
|
|
||||||
|
oData = oDatabase.ReadParamData(sSQL, hshParams)
|
||||||
|
|
||||||
|
For Each dr As DataRow In oData.Tables(0).Rows
|
||||||
|
oGame = MapToObject(dr)
|
||||||
|
Next
|
||||||
|
|
||||||
|
Return oGame
|
||||||
|
End Function
|
||||||
|
|
||||||
|
Public Shared Function DoListGetbyName(ByVal sName As String, Optional ByVal iSelectDB As mgrSQLite.Database = mgrSQLite.Database.Local) As Hashtable
|
||||||
|
Dim oDatabase As New mgrSQLite(iSelectDB)
|
||||||
|
Dim sSQL As String
|
||||||
|
Dim oData As DataSet
|
||||||
|
Dim oGame As New clsGame
|
||||||
|
Dim hshGames As New Hashtable
|
||||||
|
Dim hshParams As New Hashtable
|
||||||
|
Dim iCounter As Integer = 0
|
||||||
|
|
||||||
|
sSQL = "SELECT * from monitorlist "
|
||||||
|
sSQL &= "WHERE Name = @Name"
|
||||||
|
|
||||||
|
hshParams.Add("Name", sName)
|
||||||
|
|
||||||
|
oData = oDatabase.ReadParamData(sSQL, hshParams)
|
||||||
|
|
||||||
|
For Each dr As DataRow In oData.Tables(0).Rows
|
||||||
|
oGame = MapToObject(dr)
|
||||||
|
hshGames.Add(iCounter, oGame)
|
||||||
|
iCounter += 1
|
||||||
|
Next
|
||||||
|
|
||||||
|
Return hshGames
|
||||||
|
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
|
||||||
|
Dim oDatabase As New mgrSQLite(iSelectDB)
|
||||||
|
Dim sSQL As String
|
||||||
|
Dim oData As DataSet
|
||||||
|
Dim hshParams As New Hashtable
|
||||||
|
|
||||||
|
sSQL = "SELECT * FROM monitorlist WHERE Name = @Name AND Process= @Process"
|
||||||
|
|
||||||
|
hshParams.Add("Name", sName)
|
||||||
|
hshParams.Add("Process", sProcess)
|
||||||
|
|
||||||
|
If sExcludeID <> String.Empty Then
|
||||||
|
sSQL &= " AND MonitorID <> @MonitorID"
|
||||||
|
hshParams.Add("MonitorID", sExcludeID)
|
||||||
|
End If
|
||||||
|
|
||||||
|
oData = oDatabase.ReadParamData(sSQL, hshParams)
|
||||||
|
|
||||||
|
If oData.Tables(0).Rows.Count > 0 Then
|
||||||
|
Return True
|
||||||
Else
|
Else
|
||||||
mgrMonitorList.SyncMonitorLists(oSettings.SyncFields)
|
Return False
|
||||||
End If
|
End If
|
||||||
End Sub
|
End Function
|
||||||
|
|
||||||
Public Shared Sub ExportMonitorList(ByVal sLocation As String)
|
|
||||||
Dim oList As List(Of Game)
|
|
||||||
Dim bSuccess As Boolean = False
|
|
||||||
Dim oTagFilters As New List(Of clsTag)
|
|
||||||
Dim oStringFilters As New Hashtable
|
|
||||||
Dim eCurrentFilter As frmFilter.eFilterType = frmFilter.eFilterType.NoFilter
|
|
||||||
|
|
||||||
If mgrCommon.ShowMessage(mgrMonitorList_ConfirmApplyFilter, MsgBoxStyle.YesNo) = MsgBoxResult.Yes Then
|
|
||||||
Dim frm As New frmFilter
|
|
||||||
frm.ShowDialog()
|
|
||||||
oTagFilters = frm.TagFilters
|
|
||||||
oStringFilters = frm.StringFilters
|
|
||||||
eCurrentFilter = frm.FilterType
|
|
||||||
End If
|
|
||||||
|
|
||||||
oList = ReadListForExport(oTagFilters, oStringFilters, eCurrentFilter)
|
|
||||||
|
|
||||||
bSuccess = mgrXML.SerializeAndExport(oList, sLocation)
|
|
||||||
|
|
||||||
If bSuccess Then
|
|
||||||
mgrCommon.ShowMessage(mgrMonitorList_ExportComplete, oList.Count, MsgBoxStyle.Information)
|
|
||||||
End If
|
|
||||||
End Sub
|
|
||||||
|
|
||||||
|
'Sync Functions
|
||||||
Public Shared Sub DoListAddUpdateSync(ByVal hshGames As Hashtable, Optional ByVal iSelectDB As mgrSQLite.Database = mgrSQLite.Database.Local,
|
Public Shared Sub DoListAddUpdateSync(ByVal hshGames As Hashtable, Optional ByVal iSelectDB As mgrSQLite.Database = mgrSQLite.Database.Local,
|
||||||
Optional ByVal eSyncFields As clsGame.eOptionalSyncFields = clsGame.eOptionalSyncFields.None)
|
Optional ByVal eSyncFields As clsGame.eOptionalSyncFields = clsGame.eOptionalSyncFields.None)
|
||||||
Dim oDatabase As New mgrSQLite(iSelectDB)
|
Dim oDatabase As New mgrSQLite(iSelectDB)
|
||||||
@@ -75,6 +281,7 @@ Public Class mgrMonitorList
|
|||||||
Dim sCompany As String
|
Dim sCompany As String
|
||||||
Dim sMonitorGame As String
|
Dim sMonitorGame As String
|
||||||
Dim sTimeStamp As String
|
Dim sTimeStamp As String
|
||||||
|
Dim sBackupLimit As String
|
||||||
|
|
||||||
'Setup SQL for optional fields
|
'Setup SQL for optional fields
|
||||||
If (eSyncFields And clsGame.eOptionalSyncFields.Company) = clsGame.eOptionalSyncFields.Company Then
|
If (eSyncFields And clsGame.eOptionalSyncFields.Company) = clsGame.eOptionalSyncFields.Company Then
|
||||||
@@ -99,8 +306,10 @@ Public Class mgrMonitorList
|
|||||||
End If
|
End If
|
||||||
If (eSyncFields And clsGame.eOptionalSyncFields.TimeStamp) = clsGame.eOptionalSyncFields.TimeStamp Then
|
If (eSyncFields And clsGame.eOptionalSyncFields.TimeStamp) = clsGame.eOptionalSyncFields.TimeStamp Then
|
||||||
sTimeStamp = "@TimeStamp"
|
sTimeStamp = "@TimeStamp"
|
||||||
|
sBackupLimit = "@BackupLimit"
|
||||||
Else
|
Else
|
||||||
sTimeStamp = "COALESCE((SELECT TimeStamp FROM monitorlist WHERE MonitorID=@ID),0)"
|
sTimeStamp = "COALESCE((SELECT TimeStamp FROM monitorlist WHERE MonitorID=@ID),0)"
|
||||||
|
sBackupLimit = "COALESCE((SELECT BackupLimit FROM monitorlist WHERE MonitorID=@ID),2)"
|
||||||
End If
|
End If
|
||||||
If (eSyncFields And clsGame.eOptionalSyncFields.Version) = clsGame.eOptionalSyncFields.Version Then
|
If (eSyncFields And clsGame.eOptionalSyncFields.Version) = clsGame.eOptionalSyncFields.Version Then
|
||||||
sVersion = "@Version"
|
sVersion = "@Version"
|
||||||
@@ -108,11 +317,11 @@ Public Class mgrMonitorList
|
|||||||
sVersion = "(SELECT Version FROM monitorlist WHERE MonitorID=@ID)"
|
sVersion = "(SELECT Version FROM monitorlist WHERE MonitorID=@ID)"
|
||||||
End If
|
End If
|
||||||
|
|
||||||
sSQL = "INSERT OR REPLACE INTO monitorlist (MonitorID, Name, Process, Path, AbsolutePath, FolderSave, FileType, TimeStamp, ExcludeList, ProcessPath, Icon, Hours, Version, Company, Enabled, MonitorOnly) "
|
sSQL = "INSERT OR REPLACE INTO monitorlist (MonitorID, Name, Process, Path, AbsolutePath, FolderSave, FileType, TimeStamp, ExcludeList, ProcessPath, Icon, Hours, Version, Company, Enabled, MonitorOnly, BackupLimit, CleanFolder) "
|
||||||
sSQL &= "VALUES (@ID, @Name, @Process, @Path, @AbsolutePath, @FolderSave, @FileType, "
|
sSQL &= "VALUES (@ID, @Name, @Process, @Path, @AbsolutePath, @FolderSave, @FileType, "
|
||||||
sSQL &= sTimeStamp & ", @ExcludeList, " & sGamePath & ", "
|
sSQL &= sTimeStamp & ", @ExcludeList, " & sGamePath & ", "
|
||||||
sSQL &= sIcon & ", @Hours, " & sVersion & ", "
|
sSQL &= sIcon & ", @Hours, " & sVersion & ", "
|
||||||
sSQL &= sCompany & ", " & sMonitorGame & ", @MonitorOnly);"
|
sSQL &= sCompany & ", " & sMonitorGame & ", @MonitorOnly, " & sBackupLimit & ",@CleanFolder);"
|
||||||
|
|
||||||
For Each oGame As clsGame In hshGames.Values
|
For Each oGame As clsGame In hshGames.Values
|
||||||
hshParams = New Hashtable
|
hshParams = New Hashtable
|
||||||
@@ -128,6 +337,7 @@ Public Class mgrMonitorList
|
|||||||
hshParams.Add("ExcludeList", oGame.ExcludeList)
|
hshParams.Add("ExcludeList", oGame.ExcludeList)
|
||||||
hshParams.Add("Hours", oGame.Hours)
|
hshParams.Add("Hours", oGame.Hours)
|
||||||
hshParams.Add("MonitorOnly", oGame.MonitorOnly)
|
hshParams.Add("MonitorOnly", oGame.MonitorOnly)
|
||||||
|
hshParams.Add("CleanFolder", oGame.CleanFolder)
|
||||||
|
|
||||||
'Optional Parameters
|
'Optional Parameters
|
||||||
If (eSyncFields And clsGame.eOptionalSyncFields.Company) = clsGame.eOptionalSyncFields.Company Then
|
If (eSyncFields And clsGame.eOptionalSyncFields.Company) = clsGame.eOptionalSyncFields.Company Then
|
||||||
@@ -144,6 +354,7 @@ Public Class mgrMonitorList
|
|||||||
End If
|
End If
|
||||||
If (eSyncFields And clsGame.eOptionalSyncFields.TimeStamp) = clsGame.eOptionalSyncFields.TimeStamp Then
|
If (eSyncFields And clsGame.eOptionalSyncFields.TimeStamp) = clsGame.eOptionalSyncFields.TimeStamp Then
|
||||||
hshParams.Add("TimeStamp", oGame.AppendTimeStamp)
|
hshParams.Add("TimeStamp", oGame.AppendTimeStamp)
|
||||||
|
hshParams.Add("BackupLimit", oGame.BackupLimit)
|
||||||
End If
|
End If
|
||||||
If (eSyncFields And clsGame.eOptionalSyncFields.Version) = clsGame.eOptionalSyncFields.Version Then
|
If (eSyncFields And clsGame.eOptionalSyncFields.Version) = clsGame.eOptionalSyncFields.Version Then
|
||||||
hshParams.Add("Version", oGame.Version)
|
hshParams.Add("Version", oGame.Version)
|
||||||
@@ -256,6 +467,145 @@ Public Class mgrMonitorList
|
|||||||
Application.DoEvents()
|
Application.DoEvents()
|
||||||
End Sub
|
End Sub
|
||||||
|
|
||||||
|
'Filter Functions
|
||||||
|
Private Shared Function BuildFilterQuery(ByVal oTagFilters As List(Of clsTag), ByVal hshStringFilters As Hashtable, eFilterType As frmFilter.eFilterType, ByRef hshParams As Hashtable) As String
|
||||||
|
Dim sSQL As String = String.Empty
|
||||||
|
Dim iCounter As Integer = 0
|
||||||
|
|
||||||
|
Select Case eFilterType
|
||||||
|
Case frmFilter.eFilterType.NoFilter
|
||||||
|
sSQL = "SELECT MonitorID, Name, Process, Path, AbsolutePath, FolderSave, FileType, TimeStamp, ExcludeList, ProcessPath, Icon, Hours, Version, Company, Enabled, MonitorOnly, BackupLimit, CleanFolder FROM monitorlist ORDER BY Name Asc"
|
||||||
|
Case frmFilter.eFilterType.FieldAnd, frmFilter.eFilterType.FieldOr
|
||||||
|
sSQL = "SELECT MonitorID, Name, Process, Path, AbsolutePath, FolderSave, FileType, TimeStamp, ExcludeList, ProcessPath, Icon, Hours, Version, Company, Enabled, MonitorOnly, BackupLimit, CleanFolder FROM monitorlist"
|
||||||
|
|
||||||
|
If hshStringFilters.Count > 0 Then
|
||||||
|
sSQL &= " WHERE ("
|
||||||
|
For Each de As DictionaryEntry In hshStringFilters
|
||||||
|
sSQL &= de.Key & " LIKE @" & de.Key
|
||||||
|
hshParams.Add(de.Key, "%" & de.Value.ToString & "%")
|
||||||
|
iCounter += 1
|
||||||
|
If iCounter <> hshStringFilters.Count Then
|
||||||
|
Select Case eFilterType
|
||||||
|
Case frmFilter.eFilterType.FieldAnd
|
||||||
|
sSQL &= " AND "
|
||||||
|
Case frmFilter.eFilterType.FieldOr
|
||||||
|
sSQL &= " OR "
|
||||||
|
End Select
|
||||||
|
End If
|
||||||
|
|
||||||
|
Next
|
||||||
|
sSQL &= ")"
|
||||||
|
End If
|
||||||
|
sSQL &= " ORDER BY Name Asc"
|
||||||
|
Case frmFilter.eFilterType.AnyTag
|
||||||
|
sSQL = "SELECT DISTINCT MonitorID, Name, Process, Path, AbsolutePath, FolderSave, FileType, TimeStamp, ExcludeList, ProcessPath, Icon, Hours, Version, Company, Enabled, MonitorOnly, BackupLimit, CleanFolder FROM monitorlist "
|
||||||
|
sSQL &= "NATURAL JOIN gametags WHERE gametags.TagID IN ("
|
||||||
|
|
||||||
|
For Each oTag As clsTag In oTagFilters
|
||||||
|
sSQL &= "@TagID" & iCounter & ","
|
||||||
|
hshParams.Add("TagID" & iCounter, oTag.ID)
|
||||||
|
iCounter += 1
|
||||||
|
Next
|
||||||
|
|
||||||
|
sSQL = sSQL.TrimEnd(",")
|
||||||
|
sSQL &= ") ORDER BY Name Asc"
|
||||||
|
Case frmFilter.eFilterType.AllTags
|
||||||
|
sSQL = "SELECT MonitorID, Name, Process, Path, AbsolutePath, FolderSave, FileType, TimeStamp, ExcludeList, ProcessPath, Icon, Hours, Version, Company, Enabled, MonitorOnly, BackupLimit, CleanFolder FROM monitorlist WHERE MonitorID IN "
|
||||||
|
|
||||||
|
For Each oTag As clsTag In oTagFilters
|
||||||
|
sSQL &= "(SELECT MonitorID FROM gametags WHERE monitorlist.MonitorID = gametags.MonitorID And TagID = @TagID" & iCounter & ")"
|
||||||
|
If iCounter <> oTagFilters.Count - 1 Then
|
||||||
|
sSQL &= " AND MonitorID IN "
|
||||||
|
End If
|
||||||
|
hshParams.Add("TagID" & iCounter, oTag.ID)
|
||||||
|
iCounter += 1
|
||||||
|
Next
|
||||||
|
|
||||||
|
sSQL &= " ORDER BY Name Asc"
|
||||||
|
Case frmFilter.eFilterType.NoTags
|
||||||
|
sSQL = "SELECT MonitorID, Name, Process, Path, AbsolutePath, FolderSave, FileType, TimeStamp, ExcludeList, ProcessPath, Icon, Hours, Version, Company, Enabled, MonitorOnly, BackupLimit, CleanFolder FROM monitorlist WHERE MonitorID NOT IN (SELECT MonitorID FROM gametags) ORDER BY Name Asc"
|
||||||
|
End Select
|
||||||
|
|
||||||
|
Return sSQL
|
||||||
|
|
||||||
|
End Function
|
||||||
|
|
||||||
|
Public Shared Function ReadFilteredList(ByVal oTagFilters As List(Of clsTag), ByVal hshStringFilters As Hashtable, eFilterType As frmFilter.eFilterType, Optional ByVal iSelectDB As mgrSQLite.Database = mgrSQLite.Database.Local) As Hashtable
|
||||||
|
Dim oDatabase As New mgrSQLite(iSelectDB)
|
||||||
|
Dim oData As DataSet
|
||||||
|
Dim sSQL As String = String.Empty
|
||||||
|
Dim hshList As New Hashtable
|
||||||
|
Dim oGame As clsGame
|
||||||
|
Dim hshParams As New Hashtable
|
||||||
|
Dim iCounter As Integer = 0
|
||||||
|
|
||||||
|
sSQL = BuildFilterQuery(oTagFilters, hshStringFilters, eFilterType, hshParams)
|
||||||
|
|
||||||
|
oData = oDatabase.ReadParamData(sSQL, hshParams)
|
||||||
|
|
||||||
|
For Each dr As DataRow In oData.Tables(0).Rows
|
||||||
|
oGame = MapToObject(dr)
|
||||||
|
|
||||||
|
hshList.Add(oGame.ID, oGame)
|
||||||
|
Next
|
||||||
|
|
||||||
|
Return hshList
|
||||||
|
End Function
|
||||||
|
|
||||||
|
|
||||||
|
'Import / Export Functions
|
||||||
|
Public Shared Function ReadListForExport(ByVal oTagFilters As List(Of clsTag), ByVal hshStringFilters As Hashtable, ByVal eFilterType As frmFilter.eFilterType, Optional ByVal iSelectDB As mgrSQLite.Database = mgrSQLite.Database.Local) As List(Of Game)
|
||||||
|
Dim oDatabase As New mgrSQLite(iSelectDB)
|
||||||
|
Dim oData As DataSet
|
||||||
|
Dim sSQL As String = String.Empty
|
||||||
|
Dim sID As String
|
||||||
|
Dim oList As New List(Of Game)
|
||||||
|
Dim oGame As Game
|
||||||
|
Dim hshParams As New Hashtable
|
||||||
|
|
||||||
|
sSQL = BuildFilterQuery(oTagFilters, hshStringFilters, eFilterType, hshParams)
|
||||||
|
|
||||||
|
oData = oDatabase.ReadParamData(sSQL, hshParams)
|
||||||
|
|
||||||
|
For Each dr As DataRow In oData.Tables(0).Rows
|
||||||
|
oGame = New Game
|
||||||
|
sID = CStr(dr("MonitorID"))
|
||||||
|
oGame.Name = CStr(dr("Name"))
|
||||||
|
oGame.ProcessName = CStr(dr("Process"))
|
||||||
|
If Not IsDBNull(dr("Path")) Then oGame.Path = CStr(dr("Path"))
|
||||||
|
oGame.AbsolutePath = CBool(dr("AbsolutePath"))
|
||||||
|
oGame.FolderSave = CBool(dr("FolderSave"))
|
||||||
|
If Not IsDBNull(dr("FileType")) Then oGame.FileType = CStr(dr("FileType"))
|
||||||
|
If Not IsDBNull(dr("ExcludeList")) Then oGame.ExcludeList = CStr(dr("ExcludeList"))
|
||||||
|
oGame.Tags = mgrGameTags.GetTagsByGameForExport(sID)
|
||||||
|
oList.Add(oGame)
|
||||||
|
Next
|
||||||
|
|
||||||
|
Return oList
|
||||||
|
End Function
|
||||||
|
|
||||||
|
Public Shared Function DoImport(ByVal sPath As String) As Boolean
|
||||||
|
If (sPath.IndexOf("http://", 0, StringComparison.CurrentCultureIgnoreCase) > -1) Or
|
||||||
|
(sPath.IndexOf("https://", 0, StringComparison.CurrentCultureIgnoreCase) > -1) Then
|
||||||
|
If mgrCommon.CheckAddress(sPath) Then
|
||||||
|
ImportMonitorList(sPath, True)
|
||||||
|
Return True
|
||||||
|
Else
|
||||||
|
mgrCommon.ShowMessage(mgrMonitorList_WebNoReponse, sPath, MsgBoxStyle.Exclamation)
|
||||||
|
Return False
|
||||||
|
End If
|
||||||
|
Else
|
||||||
|
If File.Exists(sPath) Then
|
||||||
|
ImportMonitorList(sPath)
|
||||||
|
Return True
|
||||||
|
Else
|
||||||
|
mgrCommon.ShowMessage(mgrMonitorList_FileNotFound, sPath, MsgBoxStyle.Exclamation)
|
||||||
|
Return False
|
||||||
|
End If
|
||||||
|
End If
|
||||||
|
Return True
|
||||||
|
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 Hashtable
|
||||||
Dim hshCompareTo As Hashtable
|
Dim hshCompareTo As Hashtable
|
||||||
@@ -301,441 +651,55 @@ Public Class mgrMonitorList
|
|||||||
Application.DoEvents()
|
Application.DoEvents()
|
||||||
End Sub
|
End Sub
|
||||||
|
|
||||||
Public Shared Function DoImport(ByVal sPath As String) As Boolean
|
Public Shared Sub ExportMonitorList(ByVal sLocation As String)
|
||||||
If (sPath.IndexOf("http://", 0, StringComparison.CurrentCultureIgnoreCase) > -1) Or _
|
Dim oList As List(Of Game)
|
||||||
(sPath.IndexOf("https://", 0, StringComparison.CurrentCultureIgnoreCase) > -1) Then
|
Dim bSuccess As Boolean = False
|
||||||
If mgrCommon.CheckAddress(sPath) Then
|
Dim oTagFilters As New List(Of clsTag)
|
||||||
ImportMonitorList(sPath, True)
|
Dim oStringFilters As New Hashtable
|
||||||
Return True
|
Dim eCurrentFilter As frmFilter.eFilterType = frmFilter.eFilterType.NoFilter
|
||||||
Else
|
|
||||||
mgrCommon.ShowMessage(mgrMonitorList_WebNoReponse, sPath, MsgBoxStyle.Exclamation)
|
If mgrCommon.ShowMessage(mgrMonitorList_ConfirmApplyFilter, MsgBoxStyle.YesNo) = MsgBoxResult.Yes Then
|
||||||
Return False
|
Dim frm As New frmFilter
|
||||||
End If
|
frm.ShowDialog()
|
||||||
Else
|
oTagFilters = frm.TagFilters
|
||||||
If File.Exists(sPath) Then
|
oStringFilters = frm.StringFilters
|
||||||
ImportMonitorList(sPath)
|
eCurrentFilter = frm.FilterType
|
||||||
Return True
|
|
||||||
Else
|
|
||||||
mgrCommon.ShowMessage(mgrMonitorList_FileNotFound, sPath, MsgBoxStyle.Exclamation)
|
|
||||||
Return False
|
|
||||||
End If
|
|
||||||
End If
|
End If
|
||||||
Return True
|
|
||||||
End Function
|
|
||||||
|
|
||||||
Private Shared Function BuildFilterQuery(ByVal oTagFilters As List(Of clsTag), ByVal hshStringFilters As Hashtable, eFilterType As frmFilter.eFilterType, ByRef hshParams As Hashtable) As String
|
oList = ReadListForExport(oTagFilters, oStringFilters, eCurrentFilter)
|
||||||
Dim sSQL As String = String.Empty
|
|
||||||
Dim iCounter As Integer = 0
|
|
||||||
|
|
||||||
Select Case eFilterType
|
bSuccess = mgrXML.SerializeAndExport(oList, sLocation)
|
||||||
Case frmFilter.eFilterType.NoFilter
|
|
||||||
sSQL = "SELECT MonitorID, Name, Process, Path, AbsolutePath, FolderSave, FileType, TimeStamp, ExcludeList, ProcessPath, Icon, Hours, Version, Company, Enabled, MonitorOnly FROM monitorlist ORDER BY Name Asc"
|
|
||||||
Case frmFilter.eFilterType.FieldAnd, frmFilter.eFilterType.FieldOr
|
|
||||||
sSQL = "SELECT MonitorID, Name, Process, Path, AbsolutePath, FolderSave, FileType, TimeStamp, ExcludeList, ProcessPath, Icon, Hours, Version, Company, Enabled, MonitorOnly FROM monitorlist"
|
|
||||||
|
|
||||||
If hshStringFilters.Count > 0 Then
|
If bSuccess Then
|
||||||
sSQL &= " WHERE ("
|
mgrCommon.ShowMessage(mgrMonitorList_ExportComplete, oList.Count, MsgBoxStyle.Information)
|
||||||
For Each de As DictionaryEntry In hshStringFilters
|
End If
|
||||||
sSQL &= de.Key & " LIKE @" & de.Key
|
End Sub
|
||||||
hshParams.Add(de.Key, "%" & de.Value.ToString & "%")
|
|
||||||
iCounter += 1
|
|
||||||
If iCounter <> hshStringFilters.Count Then
|
|
||||||
Select Case eFilterType
|
|
||||||
Case frmFilter.eFilterType.FieldAnd
|
|
||||||
sSQL &= " AND "
|
|
||||||
Case frmFilter.eFilterType.FieldOr
|
|
||||||
sSQL &= " OR "
|
|
||||||
End Select
|
|
||||||
End If
|
|
||||||
|
|
||||||
Next
|
'Other Functions
|
||||||
sSQL &= ")"
|
Public Shared Sub HandleBackupLocationChange(ByVal oSettings As mgrSettings)
|
||||||
|
Dim oDatabase As New mgrSQLite(mgrSQLite.Database.Remote)
|
||||||
|
Dim iGameCount As Integer
|
||||||
|
|
||||||
|
'Check if a remote database already exists in the new backup location
|
||||||
|
If oDatabase.CheckDB() Then
|
||||||
|
'Make sure database is the latest version
|
||||||
|
oDatabase.DatabaseUpgrade()
|
||||||
|
|
||||||
|
'See if the remote database is empty
|
||||||
|
iGameCount = mgrMonitorList.ReadList(eListTypes.FullList, mgrSQLite.Database.Remote).Count
|
||||||
|
|
||||||
|
'If the remote database actually contains a list, then ask what to do
|
||||||
|
If iGameCount > 0 Then
|
||||||
|
If mgrCommon.ShowMessage(mgrMonitorList_ConfirmExistingData, MsgBoxStyle.YesNo) = MsgBoxResult.Yes Then
|
||||||
|
mgrMonitorList.SyncMonitorLists(oSettings.SyncFields)
|
||||||
|
Else
|
||||||
|
mgrMonitorList.SyncMonitorLists(oSettings.SyncFields, False)
|
||||||
End If
|
End If
|
||||||
sSQL &= " ORDER BY Name Asc"
|
Else
|
||||||
Case frmFilter.eFilterType.AnyTag
|
mgrMonitorList.SyncMonitorLists(oSettings.SyncFields)
|
||||||
sSQL = "SELECT DISTINCT MonitorID, Name, Process, Path, AbsolutePath, FolderSave, FileType, TimeStamp, ExcludeList, ProcessPath, Icon, Hours, Version, Company, Enabled, MonitorOnly FROM monitorlist "
|
End If
|
||||||
sSQL &= "NATURAL JOIN gametags WHERE gametags.TagID IN ("
|
|
||||||
|
|
||||||
For Each oTag As clsTag In oTagFilters
|
|
||||||
sSQL &= "@TagID" & iCounter & ","
|
|
||||||
hshParams.Add("TagID" & iCounter, oTag.ID)
|
|
||||||
iCounter += 1
|
|
||||||
Next
|
|
||||||
|
|
||||||
sSQL = sSQL.TrimEnd(",")
|
|
||||||
sSQL &= ") ORDER BY Name Asc"
|
|
||||||
Case frmFilter.eFilterType.AllTags
|
|
||||||
sSQL = "SELECT MonitorID, Name, Process, Path, AbsolutePath, FolderSave, FileType, TimeStamp, ExcludeList, ProcessPath, Icon, Hours, Version, Company, Enabled, MonitorOnly FROM monitorlist WHERE MonitorID IN "
|
|
||||||
|
|
||||||
For Each oTag As clsTag In oTagFilters
|
|
||||||
sSQL &= "(SELECT MonitorID FROM gametags WHERE monitorlist.MonitorID = gametags.MonitorID And TagID = @TagID" & iCounter & ")"
|
|
||||||
If iCounter <> oTagFilters.Count - 1 Then
|
|
||||||
sSQL &= " AND MonitorID IN "
|
|
||||||
End If
|
|
||||||
hshParams.Add("TagID" & iCounter, oTag.ID)
|
|
||||||
iCounter += 1
|
|
||||||
Next
|
|
||||||
|
|
||||||
sSQL &= " ORDER BY Name Asc"
|
|
||||||
Case frmFilter.eFilterType.NoTags
|
|
||||||
sSQL = "SELECT MonitorID, Name, Process, Path, AbsolutePath, FolderSave, FileType, TimeStamp, ExcludeList, ProcessPath, Icon, Hours, Version, Company, Enabled, MonitorOnly FROM monitorlist WHERE MonitorID NOT IN (SELECT MonitorID FROM gametags) ORDER BY Name Asc"
|
|
||||||
End Select
|
|
||||||
|
|
||||||
Return sSQL
|
|
||||||
|
|
||||||
End Function
|
|
||||||
|
|
||||||
Public Shared Function ReadFilteredList(ByVal oTagFilters As List(Of clsTag), ByVal hshStringFilters As Hashtable, eFilterType As frmFilter.eFilterType, Optional ByVal iSelectDB As mgrSQLite.Database = mgrSQLite.Database.Local) As Hashtable
|
|
||||||
Dim oDatabase As New mgrSQLite(iSelectDB)
|
|
||||||
Dim oData As DataSet
|
|
||||||
Dim sSQL As String = String.Empty
|
|
||||||
Dim hshList As New Hashtable
|
|
||||||
Dim oGame As clsGame
|
|
||||||
Dim hshParams As New Hashtable
|
|
||||||
Dim iCounter As Integer = 0
|
|
||||||
|
|
||||||
sSQL = BuildFilterQuery(oTagFilters, hshStringFilters, eFilterType, hshParams)
|
|
||||||
|
|
||||||
oData = oDatabase.ReadParamData(sSQL, hshParams)
|
|
||||||
|
|
||||||
For Each dr As DataRow In oData.Tables(0).Rows
|
|
||||||
oGame = New clsGame
|
|
||||||
oGame.ID = CStr(dr("MonitorID"))
|
|
||||||
oGame.Name = CStr(dr("Name"))
|
|
||||||
oGame.ProcessName = CStr(dr("Process"))
|
|
||||||
If Not IsDBNull(dr("Path")) Then oGame.Path = CStr(dr("Path"))
|
|
||||||
oGame.AbsolutePath = CBool(dr("AbsolutePath"))
|
|
||||||
oGame.FolderSave = CBool(dr("FolderSave"))
|
|
||||||
If Not IsDBNull(dr("FileType")) Then oGame.FileType = CStr(dr("FileType"))
|
|
||||||
oGame.AppendTimeStamp = CBool(dr("TimeStamp"))
|
|
||||||
If Not IsDBNull(dr("ExcludeList")) Then oGame.ExcludeList = CStr(dr("ExcludeList"))
|
|
||||||
If Not IsDBNull(dr("ProcessPath")) Then oGame.ProcessPath = CStr(dr("ProcessPath"))
|
|
||||||
If Not IsDBNull(dr("Icon")) Then oGame.Icon = CStr(dr("Icon"))
|
|
||||||
oGame.Hours = CDbl(dr("Hours"))
|
|
||||||
If Not IsDBNull(dr("Version")) Then oGame.Version = CStr(dr("Version"))
|
|
||||||
If Not IsDBNull(dr("Company")) Then oGame.Company = CStr(dr("Company"))
|
|
||||||
oGame.Enabled = CBool(dr("Enabled"))
|
|
||||||
oGame.MonitorOnly = CBool(dr("MonitorOnly"))
|
|
||||||
|
|
||||||
hshList.Add(oGame.ID, oGame)
|
|
||||||
Next
|
|
||||||
|
|
||||||
Return hshList
|
|
||||||
End Function
|
|
||||||
|
|
||||||
Public Shared Function ReadListForExport(ByVal oTagFilters As List(Of clsTag), ByVal hshStringFilters As Hashtable, ByVal eFilterType As frmFilter.eFilterType, Optional ByVal iSelectDB As mgrSQLite.Database = mgrSQLite.Database.Local) As List(Of Game)
|
|
||||||
Dim oDatabase As New mgrSQLite(iSelectDB)
|
|
||||||
Dim oData As DataSet
|
|
||||||
Dim sSQL As String = String.Empty
|
|
||||||
Dim sID As String
|
|
||||||
Dim oList As New List(Of Game)
|
|
||||||
Dim oGame As Game
|
|
||||||
Dim hshParams As New Hashtable
|
|
||||||
|
|
||||||
sSQL = BuildFilterQuery(oTagFilters, hshStringFilters, eFilterType, hshParams)
|
|
||||||
|
|
||||||
oData = oDatabase.ReadParamData(sSQL, hshParams)
|
|
||||||
|
|
||||||
For Each dr As DataRow In oData.Tables(0).Rows
|
|
||||||
oGame = New Game
|
|
||||||
sID = CStr(dr("MonitorID"))
|
|
||||||
oGame.Name = CStr(dr("Name"))
|
|
||||||
oGame.ProcessName = CStr(dr("Process"))
|
|
||||||
If Not IsDBNull(dr("Path")) Then oGame.Path = CStr(dr("Path"))
|
|
||||||
oGame.AbsolutePath = CBool(dr("AbsolutePath"))
|
|
||||||
oGame.FolderSave = CBool(dr("FolderSave"))
|
|
||||||
If Not IsDBNull(dr("FileType")) Then oGame.FileType = CStr(dr("FileType"))
|
|
||||||
If Not IsDBNull(dr("ExcludeList")) Then oGame.ExcludeList = CStr(dr("ExcludeList"))
|
|
||||||
oGame.Tags = mgrGameTags.GetTagsByGameForExport(sID)
|
|
||||||
oList.Add(oGame)
|
|
||||||
Next
|
|
||||||
|
|
||||||
Return oList
|
|
||||||
End Function
|
|
||||||
|
|
||||||
Public Shared Function ReadList(ByVal eListType As eListTypes, Optional ByVal iSelectDB As mgrSQLite.Database = mgrSQLite.Database.Local) As Hashtable
|
|
||||||
Dim oDatabase As New mgrSQLite(iSelectDB)
|
|
||||||
Dim oData As DataSet
|
|
||||||
Dim sSQL As String
|
|
||||||
Dim hshList As New Hashtable
|
|
||||||
Dim hshDupeList As New Hashtable
|
|
||||||
Dim oGame As clsGame
|
|
||||||
|
|
||||||
sSQL = "Select * from monitorlist ORDER BY Name Asc"
|
|
||||||
oData = oDatabase.ReadParamData(sSQL, New Hashtable)
|
|
||||||
|
|
||||||
For Each dr As DataRow In oData.Tables(0).Rows
|
|
||||||
oGame = New clsGame
|
|
||||||
oGame.ID = CStr(dr("MonitorID"))
|
|
||||||
oGame.Name = CStr(dr("Name"))
|
|
||||||
oGame.ProcessName = CStr(dr("Process"))
|
|
||||||
If Not IsDBNull(dr("Path")) Then oGame.Path = CStr(dr("Path"))
|
|
||||||
oGame.AbsolutePath = CBool(dr("AbsolutePath"))
|
|
||||||
oGame.FolderSave = CBool(dr("FolderSave"))
|
|
||||||
If Not IsDBNull(dr("FileType")) Then oGame.FileType = CStr(dr("FileType"))
|
|
||||||
oGame.AppendTimeStamp = CBool(dr("TimeStamp"))
|
|
||||||
If Not IsDBNull(dr("ExcludeList")) Then oGame.ExcludeList = CStr(dr("ExcludeList"))
|
|
||||||
If Not IsDBNull(dr("ProcessPath")) Then oGame.ProcessPath = CStr(dr("ProcessPath"))
|
|
||||||
If Not IsDBNull(dr("Icon")) Then oGame.Icon = CStr(dr("Icon"))
|
|
||||||
oGame.Hours = CDbl(dr("Hours"))
|
|
||||||
If Not IsDBNull(dr("Version")) Then oGame.Version = CStr(dr("Version"))
|
|
||||||
If Not IsDBNull(dr("Company")) Then oGame.Company = CStr(dr("Company"))
|
|
||||||
oGame.Enabled = CBool(dr("Enabled"))
|
|
||||||
oGame.MonitorOnly = CBool(dr("MonitorOnly"))
|
|
||||||
|
|
||||||
Select Case eListType
|
|
||||||
Case eListTypes.FullList
|
|
||||||
'Don't wrap this, if it fails there's a problem with the database
|
|
||||||
hshList.Add(oGame.ProcessName & ":" & oGame.Name, oGame)
|
|
||||||
Case eListTypes.ScanList
|
|
||||||
If hshList.Contains(oGame.ProcessName) Then
|
|
||||||
DirectCast(hshList.Item(oGame.ProcessName), clsGame).Duplicate = True
|
|
||||||
oGame.ProcessName = oGame.ProcessName & ":" & oGame.Name
|
|
||||||
oGame.Duplicate = True
|
|
||||||
End If
|
|
||||||
If oGame.Enabled Then hshList.Add(oGame.ProcessName, oGame)
|
|
||||||
End Select
|
|
||||||
Next
|
|
||||||
|
|
||||||
Return hshList
|
|
||||||
End Function
|
|
||||||
|
|
||||||
Public Shared Sub DoListAdd(ByVal oGame As clsGame, Optional ByVal iSelectDB As mgrSQLite.Database = mgrSQLite.Database.Local)
|
|
||||||
Dim oDatabase As New mgrSQLite(iSelectDB)
|
|
||||||
Dim sSQL As String
|
|
||||||
Dim hshParams As New Hashtable
|
|
||||||
|
|
||||||
sSQL = "INSERT INTO monitorlist VALUES (@ID, @Name, @Process, @Path, @AbsolutePath, @FolderSave, @FileType, @TimeStamp, "
|
|
||||||
sSQL &= "@ExcludeList, @ProcessPath, @Icon, @Hours, @Version, @Company, @Enabled, @MonitorOnly)"
|
|
||||||
|
|
||||||
'Parameters
|
|
||||||
hshParams.Add("ID", oGame.ID)
|
|
||||||
hshParams.Add("Name", oGame.Name)
|
|
||||||
hshParams.Add("Process", oGame.TrueProcess)
|
|
||||||
hshParams.Add("Path", oGame.TruePath)
|
|
||||||
hshParams.Add("AbsolutePath", oGame.AbsolutePath)
|
|
||||||
hshParams.Add("FolderSave", oGame.FolderSave)
|
|
||||||
hshParams.Add("FileType", oGame.FileType)
|
|
||||||
hshParams.Add("TimeStamp", oGame.AppendTimeStamp)
|
|
||||||
hshParams.Add("ExcludeList", oGame.ExcludeList)
|
|
||||||
hshParams.Add("ProcessPath", oGame.ProcessPath)
|
|
||||||
hshParams.Add("Icon", oGame.Icon)
|
|
||||||
hshParams.Add("Hours", oGame.Hours)
|
|
||||||
hshParams.Add("Version", oGame.Version)
|
|
||||||
hshParams.Add("Company", oGame.Company)
|
|
||||||
hshParams.Add("Enabled", oGame.Enabled)
|
|
||||||
hshParams.Add("MonitorOnly", oGame.MonitorOnly)
|
|
||||||
|
|
||||||
oDatabase.RunParamQuery(sSQL, hshParams)
|
|
||||||
|
|
||||||
End Sub
|
|
||||||
|
|
||||||
Public Shared Sub DoListUpdate(ByVal oGame As clsGame, Optional ByVal iSelectDB As mgrSQLite.Database = mgrSQLite.Database.Local)
|
|
||||||
Dim oDatabase As New mgrSQLite(iSelectDB)
|
|
||||||
Dim sSQL As String
|
|
||||||
Dim hshParams As New Hashtable
|
|
||||||
|
|
||||||
sSQL = "UPDATE monitorlist SET Name=@Name, Process=@Process, Path=@Path, AbsolutePath=@AbsolutePath, FolderSave=@FolderSave, "
|
|
||||||
sSQL &= "FileType=@FileType, TimeStamp=@TimeStamp, ExcludeList=@ExcludeList, ProcessPath=@ProcessPath, Icon=@Icon, "
|
|
||||||
sSQL &= "Hours=@Hours, Version=@Version, Company=@Company, Enabled=@Enabled, MonitorOnly=@MonitorOnly WHERE MonitorID=@ID"
|
|
||||||
|
|
||||||
'Parameters
|
|
||||||
hshParams.Add("Name", oGame.Name)
|
|
||||||
hshParams.Add("Process", oGame.TrueProcess)
|
|
||||||
hshParams.Add("Path", oGame.TruePath)
|
|
||||||
hshParams.Add("AbsolutePath", oGame.AbsolutePath)
|
|
||||||
hshParams.Add("FolderSave", oGame.FolderSave)
|
|
||||||
hshParams.Add("FileType", oGame.FileType)
|
|
||||||
hshParams.Add("TimeStamp", oGame.AppendTimeStamp)
|
|
||||||
hshParams.Add("ExcludeList", oGame.ExcludeList)
|
|
||||||
hshParams.Add("ProcessPath", oGame.ProcessPath)
|
|
||||||
hshParams.Add("Icon", oGame.Icon)
|
|
||||||
hshParams.Add("Hours", oGame.Hours)
|
|
||||||
hshParams.Add("Version", oGame.Version)
|
|
||||||
hshParams.Add("Company", oGame.Company)
|
|
||||||
hshParams.Add("Enabled", oGame.Enabled)
|
|
||||||
hshParams.Add("MonitorOnly", oGame.MonitorOnly)
|
|
||||||
hshParams.Add("ID", oGame.ID)
|
|
||||||
|
|
||||||
oDatabase.RunParamQuery(sSQL, hshParams)
|
|
||||||
|
|
||||||
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)
|
|
||||||
Dim oDatabase As New mgrSQLite(iSelectDB)
|
|
||||||
Dim sSQL As String
|
|
||||||
Dim hshParams As New Hashtable
|
|
||||||
Dim iCounter As Integer
|
|
||||||
|
|
||||||
sSQL = "UPDATE monitorlist SET Enabled=@Enabled, MonitorOnly=@MonitorOnly WHERE MonitorID IN ("
|
|
||||||
|
|
||||||
'Parameters
|
|
||||||
hshParams.Add("Enabled", oGame.Enabled)
|
|
||||||
hshParams.Add("MonitorOnly", oGame.MonitorOnly)
|
|
||||||
|
|
||||||
For Each s As String In sMonitorIDs
|
|
||||||
sSQL &= "@MonitorID" & iCounter & ","
|
|
||||||
hshParams.Add("MonitorID" & iCounter, s)
|
|
||||||
iCounter += 1
|
|
||||||
Next
|
|
||||||
|
|
||||||
sSQL = sSQL.TrimEnd(",")
|
|
||||||
sSQL &= ")"
|
|
||||||
|
|
||||||
oDatabase.RunParamQuery(sSQL, hshParams)
|
|
||||||
|
|
||||||
End Sub
|
|
||||||
|
|
||||||
Public Shared Sub DoListDelete(ByVal sMonitorID As String, Optional ByVal iSelectDB As mgrSQLite.Database = mgrSQLite.Database.Local)
|
|
||||||
Dim oDatabase As New mgrSQLite(iSelectDB)
|
|
||||||
Dim sSQL As String
|
|
||||||
Dim hshParams As New Hashtable
|
|
||||||
|
|
||||||
sSQL = "DELETE FROM gametags "
|
|
||||||
sSQL &= "WHERE MonitorID = @MonitorID;"
|
|
||||||
sSQL &= "DELETE FROM monitorlist "
|
|
||||||
sSQL &= "WHERE MonitorID = @MonitorID;"
|
|
||||||
|
|
||||||
hshParams.Add("MonitorID", sMonitorID)
|
|
||||||
|
|
||||||
oDatabase.RunParamQuery(sSQL, hshParams)
|
|
||||||
|
|
||||||
End Sub
|
|
||||||
|
|
||||||
Public Shared Sub DoListDeleteMulti(ByVal sMonitorIDs As List(Of String), Optional ByVal iSelectDB As mgrSQLite.Database = mgrSQLite.Database.Local)
|
|
||||||
Dim oDatabase As New mgrSQLite(iSelectDB)
|
|
||||||
Dim sSQL As String
|
|
||||||
Dim hshParams As New Hashtable
|
|
||||||
Dim iCounter As Integer
|
|
||||||
|
|
||||||
sSQL = "DELETE FROM gametags "
|
|
||||||
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 monitorlist "
|
|
||||||
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 &= ");"
|
|
||||||
|
|
||||||
oDatabase.RunParamQuery(sSQL, hshParams)
|
|
||||||
End Sub
|
|
||||||
|
|
||||||
Public Shared Function DoListGetbyID(ByVal iMonitorID As Integer, Optional ByVal iSelectDB As mgrSQLite.Database = mgrSQLite.Database.Local) As clsGame
|
|
||||||
Dim oDatabase As New mgrSQLite(iSelectDB)
|
|
||||||
Dim sSQL As String
|
|
||||||
Dim oData As DataSet
|
|
||||||
Dim oGame As New clsGame
|
|
||||||
Dim hshParams As New Hashtable
|
|
||||||
|
|
||||||
sSQL = "SELECT * from monitorlist "
|
|
||||||
sSQL &= "WHERE MonitorID = @MonitorID"
|
|
||||||
|
|
||||||
hshParams.Add("MonitorID", iMonitorID)
|
|
||||||
|
|
||||||
oData = oDatabase.ReadParamData(sSQL, hshParams)
|
|
||||||
|
|
||||||
For Each dr As DataRow In oData.Tables(0).Rows
|
|
||||||
oGame = New clsGame
|
|
||||||
oGame.ID = CStr(dr("MonitorID"))
|
|
||||||
oGame.Name = CStr(dr("Name"))
|
|
||||||
oGame.ProcessName = CStr(dr("Process"))
|
|
||||||
If Not IsDBNull(dr("Path")) Then oGame.Path = CStr(dr("Path"))
|
|
||||||
oGame.AbsolutePath = CBool(dr("AbsolutePath"))
|
|
||||||
oGame.FolderSave = CBool(dr("FolderSave"))
|
|
||||||
If Not IsDBNull(dr("FileType")) Then oGame.FileType = CStr(dr("FileType"))
|
|
||||||
oGame.AppendTimeStamp = CBool(dr("TimeStamp"))
|
|
||||||
If Not IsDBNull(dr("ExcludeList")) Then oGame.ExcludeList = CStr(dr("ExcludeList"))
|
|
||||||
If Not IsDBNull(dr("ProcessPath")) Then oGame.ProcessPath = CStr(dr("ProcessPath"))
|
|
||||||
If Not IsDBNull(dr("Icon")) Then oGame.Icon = CStr(dr("Icon"))
|
|
||||||
oGame.Hours = CDbl(dr("Hours"))
|
|
||||||
If Not IsDBNull(dr("Version")) Then oGame.Version = CStr(dr("Version"))
|
|
||||||
If Not IsDBNull(dr("Company")) Then oGame.Company = CStr(dr("Company"))
|
|
||||||
oGame.Enabled = CBool(dr("Enabled"))
|
|
||||||
oGame.MonitorOnly = CBool(dr("MonitorOnly"))
|
|
||||||
Next
|
|
||||||
|
|
||||||
Return oGame
|
|
||||||
End Function
|
|
||||||
|
|
||||||
Public Shared Function DoListGetbyName(ByVal sName As String, Optional ByVal iSelectDB As mgrSQLite.Database = mgrSQLite.Database.Local) As Hashtable
|
|
||||||
Dim oDatabase As New mgrSQLite(iSelectDB)
|
|
||||||
Dim sSQL As String
|
|
||||||
Dim oData As DataSet
|
|
||||||
Dim oGame As New clsGame
|
|
||||||
Dim hshGames As New Hashtable
|
|
||||||
Dim hshParams As New Hashtable
|
|
||||||
Dim iCounter As Integer = 0
|
|
||||||
|
|
||||||
sSQL = "SELECT * from monitorlist "
|
|
||||||
sSQL &= "WHERE Name = @Name"
|
|
||||||
|
|
||||||
hshParams.Add("Name", sName)
|
|
||||||
|
|
||||||
oData = oDatabase.ReadParamData(sSQL, hshParams)
|
|
||||||
|
|
||||||
For Each dr As DataRow In oData.Tables(0).Rows
|
|
||||||
oGame = New clsGame
|
|
||||||
oGame.ID = CStr(dr("MonitorID"))
|
|
||||||
oGame.Name = CStr(dr("Name"))
|
|
||||||
oGame.ProcessName = CStr(dr("Process"))
|
|
||||||
If Not IsDBNull(dr("Path")) Then oGame.Path = CStr(dr("Path"))
|
|
||||||
oGame.AbsolutePath = CBool(dr("AbsolutePath"))
|
|
||||||
oGame.FolderSave = CBool(dr("FolderSave"))
|
|
||||||
If Not IsDBNull(dr("FileType")) Then oGame.FileType = CStr(dr("FileType"))
|
|
||||||
oGame.AppendTimeStamp = CBool(dr("TimeStamp"))
|
|
||||||
If Not IsDBNull(dr("ExcludeList")) Then oGame.ExcludeList = CStr(dr("ExcludeList"))
|
|
||||||
If Not IsDBNull(dr("ProcessPath")) Then oGame.ProcessPath = CStr(dr("ProcessPath"))
|
|
||||||
If Not IsDBNull(dr("Icon")) Then oGame.Icon = CStr(dr("Icon"))
|
|
||||||
oGame.Hours = CDbl(dr("Hours"))
|
|
||||||
If Not IsDBNull(dr("Version")) Then oGame.Version = CStr(dr("Version"))
|
|
||||||
If Not IsDBNull(dr("Company")) Then oGame.Company = CStr(dr("Company"))
|
|
||||||
oGame.Enabled = CBool(dr("Enabled"))
|
|
||||||
oGame.MonitorOnly = CBool(dr("MonitorOnly"))
|
|
||||||
hshGames.Add(iCounter, oGame)
|
|
||||||
iCounter += 1
|
|
||||||
Next
|
|
||||||
|
|
||||||
Return hshGames
|
|
||||||
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
|
|
||||||
Dim oDatabase As New mgrSQLite(iSelectDB)
|
|
||||||
Dim sSQL As String
|
|
||||||
Dim oData As DataSet
|
|
||||||
Dim hshParams As New Hashtable
|
|
||||||
|
|
||||||
sSQL = "SELECT * FROM monitorlist WHERE Name = @Name AND Process= @Process"
|
|
||||||
|
|
||||||
hshParams.Add("Name", sName)
|
|
||||||
hshParams.Add("Process", sProcess)
|
|
||||||
|
|
||||||
If sExcludeID <> String.Empty Then
|
|
||||||
sSQL &= " AND MonitorID <> @MonitorID"
|
|
||||||
hshParams.Add("MonitorID", sExcludeID)
|
|
||||||
End If
|
|
||||||
|
|
||||||
oData = oDatabase.ReadParamData(sSQL, hshParams)
|
|
||||||
|
|
||||||
If oData.Tables(0).Rows.Count > 0 Then
|
|
||||||
Return True
|
|
||||||
Else
|
Else
|
||||||
Return False
|
mgrMonitorList.SyncMonitorLists(oSettings.SyncFields)
|
||||||
End If
|
End If
|
||||||
End Function
|
End Sub
|
||||||
|
|
||||||
End Class
|
End Class
|
||||||
|
|||||||
@@ -283,10 +283,10 @@ Public Class mgrPath
|
|||||||
|
|
||||||
hshFolders.Add(Guid.NewGuid.ToString, Environment.GetFolderPath(Environment.SpecialFolder.ApplicationData))
|
hshFolders.Add(Guid.NewGuid.ToString, Environment.GetFolderPath(Environment.SpecialFolder.ApplicationData))
|
||||||
hshFolders.Add(Guid.NewGuid.ToString, Environment.GetFolderPath(Environment.SpecialFolder.LocalApplicationData))
|
hshFolders.Add(Guid.NewGuid.ToString, Environment.GetFolderPath(Environment.SpecialFolder.LocalApplicationData))
|
||||||
|
hshFolders.Add(Guid.NewGuid.ToString, Environment.GetFolderPath(Environment.SpecialFolder.MyDocuments))
|
||||||
|
|
||||||
'Don't use these in Unix
|
'Don't use these in Unix
|
||||||
If Not mgrCommon.IsUnix Then
|
If Not mgrCommon.IsUnix Then
|
||||||
hshFolders.Add(Guid.NewGuid.ToString, Environment.GetFolderPath(Environment.SpecialFolder.MyDocuments))
|
|
||||||
hshFolders.Add(Guid.NewGuid.ToString, Environment.GetFolderPath(Environment.SpecialFolder.CommonDocuments))
|
hshFolders.Add(Guid.NewGuid.ToString, Environment.GetFolderPath(Environment.SpecialFolder.CommonDocuments))
|
||||||
hshFolders.Add(Guid.NewGuid.ToString, Environment.GetFolderPath(Environment.SpecialFolder.UserProfile))
|
hshFolders.Add(Guid.NewGuid.ToString, Environment.GetFolderPath(Environment.SpecialFolder.UserProfile))
|
||||||
End If
|
End If
|
||||||
|
|||||||
@@ -130,9 +130,9 @@ Public Class mgrProcesses
|
|||||||
|
|
||||||
'Unix Handler
|
'Unix Handler
|
||||||
'We need some special handling for Wine processes
|
'We need some special handling for Wine processes
|
||||||
If mgrCommon.IsUnix And sProcessCheck.ToLower = "wine-preloader" Then
|
If mgrCommon.IsUnix And (sProcessCheck.ToLower = "wine-preloader" Or sProcessCheck.ToLower = "wine64-preloader") Then
|
||||||
Dim sWinePath As String()
|
Dim sWinePath As String()
|
||||||
'We can't use Path.GetFileName here, Wine uses the Windows seperator in arguments and the Unix version of the function expects a different one.
|
'We can't use Path.GetFileName here, Wine uses the Windows seperator in arguments and Mono expects a different one in Unix.
|
||||||
sWinePath = GetUnixProcessArguments(prsCurrent)(0).Split("\")
|
sWinePath = GetUnixProcessArguments(prsCurrent)(0).Split("\")
|
||||||
sProcessCheck = sWinePath(sWinePath.Length - 1).Replace(".exe", "")
|
sProcessCheck = sWinePath(sWinePath.Length - 1).Replace(".exe", "")
|
||||||
bWineProcess = True
|
bWineProcess = True
|
||||||
|
|||||||
+28
-34
@@ -80,8 +80,8 @@ Public Class mgrRestore
|
|||||||
Dim bLocal As Boolean = False
|
Dim bLocal As Boolean = False
|
||||||
Dim bRemote As Boolean = False
|
Dim bRemote As Boolean = False
|
||||||
|
|
||||||
slLocalManifest = mgrManifest.ReadManifest(mgrSQLite.Database.Local)
|
slLocalManifest = mgrManifest.ReadLatestManifest(mgrSQLite.Database.Local)
|
||||||
slRemoteManifest = mgrManifest.ReadManifest(mgrSQLite.Database.Remote)
|
slRemoteManifest = mgrManifest.ReadLatestManifest(mgrSQLite.Database.Remote)
|
||||||
|
|
||||||
If slLocalManifest.Contains(sAppName) Then
|
If slLocalManifest.Contains(sAppName) Then
|
||||||
oLocalItem = DirectCast(slLocalManifest(sAppName), clsBackup)
|
oLocalItem = DirectCast(slLocalManifest(sAppName), clsBackup)
|
||||||
@@ -96,8 +96,6 @@ Public Class mgrRestore
|
|||||||
If bLocal And bRemote Then
|
If bLocal And bRemote Then
|
||||||
'Compare
|
'Compare
|
||||||
If oRemoteItem.DateUpdated > oLocalItem.DateUpdated Then
|
If oRemoteItem.DateUpdated > oLocalItem.DateUpdated Then
|
||||||
oRemoteItem.LastDateUpdated = oLocalItem.DateUpdated
|
|
||||||
oRemoteItem.LastUpdatedBy = oLocalItem.UpdatedBy
|
|
||||||
Return True
|
Return True
|
||||||
End If
|
End If
|
||||||
End If
|
End If
|
||||||
@@ -117,26 +115,18 @@ Public Class mgrRestore
|
|||||||
Dim bLocal As Boolean = False
|
Dim bLocal As Boolean = False
|
||||||
Dim bRemote As Boolean = False
|
Dim bRemote As Boolean = False
|
||||||
|
|
||||||
slLocalManifest = mgrManifest.ReadManifest(mgrSQLite.Database.Local)
|
slLocalManifest = mgrManifest.ReadLatestManifest(mgrSQLite.Database.Local)
|
||||||
slRemoteManifest = mgrManifest.ReadManifest(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.Name) Then
|
||||||
oLocalItem = DirectCast(slLocalManifest(oItem.Name), clsBackup)
|
oLocalItem = DirectCast(slLocalManifest(oItem.Name), clsBackup)
|
||||||
|
|
||||||
If oItem.DateUpdated > oLocalItem.DateUpdated Then
|
If oItem.DateUpdated > oLocalItem.DateUpdated Then
|
||||||
oLocalItem.FileName = oItem.FileName
|
slRestoreItems.Add(oItem.Name, oItem)
|
||||||
oLocalItem.LastDateUpdated = oItem.DateUpdated
|
|
||||||
oLocalItem.LastUpdatedBy = oItem.UpdatedBy
|
|
||||||
slRestoreItems.Add(oLocalItem.Name, oLocalItem)
|
|
||||||
End If
|
End If
|
||||||
Else
|
Else
|
||||||
oLocalItem = oItem
|
slRestoreItems.Add(oItem.Name, oItem)
|
||||||
oLocalItem.LastDateUpdated = oItem.DateUpdated
|
|
||||||
oLocalItem.LastUpdatedBy = oItem.UpdatedBy
|
|
||||||
oLocalItem.DateUpdated = Nothing
|
|
||||||
oLocalItem.UpdatedBy = Nothing
|
|
||||||
slRestoreItems.Add(oLocalItem.Name, oLocalItem)
|
|
||||||
End If
|
End If
|
||||||
Next
|
Next
|
||||||
|
|
||||||
@@ -148,20 +138,20 @@ Public Class mgrRestore
|
|||||||
Dim slRemoteManifest As SortedList
|
Dim slRemoteManifest As SortedList
|
||||||
Dim slRemovedItems As New SortedList
|
Dim slRemovedItems As New SortedList
|
||||||
|
|
||||||
slLocalManifest = mgrManifest.ReadManifest(mgrSQLite.Database.Local)
|
slLocalManifest = mgrManifest.ReadLatestManifest(mgrSQLite.Database.Local)
|
||||||
slRemoteManifest = mgrManifest.ReadManifest(mgrSQLite.Database.Remote)
|
slRemoteManifest = mgrManifest.ReadLatestManifest(mgrSQLite.Database.Remote)
|
||||||
|
|
||||||
For Each oItem As clsBackup In slLocalManifest.Values
|
For Each oItem As clsBackup In slLocalManifest.Values
|
||||||
If Not slRemoteManifest.Contains(oItem.Name) Then
|
If Not slRemoteManifest.Contains(oItem.Name) Then
|
||||||
slRemovedItems.Add(oItem.Name, oItem)
|
slRemovedItems.Add(oItem.Name, oItem)
|
||||||
mgrManifest.DoManifestDelete(oItem, mgrSQLite.Database.Local)
|
mgrManifest.DoManifestDeletebyName(oItem, mgrSQLite.Database.Local)
|
||||||
End If
|
End If
|
||||||
Next
|
Next
|
||||||
|
|
||||||
Return slRemovedItems
|
Return slRemovedItems
|
||||||
End Function
|
End Function
|
||||||
|
|
||||||
Public Function CheckRestorePrereq(ByVal oBackupInfo As clsBackup) 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
|
||||||
Dim sBackupFile As String = oSettings.BackupFolder & Path.DirectorySeparatorChar & oBackupInfo.FileName
|
Dim sBackupFile As String = oSettings.BackupFolder & Path.DirectorySeparatorChar & oBackupInfo.FileName
|
||||||
@@ -185,26 +175,30 @@ Public Class mgrRestore
|
|||||||
RaiseEvent UpdateLog(mgrCommon.FormatString(mgrRestore_ErrorNoPath, sExtractPath), False, ToolTipIcon.Error, True)
|
RaiseEvent UpdateLog(mgrCommon.FormatString(mgrRestore_ErrorNoPath, sExtractPath), False, ToolTipIcon.Error, True)
|
||||||
Return False
|
Return False
|
||||||
End If
|
End If
|
||||||
|
Else
|
||||||
|
If bCleanFolder Then
|
||||||
|
mgrCommon.DeleteDirectory(sExtractPath, True)
|
||||||
|
Directory.CreateDirectory(sExtractPath)
|
||||||
|
End If
|
||||||
End If
|
End If
|
||||||
|
|
||||||
'Check file integrity
|
'Check file integrity
|
||||||
If oSettings.CheckSum Then
|
If oBackupInfo.CheckSum <> String.Empty Then
|
||||||
If oBackupInfo.CheckSum <> String.Empty Then
|
sHash = mgrHash.Generate_SHA256_Hash(sBackupFile)
|
||||||
sHash = mgrHash.Generate_SHA256_Hash(sBackupFile)
|
If sHash <> oBackupInfo.CheckSum Then
|
||||||
If sHash <> oBackupInfo.CheckSum Then
|
RaiseEvent UpdateLog(mgrCommon.FormatString(mgrRestore_ErrorFailedCheck, oBackupInfo.Name), False, ToolTipIcon.Info, True)
|
||||||
RaiseEvent UpdateLog(mgrCommon.FormatString(mgrRestore_ErrorFailedCheck, oBackupInfo.Name), False, ToolTipIcon.Info, True)
|
If mgrCommon.ShowMessage(mgrRestore_ConfirmFailedCheck, oBackupInfo.Name, MsgBoxStyle.YesNo) = MsgBoxResult.No Then
|
||||||
If mgrCommon.ShowMessage(mgrRestore_ConfirmFailedCheck, oBackupInfo.Name, MsgBoxStyle.YesNo) = MsgBoxResult.No Then
|
RaiseEvent UpdateLog(mgrRestore_ErrorCheckAbort, False, ToolTipIcon.Info, True)
|
||||||
RaiseEvent UpdateLog(mgrRestore_ErrorCheckAbort, False, ToolTipIcon.Info, True)
|
Return False
|
||||||
Return False
|
|
||||||
End If
|
|
||||||
Else
|
|
||||||
RaiseEvent UpdateLog(mgrCommon.FormatString(mgrRestore_Verified, oBackupInfo.Name), False, ToolTipIcon.Info, True)
|
|
||||||
End If
|
End If
|
||||||
Else
|
Else
|
||||||
RaiseEvent UpdateLog(mgrCommon.FormatString(mgrRestore_NoVerify, oBackupInfo.Name), False, ToolTipIcon.Info, True)
|
RaiseEvent UpdateLog(mgrCommon.FormatString(mgrRestore_Verified, oBackupInfo.Name), False, ToolTipIcon.Info, True)
|
||||||
End If
|
End If
|
||||||
|
Else
|
||||||
|
RaiseEvent UpdateLog(mgrCommon.FormatString(mgrRestore_NoVerify, oBackupInfo.Name), False, ToolTipIcon.Info, True)
|
||||||
End If
|
End If
|
||||||
|
|
||||||
|
|
||||||
Return True
|
Return True
|
||||||
End Function
|
End Function
|
||||||
|
|
||||||
@@ -268,8 +262,8 @@ Public Class mgrRestore
|
|||||||
|
|
||||||
If bRestoreCompleted Then
|
If bRestoreCompleted Then
|
||||||
'Save Local Manifest
|
'Save Local Manifest
|
||||||
If mgrManifest.DoManifestCheck(oBackupInfo.Name, mgrSQLite.Database.Local) Then
|
If mgrManifest.DoGlobalManifestCheck(oBackupInfo.Name, mgrSQLite.Database.Local) Then
|
||||||
mgrManifest.DoManifestUpdate(oBackupInfo, mgrSQLite.Database.Local)
|
mgrManifest.DoManifestUpdateByName(oBackupInfo, mgrSQLite.Database.Local)
|
||||||
Else
|
Else
|
||||||
mgrManifest.DoManifestAdd(oBackupInfo, mgrSQLite.Database.Local)
|
mgrManifest.DoManifestAdd(oBackupInfo, mgrSQLite.Database.Local)
|
||||||
End If
|
End If
|
||||||
|
|||||||
+101
-18
@@ -72,15 +72,15 @@ 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, CheckSum BOOLEAN NOT NULL, StartWithWindows BOOLEAN NOT NULL, TimeTracking BOOLEAN NOT NULL, " &
|
"BackupFolder TEXT NOT NULL, Sync BOOLEAN 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);"
|
"Custom7zLocation TEXT, SyncFields INTEGER NOT NULL, AutoSaveLog BOOLEAN NOT NULL, AutoRestore BOOLEAN NOT NULL, AutoMark BOOLEAN 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 UNIQUE, 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, " &
|
||||||
"PRIMARY KEY(Name, Process));"
|
"BackupLimit INTEGER NOT NULL, CleanFolder BOOLEAN NOT NULL, PRIMARY KEY(Name, Process));"
|
||||||
|
|
||||||
'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); "
|
||||||
@@ -92,7 +92,7 @@ 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 UNIQUE, Name TEXT NOT NULL PRIMARY KEY, FileName TEXT NOT NULL, RestorePath TEXT NOT NULL, " &
|
sSql &= "CREATE TABLE manifest (ManifestID TEXT NOT NULL PRIMARY KEY, Name TEXT NOT NULL, FileName TEXT NOT NULL, RestorePath TEXT NOT NULL, " &
|
||||||
"AbsolutePath BOOLEAN NOT NULL, DateUpdated TEXT NOT NULL, UpdatedBy TEXT NOT NULL, CheckSum TEXT);"
|
"AbsolutePath BOOLEAN NOT NULL, DateUpdated TEXT NOT NULL, UpdatedBy TEXT NOT NULL, CheckSum TEXT);"
|
||||||
|
|
||||||
'Set Version
|
'Set Version
|
||||||
@@ -111,16 +111,16 @@ Public Class mgrSQLite
|
|||||||
|
|
||||||
Try
|
Try
|
||||||
'Create the DB
|
'Create the DB
|
||||||
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 UNIQUE, 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, " &
|
||||||
"PRIMARY KEY(Name, Process));"
|
"BackupLimit INTEGER NOT NULL, CleanFolder BOOLEAN NOT NULL, PRIMARY KEY(Name, Process));"
|
||||||
|
|
||||||
'Add Tables (Remote Manifest)
|
'Add Tables (Remote Manifest)
|
||||||
sSql &= "CREATE TABLE manifest (ManifestID TEXT NOT NULL UNIQUE, Name TEXT NOT NULL PRIMARY KEY, FileName TEXT NOT NULL, RestorePath TEXT NOT NULL, " &
|
sSql &= "CREATE TABLE manifest (ManifestID TEXT NOT NULL PRIMARY KEY, Name TEXT NOT NULL, FileName TEXT NOT NULL, RestorePath TEXT NOT NULL, " &
|
||||||
"AbsolutePath BOOLEAN NOT NULL, DateUpdated TEXT NOT NULL, UpdatedBy TEXT NOT NULL, CheckSum TEXT);"
|
"AbsolutePath BOOLEAN NOT NULL, DateUpdated TEXT NOT NULL, UpdatedBy TEXT NOT NULL, CheckSum TEXT);"
|
||||||
|
|
||||||
'Add Tables (Remote Tags)
|
'Add Tables (Remote Tags)
|
||||||
@@ -155,7 +155,7 @@ Public Class mgrSQLite
|
|||||||
|
|
||||||
Public Sub Connect()
|
Public Sub Connect()
|
||||||
If CheckDB() Then
|
If CheckDB() Then
|
||||||
db = New SQLiteConnection(sConnectString)
|
db = New SqliteConnection(sConnectString)
|
||||||
db.Open()
|
db.Open()
|
||||||
Else
|
Else
|
||||||
CreateDB()
|
CreateDB()
|
||||||
@@ -167,18 +167,18 @@ Public Class mgrSQLite
|
|||||||
db.Close()
|
db.Close()
|
||||||
End Sub
|
End Sub
|
||||||
|
|
||||||
Private Sub BuildParams(ByRef command As SQLiteCommand, ByRef hshParams As Hashtable)
|
Private Sub BuildParams(ByRef command As SqliteCommand, ByRef hshParams As Hashtable)
|
||||||
For Each de As DictionaryEntry In hshParams
|
For Each de As DictionaryEntry In hshParams
|
||||||
command.Parameters.AddWithValue(de.Key, de.Value)
|
command.Parameters.AddWithValue(de.Key, de.Value)
|
||||||
Next
|
Next
|
||||||
End Sub
|
End Sub
|
||||||
|
|
||||||
Public Function RunParamQuery(ByVal sSQL As String, ByVal hshParams As Hashtable) As Boolean
|
Public Function RunParamQuery(ByVal sSQL As String, ByVal hshParams As Hashtable) As Boolean
|
||||||
Dim trans As SQLiteTransaction
|
Dim trans As SqliteTransaction
|
||||||
Dim command As SQLiteCommand
|
Dim command As SqliteCommand
|
||||||
|
|
||||||
Connect()
|
Connect()
|
||||||
command = New SQLiteCommand(sSQL, db)
|
command = New SqliteCommand(sSQL, db)
|
||||||
BuildParams(command, hshParams)
|
BuildParams(command, hshParams)
|
||||||
trans = db.BeginTransaction()
|
trans = db.BeginTransaction()
|
||||||
|
|
||||||
@@ -198,11 +198,11 @@ Public Class mgrSQLite
|
|||||||
End Function
|
End Function
|
||||||
|
|
||||||
Public Function RunMassParamQuery(ByVal sSQL As String, ByVal oParamList As List(Of Hashtable)) As Boolean
|
Public Function RunMassParamQuery(ByVal sSQL As String, ByVal oParamList As List(Of Hashtable)) As Boolean
|
||||||
Dim trans As SQLiteTransaction
|
Dim trans As SqliteTransaction
|
||||||
Dim command As SQLiteCommand
|
Dim command As SqliteCommand
|
||||||
|
|
||||||
Connect()
|
Connect()
|
||||||
command = New SQLiteCommand(sSQL, db)
|
command = New SqliteCommand(sSQL, db)
|
||||||
trans = db.BeginTransaction()
|
trans = db.BeginTransaction()
|
||||||
|
|
||||||
Try
|
Try
|
||||||
@@ -224,12 +224,12 @@ Public Class mgrSQLite
|
|||||||
End Function
|
End Function
|
||||||
|
|
||||||
Public Function ReadParamData(ByVal sSQL As String, ByVal hshParams As Hashtable) As DataSet
|
Public Function ReadParamData(ByVal sSQL As String, ByVal hshParams As Hashtable) As DataSet
|
||||||
Dim adapter As SQLiteDataAdapter
|
Dim adapter As SqliteDataAdapter
|
||||||
Dim command As SQLiteCommand
|
Dim command As SqliteCommand
|
||||||
Dim oData As New DataSet
|
Dim oData As New DataSet
|
||||||
|
|
||||||
Connect()
|
Connect()
|
||||||
command = New SQLiteCommand(sSQL, db)
|
command = New SqliteCommand(sSQL, db)
|
||||||
BuildParams(command, hshParams)
|
BuildParams(command, hshParams)
|
||||||
|
|
||||||
Try
|
Try
|
||||||
@@ -556,6 +556,89 @@ Public Class mgrSQLite
|
|||||||
End If
|
End If
|
||||||
End If
|
End If
|
||||||
|
|
||||||
|
'0.98 Upgrade
|
||||||
|
If GetDatabaseVersion() < 98 Then
|
||||||
|
If eDatabase = Database.Local Then
|
||||||
|
'Backup DB before starting
|
||||||
|
BackupDB("v97")
|
||||||
|
|
||||||
|
'Overhaul Manifest Table
|
||||||
|
sSQL = "CREATE TABLE manifest_new (ManifestID TEXT NOT NULL PRIMARY KEY, Name TEXT NOT NULL, FileName TEXT NOT NULL, RestorePath TEXT NOT NULL, AbsolutePath BOOLEAN NOT NULL, DateUpdated TEXT NOT NULL, UpdatedBy TEXT NOT NULL, CheckSum TEXT);"
|
||||||
|
sSQL &= "INSERT INTO manifest_new (ManifestID, Name, FileName, RestorePath, AbsolutePath, DateUpdated, UpdatedBy) "
|
||||||
|
sSQL &= "SELECT ManifestID, Name, FileName, RestorePath, AbsolutePath, DateUpdated, UpdatedBy FROM manifest;"
|
||||||
|
sSQL &= "DROP TABLE manifest; ALTER TABLE manifest_new RENAME TO manifest;"
|
||||||
|
|
||||||
|
'Add backup limit field
|
||||||
|
sSQL &= "ALTER TABLE monitorlist ADD COLUMN BackupLimit INTEGER NOT NULL DEFAULT 5;"
|
||||||
|
|
||||||
|
sSQL &= "PRAGMA user_version=98"
|
||||||
|
|
||||||
|
RunParamQuery(sSQL, New Hashtable)
|
||||||
|
|
||||||
|
'Run a compact
|
||||||
|
CompactDatabase()
|
||||||
|
End If
|
||||||
|
If eDatabase = Database.Remote Then
|
||||||
|
'Backup DB before starting
|
||||||
|
BackupDB("v97")
|
||||||
|
|
||||||
|
'Overhaul Manifest Table
|
||||||
|
sSQL = "CREATE TABLE manifest_new (ManifestID TEXT NOT NULL PRIMARY KEY, Name TEXT NOT NULL, FileName TEXT NOT NULL, RestorePath TEXT NOT NULL, AbsolutePath BOOLEAN NOT NULL, DateUpdated TEXT NOT NULL, UpdatedBy TEXT NOT NULL, CheckSum TEXT);"
|
||||||
|
sSQL &= "INSERT INTO manifest_new (ManifestID, Name, FileName, RestorePath, AbsolutePath, DateUpdated, UpdatedBy) "
|
||||||
|
sSQL &= "SELECT ManifestID, Name, FileName, RestorePath, AbsolutePath, DateUpdated, UpdatedBy FROM manifest;"
|
||||||
|
sSQL &= "DROP TABLE manifest; ALTER TABLE manifest_new RENAME TO manifest;"
|
||||||
|
|
||||||
|
'Add backup limit field
|
||||||
|
sSQL &= "ALTER TABLE monitorlist ADD COLUMN BackupLimit INTEGER NOT NULL DEFAULT 5;"
|
||||||
|
|
||||||
|
sSQL &= "PRAGMA user_version=98"
|
||||||
|
|
||||||
|
RunParamQuery(sSQL, New Hashtable)
|
||||||
|
|
||||||
|
'Run a compact
|
||||||
|
CompactDatabase()
|
||||||
|
End If
|
||||||
|
End If
|
||||||
|
|
||||||
|
'1.01 Upgrade
|
||||||
|
If GetDatabaseVersion() < 101 Then
|
||||||
|
If eDatabase = Database.Local Then
|
||||||
|
'Backup DB before starting
|
||||||
|
BackupDB("v98")
|
||||||
|
|
||||||
|
'Remove checksum field
|
||||||
|
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, Sync BOOLEAN 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);"
|
||||||
|
sSQL &= "INSERT INTO settings_new (SettingsID, MonitorOnStartup, StartToTray, ShowDetectionToolTips, DisableConfirmation, CreateSubFolder, " &
|
||||||
|
"ShowOverwriteWarning, RestoreOnLaunch, BackupFolder, Sync, StartWithWindows, TimeTracking, SupressBackup, SupressBackupThreshold, " &
|
||||||
|
"CompressionLevel, Custom7zArguments, Custom7zLocation, SyncFields, AutoSaveLog) " &
|
||||||
|
"SELECT SettingsID, MonitorOnStartup, StartToTray, ShowDetectionToolTips, DisableConfirmation, CreateSubFolder, " &
|
||||||
|
"ShowOverwriteWarning, RestoreOnLaunch, BackupFolder, Sync, StartWithWindows, TimeTracking, SupressBackup, SupressBackupThreshold, " &
|
||||||
|
"CompressionLevel, Custom7zArguments, Custom7zLocation, SyncFields, AutoSaveLog FROM settings;" &
|
||||||
|
"DROP TABLE settings; ALTER TABLE settings_new RENAME TO settings;"
|
||||||
|
'Add new field(s)
|
||||||
|
sSQL &= "ALTER TABLE monitorlist ADD COLUMN CleanFolder BOOLEAN NOT NULL DEFAULT 0;"
|
||||||
|
sSQL &= "ALTER TABLE settings ADD COLUMN AutoRestore BOOLEAN NOT NULL DEFAULT 0;"
|
||||||
|
sSQL &= "ALTER TABLE settings ADD COLUMN AutoMark BOOLEAN NOT NULL DEFAULT 0;"
|
||||||
|
sSQL &= "PRAGMA user_version=101"
|
||||||
|
|
||||||
|
RunParamQuery(sSQL, New Hashtable)
|
||||||
|
End If
|
||||||
|
If eDatabase = Database.Remote Then
|
||||||
|
'Backup DB before starting
|
||||||
|
BackupDB("v98")
|
||||||
|
|
||||||
|
'Add new field(s)
|
||||||
|
sSQL = "ALTER TABLE monitorlist ADD COLUMN CleanFolder BOOLEAN NOT NULL DEFAULT 0;"
|
||||||
|
sSQL &= "PRAGMA user_version=101"
|
||||||
|
|
||||||
|
RunParamQuery(sSQL, New Hashtable)
|
||||||
|
End If
|
||||||
|
End If
|
||||||
|
|
||||||
End Sub
|
End Sub
|
||||||
|
|
||||||
Public Function GetDBSize() As Long
|
Public Function GetDBSize() As Long
|
||||||
|
|||||||
+26
-14
@@ -9,8 +9,9 @@ Public Class mgrSettings
|
|||||||
Private bCreateSubFolder As Boolean = False
|
Private bCreateSubFolder As Boolean = False
|
||||||
Private bShowOverwriteWarning As Boolean = True
|
Private bShowOverwriteWarning As Boolean = True
|
||||||
Private bRestoreOnLaunch As Boolean = False
|
Private bRestoreOnLaunch As Boolean = False
|
||||||
|
Private bAutoRestore As Boolean = False
|
||||||
|
Private bAutoMark As Boolean = False
|
||||||
Private bSync As Boolean = True
|
Private bSync As Boolean = True
|
||||||
Private bCheckSum As Boolean = True
|
|
||||||
Private bTimeTracking As Boolean = True
|
Private bTimeTracking As Boolean = True
|
||||||
Private bSupressBackup As Boolean = False
|
Private bSupressBackup As Boolean = False
|
||||||
Private iSupressBackupThreshold As Integer = 10
|
Private iSupressBackupThreshold As Integer = 10
|
||||||
@@ -93,6 +94,24 @@ Public Class mgrSettings
|
|||||||
End Set
|
End Set
|
||||||
End Property
|
End Property
|
||||||
|
|
||||||
|
Property AutoRestore As Boolean
|
||||||
|
Get
|
||||||
|
Return bAutoRestore
|
||||||
|
End Get
|
||||||
|
Set(value As Boolean)
|
||||||
|
bAutoRestore = value
|
||||||
|
End Set
|
||||||
|
End Property
|
||||||
|
|
||||||
|
Property AutoMark As Boolean
|
||||||
|
Get
|
||||||
|
Return bAutoMark
|
||||||
|
End Get
|
||||||
|
Set(value As Boolean)
|
||||||
|
bAutoMark = value
|
||||||
|
End Set
|
||||||
|
End Property
|
||||||
|
|
||||||
Property Sync As Boolean
|
Property Sync As Boolean
|
||||||
Get
|
Get
|
||||||
Return bSync
|
Return bSync
|
||||||
@@ -102,15 +121,6 @@ Public Class mgrSettings
|
|||||||
End Set
|
End Set
|
||||||
End Property
|
End Property
|
||||||
|
|
||||||
Property CheckSum As Boolean
|
|
||||||
Get
|
|
||||||
Return bCheckSum
|
|
||||||
End Get
|
|
||||||
Set(value As Boolean)
|
|
||||||
bCheckSum = value
|
|
||||||
End Set
|
|
||||||
End Property
|
|
||||||
|
|
||||||
Property TimeTracking As Boolean
|
Property TimeTracking As Boolean
|
||||||
Get
|
Get
|
||||||
Return bTimeTracking
|
Return bTimeTracking
|
||||||
@@ -249,9 +259,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, @CheckSum, @StartWithWindows, "
|
sSQL &= "@CreateSubFolder, @ShowOverwriteWarning, @RestoreOnLaunch, @BackupFolder, @Sync, @StartWithWindows, "
|
||||||
sSQL &= "@TimeTracking, @SupressBackup, @SupressBackupThreshold, @CompressionLevel, @Custom7zArguments, @Custom7zLocation, "
|
sSQL &= "@TimeTracking, @SupressBackup, @SupressBackupThreshold, @CompressionLevel, @Custom7zArguments, @Custom7zLocation, "
|
||||||
sSQL &= "@SyncFields,@AutoSaveLog)"
|
sSQL &= "@SyncFields, @AutoSaveLog, @AutoRestore, @AutoMark)"
|
||||||
|
|
||||||
hshParams.Add("MonitorOnStartup", MonitorOnStartup)
|
hshParams.Add("MonitorOnStartup", MonitorOnStartup)
|
||||||
hshParams.Add("StartToTray", StartToTray)
|
hshParams.Add("StartToTray", StartToTray)
|
||||||
@@ -262,7 +272,6 @@ Public Class mgrSettings
|
|||||||
hshParams.Add("RestoreOnLaunch", RestoreOnLaunch)
|
hshParams.Add("RestoreOnLaunch", RestoreOnLaunch)
|
||||||
hshParams.Add("BackupFolder", BackupFolder)
|
hshParams.Add("BackupFolder", BackupFolder)
|
||||||
hshParams.Add("Sync", Sync)
|
hshParams.Add("Sync", Sync)
|
||||||
hshParams.Add("CheckSum", CheckSum)
|
|
||||||
hshParams.Add("StartWithWindows", StartWithWindows)
|
hshParams.Add("StartWithWindows", StartWithWindows)
|
||||||
hshParams.Add("TimeTracking", TimeTracking)
|
hshParams.Add("TimeTracking", TimeTracking)
|
||||||
hshParams.Add("SupressBackup", SupressBackup)
|
hshParams.Add("SupressBackup", SupressBackup)
|
||||||
@@ -272,6 +281,8 @@ Public Class mgrSettings
|
|||||||
hshParams.Add("Custom7zLocation", Custom7zLocation)
|
hshParams.Add("Custom7zLocation", Custom7zLocation)
|
||||||
hshParams.Add("SyncFields", SyncFields)
|
hshParams.Add("SyncFields", SyncFields)
|
||||||
hshParams.Add("AutoSaveLog", AutoSaveLog)
|
hshParams.Add("AutoSaveLog", AutoSaveLog)
|
||||||
|
hshParams.Add("AutoRestore", AutoRestore)
|
||||||
|
hshParams.Add("AutoMark", AutoMark)
|
||||||
oDatabase.RunParamQuery(sSQL, hshParams)
|
oDatabase.RunParamQuery(sSQL, hshParams)
|
||||||
End Sub
|
End Sub
|
||||||
|
|
||||||
@@ -295,7 +306,6 @@ Public Class mgrSettings
|
|||||||
RestoreOnLaunch = CBool(dr("RestoreOnLaunch"))
|
RestoreOnLaunch = CBool(dr("RestoreOnLaunch"))
|
||||||
BackupFolder = CStr(dr("BackupFolder"))
|
BackupFolder = CStr(dr("BackupFolder"))
|
||||||
Sync = CBool(dr("Sync"))
|
Sync = CBool(dr("Sync"))
|
||||||
CheckSum = CBool(dr("CheckSum"))
|
|
||||||
StartWithWindows = CBool(dr("StartWithWindows"))
|
StartWithWindows = CBool(dr("StartWithWindows"))
|
||||||
TimeTracking = CBool(dr("TimeTracking"))
|
TimeTracking = CBool(dr("TimeTracking"))
|
||||||
SupressBackup = CBool(dr("SupressBackup"))
|
SupressBackup = CBool(dr("SupressBackup"))
|
||||||
@@ -305,6 +315,8 @@ Public Class mgrSettings
|
|||||||
If Not IsDBNull(dr("Custom7zLocation")) Then Custom7zLocation = CStr(dr("Custom7zLocation"))
|
If Not IsDBNull(dr("Custom7zLocation")) Then Custom7zLocation = CStr(dr("Custom7zLocation"))
|
||||||
SyncFields = CInt(dr("SyncFields"))
|
SyncFields = CInt(dr("SyncFields"))
|
||||||
AutoSaveLog = CBool(dr("AutoSaveLog"))
|
AutoSaveLog = CBool(dr("AutoSaveLog"))
|
||||||
|
AutoRestore = CBool(dr("AutoRestore"))
|
||||||
|
AutoMark = CBool(dr("AutoMark"))
|
||||||
Next
|
Next
|
||||||
|
|
||||||
oDatabase.Disconnect()
|
oDatabase.Disconnect()
|
||||||
|
|||||||
+27
-15
@@ -1,26 +1,44 @@
|
|||||||
Public Class mgrTags
|
Public Class mgrTags
|
||||||
|
|
||||||
|
Private Shared Function MapToObject(ByVal dr As DataRow) As clsTag
|
||||||
|
Dim oTag As New clsTag
|
||||||
|
|
||||||
|
oTag.ID = CStr(dr("TagID"))
|
||||||
|
oTag.Name = CStr(dr("Name"))
|
||||||
|
|
||||||
|
Return oTag
|
||||||
|
End Function
|
||||||
|
|
||||||
|
Private Shared Function SetCoreParameters(ByVal oTag As clsTag) As Hashtable
|
||||||
|
Dim hshParams As New Hashtable
|
||||||
|
|
||||||
|
hshParams.Add("ID", oTag.ID)
|
||||||
|
hshParams.Add("Name", oTag.Name)
|
||||||
|
|
||||||
|
Return hshParams
|
||||||
|
End Function
|
||||||
|
|
||||||
Public Shared Sub DoTagAdd(ByVal oTag As clsTag, Optional ByVal iSelectDB As mgrSQLite.Database = mgrSQLite.Database.Local)
|
Public Shared Sub DoTagAdd(ByVal oTag As clsTag, 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 New Hashtable
|
Dim hshParams As Hashtable
|
||||||
|
|
||||||
sSQL = "INSERT INTO tags VALUES (@ID, @Name)"
|
sSQL = "INSERT INTO tags VALUES (@ID, @Name)"
|
||||||
hshParams.Add("ID", oTag.ID)
|
|
||||||
hshParams.Add("Name", oTag.Name)
|
hshParams = SetCoreParameters(oTag)
|
||||||
|
|
||||||
oDatabase.RunParamQuery(sSQL, hshParams)
|
oDatabase.RunParamQuery(sSQL, hshParams)
|
||||||
End Sub
|
End Sub
|
||||||
|
|
||||||
Public Shared Sub DoTagUpdate(ByVal oTag As clsTag, Optional ByVal iSelectDB As mgrSQLite.Database = mgrSQLite.Database.Local)
|
Public Shared Sub DoTagUpdate(ByVal oTag As clsTag, 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 New Hashtable
|
Dim hshParams As Hashtable
|
||||||
|
|
||||||
sSQL = "UPDATE tags SET Name=@Name "
|
sSQL = "UPDATE tags SET Name=@Name "
|
||||||
sSQL &= "WHERE TagID = @ID"
|
sSQL &= "WHERE TagID = @ID"
|
||||||
|
|
||||||
hshParams.Add("Name", oTag.Name)
|
hshParams = SetCoreParameters(oTag)
|
||||||
hshParams.Add("ID", oTag.ID)
|
|
||||||
|
|
||||||
oDatabase.RunParamQuery(sSQL, hshParams)
|
oDatabase.RunParamQuery(sSQL, hshParams)
|
||||||
|
|
||||||
@@ -57,9 +75,7 @@
|
|||||||
oData = oDatabase.ReadParamData(sSQL, hshParams)
|
oData = oDatabase.ReadParamData(sSQL, hshParams)
|
||||||
|
|
||||||
For Each dr As DataRow In oData.Tables(0).Rows
|
For Each dr As DataRow In oData.Tables(0).Rows
|
||||||
oTag = New clsTag
|
oTag = MapToObject(dr)
|
||||||
oTag.ID = CStr(dr("TagID"))
|
|
||||||
oTag.Name = CStr(dr("Name"))
|
|
||||||
Next
|
Next
|
||||||
|
|
||||||
Return oTag
|
Return oTag
|
||||||
@@ -80,9 +96,7 @@
|
|||||||
oData = oDatabase.ReadParamData(sSQL, hshParams)
|
oData = oDatabase.ReadParamData(sSQL, hshParams)
|
||||||
|
|
||||||
For Each dr As DataRow In oData.Tables(0).Rows
|
For Each dr As DataRow In oData.Tables(0).Rows
|
||||||
oTag = New clsTag
|
oTag = MapToObject(dr)
|
||||||
oTag.ID = CStr(dr("TagID"))
|
|
||||||
oTag.Name = CStr(dr("Name"))
|
|
||||||
Next
|
Next
|
||||||
|
|
||||||
Return oTag
|
Return oTag
|
||||||
@@ -124,9 +138,7 @@
|
|||||||
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
|
||||||
oTag = New clsTag
|
oTag = MapToObject(dr)
|
||||||
oTag.ID = CStr(dr("TagID"))
|
|
||||||
oTag.Name = CStr(dr("Name"))
|
|
||||||
hshList.Add(oTag.Name, oTag)
|
hshList.Add(oTag.Name, oTag)
|
||||||
Next
|
Next
|
||||||
|
|
||||||
|
|||||||
@@ -1,5 +1,25 @@
|
|||||||
Public Class mgrVariables
|
Public Class mgrVariables
|
||||||
|
|
||||||
|
Private Shared Function MapToObject(ByVal dr As DataRow) As clsPathVariable
|
||||||
|
Dim oCustomVariable As New clsPathVariable
|
||||||
|
|
||||||
|
oCustomVariable.ID = CStr(dr("VariableID"))
|
||||||
|
oCustomVariable.Name = CStr(dr("Name"))
|
||||||
|
oCustomVariable.Path = CStr(dr("Path"))
|
||||||
|
|
||||||
|
Return oCustomVariable
|
||||||
|
End Function
|
||||||
|
|
||||||
|
Private Shared Function SetCoreParameters(ByVal oCustomVariable As clsPathVariable) As Hashtable
|
||||||
|
Dim hshParams As New Hashtable
|
||||||
|
|
||||||
|
hshParams.Add("ID", oCustomVariable.ID)
|
||||||
|
hshParams.Add("Name", oCustomVariable.Name)
|
||||||
|
hshParams.Add("Path", oCustomVariable.Path)
|
||||||
|
|
||||||
|
Return hshParams
|
||||||
|
End Function
|
||||||
|
|
||||||
Public Shared Sub DoPathUpdate(ByVal sOld As String, ByVal sNew As String)
|
Public Shared Sub DoPathUpdate(ByVal sOld As String, ByVal sNew As String)
|
||||||
Dim oDatabase As New mgrSQLite(mgrSQLite.Database.Local)
|
Dim oDatabase As New mgrSQLite(mgrSQLite.Database.Local)
|
||||||
Dim sSQL As String
|
Dim sSQL As String
|
||||||
@@ -15,26 +35,22 @@
|
|||||||
Public Shared Sub DoVariableAdd(ByVal oCustomVariable As clsPathVariable)
|
Public Shared Sub DoVariableAdd(ByVal oCustomVariable As clsPathVariable)
|
||||||
Dim oDatabase As New mgrSQLite(mgrSQLite.Database.Local)
|
Dim oDatabase As New mgrSQLite(mgrSQLite.Database.Local)
|
||||||
Dim sSQL As String
|
Dim sSQL As String
|
||||||
Dim hshParams As New Hashtable
|
Dim hshParams As Hashtable
|
||||||
|
|
||||||
sSQL = "INSERT INTO variables VALUES (@ID, @Name, @Path)"
|
sSQL = "INSERT INTO variables VALUES (@ID, @Name, @Path)"
|
||||||
hshParams.Add("ID", oCustomVariable.ID)
|
hshParams = SetCoreParameters(oCustomVariable)
|
||||||
hshParams.Add("Name", oCustomVariable.Name)
|
|
||||||
hshParams.Add("Path", oCustomVariable.Path)
|
|
||||||
oDatabase.RunParamQuery(sSQL, hshParams)
|
oDatabase.RunParamQuery(sSQL, hshParams)
|
||||||
End Sub
|
End Sub
|
||||||
|
|
||||||
Public Shared Sub DoVariableUpdate(ByVal oCustomVariable As clsPathVariable)
|
Public Shared Sub DoVariableUpdate(ByVal oCustomVariable As clsPathVariable)
|
||||||
Dim oDatabase As New mgrSQLite(mgrSQLite.Database.Local)
|
Dim oDatabase As New mgrSQLite(mgrSQLite.Database.Local)
|
||||||
Dim sSQL As String
|
Dim sSQL As String
|
||||||
Dim hshParams As New Hashtable
|
Dim hshParams As Hashtable
|
||||||
|
|
||||||
sSQL = "UPDATE variables SET Name=@Name, Path = @Path "
|
sSQL = "UPDATE variables SET Name=@Name, Path = @Path "
|
||||||
sSQL &= "WHERE VariableID = @ID"
|
sSQL &= "WHERE VariableID = @ID"
|
||||||
|
|
||||||
hshParams.Add("Name", oCustomVariable.Name)
|
hshParams = SetCoreParameters(oCustomVariable)
|
||||||
hshParams.Add("Path", oCustomVariable.Path)
|
|
||||||
hshParams.Add("ID", oCustomVariable.ID)
|
|
||||||
|
|
||||||
oDatabase.RunParamQuery(sSQL, hshParams)
|
oDatabase.RunParamQuery(sSQL, hshParams)
|
||||||
|
|
||||||
@@ -69,10 +85,7 @@
|
|||||||
oData = oDatabase.ReadParamData(sSQL, hshParams)
|
oData = oDatabase.ReadParamData(sSQL, hshParams)
|
||||||
|
|
||||||
For Each dr As DataRow In oData.Tables(0).Rows
|
For Each dr As DataRow In oData.Tables(0).Rows
|
||||||
oCustomVariable = New clsPathVariable
|
oCustomVariable = MapToObject(dr)
|
||||||
oCustomVariable.ID = CStr(dr("VariableID"))
|
|
||||||
oCustomVariable.Name = CStr(dr("Name"))
|
|
||||||
oCustomVariable.Path = CStr(dr("Path"))
|
|
||||||
Next
|
Next
|
||||||
|
|
||||||
Return oCustomVariable
|
Return oCustomVariable
|
||||||
@@ -93,10 +106,7 @@
|
|||||||
oData = oDatabase.ReadParamData(sSQL, hshParams)
|
oData = oDatabase.ReadParamData(sSQL, hshParams)
|
||||||
|
|
||||||
For Each dr As DataRow In oData.Tables(0).Rows
|
For Each dr As DataRow In oData.Tables(0).Rows
|
||||||
oCustomVariable = New clsPathVariable
|
oCustomVariable = MapToObject(dr)
|
||||||
oCustomVariable.ID = CStr(dr("VariableID"))
|
|
||||||
oCustomVariable.Name = CStr(dr("Name"))
|
|
||||||
oCustomVariable.Path = CStr(dr("Path"))
|
|
||||||
Next
|
Next
|
||||||
|
|
||||||
Return oCustomVariable
|
Return oCustomVariable
|
||||||
@@ -138,10 +148,7 @@
|
|||||||
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
|
||||||
oCustomVariable = New clsPathVariable
|
oCustomVariable = MapToObject(dr)
|
||||||
oCustomVariable.ID = CStr(dr("VariableID"))
|
|
||||||
oCustomVariable.Name = CStr(dr("Name"))
|
|
||||||
oCustomVariable.Path = CStr(dr("Path"))
|
|
||||||
hshList.Add(oCustomVariable.Name, oCustomVariable)
|
hshList.Add(oCustomVariable.Name, oCustomVariable)
|
||||||
Next
|
Next
|
||||||
|
|
||||||
|
|||||||
@@ -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("0.97.*")>
|
<Assembly: AssemblyVersion("1.0.1.*")>
|
||||||
<Assembly: AssemblyFileVersion("0.97.0.0")>
|
<Assembly: AssemblyFileVersion("1.0.1.0")>
|
||||||
|
|
||||||
<Assembly: NeutralResourcesLanguageAttribute("en")>
|
<Assembly: NeutralResourcesLanguageAttribute("en")>
|
||||||
Generated
+258
-51
@@ -259,7 +259,7 @@ Namespace My.Resources
|
|||||||
End Property
|
End Property
|
||||||
|
|
||||||
'''<summary>
|
'''<summary>
|
||||||
''' Looks up a localized string similar to Save Entire Folder.
|
''' Looks up a localized string similar to Save entire folder.
|
||||||
'''</summary>
|
'''</summary>
|
||||||
Friend ReadOnly Property frmAddWizard_chkFolderSave() As String
|
Friend ReadOnly Property frmAddWizard_chkFolderSave() As String
|
||||||
Get
|
Get
|
||||||
@@ -268,7 +268,7 @@ Namespace My.Resources
|
|||||||
End Property
|
End Property
|
||||||
|
|
||||||
'''<summary>
|
'''<summary>
|
||||||
''' Looks up a localized string similar to Time Stamp Backup.
|
''' Looks up a localized string similar to Save multiple backups.
|
||||||
'''</summary>
|
'''</summary>
|
||||||
Friend ReadOnly Property frmAddWizard_chkTimeStamp() As String
|
Friend ReadOnly Property frmAddWizard_chkTimeStamp() As String
|
||||||
Get
|
Get
|
||||||
@@ -501,6 +501,15 @@ Namespace My.Resources
|
|||||||
End Get
|
End Get
|
||||||
End Property
|
End Property
|
||||||
|
|
||||||
|
'''<summary>
|
||||||
|
''' Looks up a localized string similar to Backup Limit.
|
||||||
|
'''</summary>
|
||||||
|
Friend ReadOnly Property frmAddWizard_lblLimit() As String
|
||||||
|
Get
|
||||||
|
Return ResourceManager.GetString("frmAddWizard_lblLimit", resourceCulture)
|
||||||
|
End Get
|
||||||
|
End Property
|
||||||
|
|
||||||
'''<summary>
|
'''<summary>
|
||||||
''' Looks up a localized string similar to The name will be automatically filtered for length and invalid characters. You may drag and drop a shortcut here to complete this step, only Windows shortcuts are currently supported..
|
''' Looks up a localized string similar to The name will be automatically filtered for length and invalid characters. You may drag and drop a shortcut here to complete this step, only Windows shortcuts are currently supported..
|
||||||
'''</summary>
|
'''</summary>
|
||||||
@@ -574,7 +583,7 @@ Namespace My.Resources
|
|||||||
End Property
|
End Property
|
||||||
|
|
||||||
'''<summary>
|
'''<summary>
|
||||||
''' Looks up a localized string similar to If you're unsure of exactly which files to backup, make sure Save Entire Folder is checked. You can also time stamp your backup files to make incremental backups..
|
''' Looks up a localized string similar to If you're unsure of exactly which files to backup, make sure Save entire folder is checked. You can also choose to save multiple backups and set a limit on how many to keep..
|
||||||
'''</summary>
|
'''</summary>
|
||||||
Friend ReadOnly Property frmAddWizard_lblStep3Instructions() As String
|
Friend ReadOnly Property frmAddWizard_lblStep3Instructions() As String
|
||||||
Get
|
Get
|
||||||
@@ -709,7 +718,7 @@ Namespace My.Resources
|
|||||||
End Property
|
End Property
|
||||||
|
|
||||||
'''<summary>
|
'''<summary>
|
||||||
''' Looks up a localized string similar to Timestamp.
|
''' Looks up a localized string similar to Multiple Backups.
|
||||||
'''</summary>
|
'''</summary>
|
||||||
Friend ReadOnly Property frmAddWizard_Summary_Timestamp() As String
|
Friend ReadOnly Property frmAddWizard_Summary_Timestamp() As String
|
||||||
Get
|
Get
|
||||||
@@ -1069,7 +1078,7 @@ Namespace My.Resources
|
|||||||
End Property
|
End Property
|
||||||
|
|
||||||
'''<summary>
|
'''<summary>
|
||||||
''' Looks up a localized string similar to [PARAM] by [PARAM].
|
''' Looks up a localized string similar to [PARAM] ([PARAM]).
|
||||||
'''</summary>
|
'''</summary>
|
||||||
Friend ReadOnly Property frmGameManager_BackupTimeAndName() As String
|
Friend ReadOnly Property frmGameManager_BackupTimeAndName() As String
|
||||||
Get
|
Get
|
||||||
@@ -1077,6 +1086,24 @@ Namespace My.Resources
|
|||||||
End Get
|
End Get
|
||||||
End Property
|
End Property
|
||||||
|
|
||||||
|
'''<summary>
|
||||||
|
''' Looks up a localized string similar to Choose a new [PARAM] backup file.
|
||||||
|
'''</summary>
|
||||||
|
Friend ReadOnly Property frmGameManager_BrowseBackup() As String
|
||||||
|
Get
|
||||||
|
Return ResourceManager.GetString("frmGameManager_BrowseBackup", resourceCulture)
|
||||||
|
End Get
|
||||||
|
End Property
|
||||||
|
|
||||||
|
'''<summary>
|
||||||
|
''' Looks up a localized string similar to 7-Zip.
|
||||||
|
'''</summary>
|
||||||
|
Friend ReadOnly Property frmGameManager_BrowseBackupType() As String
|
||||||
|
Get
|
||||||
|
Return ResourceManager.GetString("frmGameManager_BrowseBackupType", resourceCulture)
|
||||||
|
End Get
|
||||||
|
End Property
|
||||||
|
|
||||||
'''<summary>
|
'''<summary>
|
||||||
''' Looks up a localized string similar to +.
|
''' Looks up a localized string similar to +.
|
||||||
'''</summary>
|
'''</summary>
|
||||||
@@ -1113,6 +1140,15 @@ Namespace My.Resources
|
|||||||
End Get
|
End Get
|
||||||
End Property
|
End Property
|
||||||
|
|
||||||
|
'''<summary>
|
||||||
|
''' Looks up a localized string similar to &Change Backup File.
|
||||||
|
'''</summary>
|
||||||
|
Friend ReadOnly Property frmGameManager_btnChangeBackup() As String
|
||||||
|
Get
|
||||||
|
Return ResourceManager.GetString("frmGameManager_btnChangeBackup", resourceCulture)
|
||||||
|
End Get
|
||||||
|
End Property
|
||||||
|
|
||||||
'''<summary>
|
'''<summary>
|
||||||
''' Looks up a localized string similar to C&lose.
|
''' Looks up a localized string similar to C&lose.
|
||||||
'''</summary>
|
'''</summary>
|
||||||
@@ -1257,6 +1293,15 @@ Namespace My.Resources
|
|||||||
End Get
|
End Get
|
||||||
End Property
|
End Property
|
||||||
|
|
||||||
|
'''<summary>
|
||||||
|
''' Looks up a localized string similar to Delete folder on restore.
|
||||||
|
'''</summary>
|
||||||
|
Friend ReadOnly Property frmGameManager_chkCleanFolder() As String
|
||||||
|
Get
|
||||||
|
Return ResourceManager.GetString("frmGameManager_chkCleanFolder", resourceCulture)
|
||||||
|
End Get
|
||||||
|
End Property
|
||||||
|
|
||||||
'''<summary>
|
'''<summary>
|
||||||
''' Looks up a localized string similar to Monitor this game.
|
''' Looks up a localized string similar to Monitor this game.
|
||||||
'''</summary>
|
'''</summary>
|
||||||
@@ -1285,7 +1330,7 @@ Namespace My.Resources
|
|||||||
End Property
|
End Property
|
||||||
|
|
||||||
'''<summary>
|
'''<summary>
|
||||||
''' Looks up a localized string similar to Timestamp each backup.
|
''' Looks up a localized string similar to Save multiple backups.
|
||||||
'''</summary>
|
'''</summary>
|
||||||
Friend ReadOnly Property frmGameManager_chkTimeStamp() As String
|
Friend ReadOnly Property frmGameManager_chkTimeStamp() As String
|
||||||
Get
|
Get
|
||||||
@@ -1347,6 +1392,24 @@ Namespace My.Resources
|
|||||||
End Get
|
End Get
|
||||||
End Property
|
End Property
|
||||||
|
|
||||||
|
'''<summary>
|
||||||
|
''' Looks up a localized string similar to &All Files.
|
||||||
|
'''</summary>
|
||||||
|
Friend ReadOnly Property frmGameManager_cmsDeleteAll() As String
|
||||||
|
Get
|
||||||
|
Return ResourceManager.GetString("frmGameManager_cmsDeleteAll", resourceCulture)
|
||||||
|
End Get
|
||||||
|
End Property
|
||||||
|
|
||||||
|
'''<summary>
|
||||||
|
''' Looks up a localized string similar to &Selected File.
|
||||||
|
'''</summary>
|
||||||
|
Friend ReadOnly Property frmGameManager_cmsDeleteOne() As String
|
||||||
|
Get
|
||||||
|
Return ResourceManager.GetString("frmGameManager_cmsDeleteOne", resourceCulture)
|
||||||
|
End Get
|
||||||
|
End Property
|
||||||
|
|
||||||
'''<summary>
|
'''<summary>
|
||||||
''' Looks up a localized string similar to &File....
|
''' Looks up a localized string similar to &File....
|
||||||
'''</summary>
|
'''</summary>
|
||||||
@@ -1375,7 +1438,25 @@ Namespace My.Resources
|
|||||||
End Property
|
End Property
|
||||||
|
|
||||||
'''<summary>
|
'''<summary>
|
||||||
''' Looks up a localized string similar to This will delete the backup file and all records of this backup. This cannot be undone. [BR][BR]Do you want to remove the data for [PARAM]?.
|
''' Looks up a localized string similar to [PARAM] will be the new backup file for [PARAM].[BR][BR]Is this correct?.
|
||||||
|
'''</summary>
|
||||||
|
Friend ReadOnly Property frmGameManager_ConfirmBackupChange() As String
|
||||||
|
Get
|
||||||
|
Return ResourceManager.GetString("frmGameManager_ConfirmBackupChange", resourceCulture)
|
||||||
|
End Get
|
||||||
|
End Property
|
||||||
|
|
||||||
|
'''<summary>
|
||||||
|
''' Looks up a localized string similar to Do you want to restore [PARAM] now?.
|
||||||
|
'''</summary>
|
||||||
|
Friend ReadOnly Property frmGameManager_ConfirmBackupChangeRestore() As String
|
||||||
|
Get
|
||||||
|
Return ResourceManager.GetString("frmGameManager_ConfirmBackupChangeRestore", resourceCulture)
|
||||||
|
End Get
|
||||||
|
End Property
|
||||||
|
|
||||||
|
'''<summary>
|
||||||
|
''' Looks up a localized string similar to This will delete the selected backup file. This cannot be undone. [BR][BR]Do you want to delete [PARAM]?.
|
||||||
'''</summary>
|
'''</summary>
|
||||||
Friend ReadOnly Property frmGameManager_ConfirmBackupDelete() As String
|
Friend ReadOnly Property frmGameManager_ConfirmBackupDelete() As String
|
||||||
Get
|
Get
|
||||||
@@ -1384,11 +1465,11 @@ Namespace My.Resources
|
|||||||
End Property
|
End Property
|
||||||
|
|
||||||
'''<summary>
|
'''<summary>
|
||||||
''' Looks up a localized string similar to The backup folder [PARAM] still contains [PARAM] directories and [PARAM] files.[BR][BR]Do you want to delete the contents and remove the sub-folder for this game?.
|
''' Looks up a localized string similar to This will delete all backup files for [PARAM]. This cannot be undone. [BR][BR]Do you want to continue?.
|
||||||
'''</summary>
|
'''</summary>
|
||||||
Friend ReadOnly Property frmGameManager_ConfirmBackupFolderDelete() As String
|
Friend ReadOnly Property frmGameManager_ConfirmBackupDeleteAll() As String
|
||||||
Get
|
Get
|
||||||
Return ResourceManager.GetString("frmGameManager_ConfirmBackupFolderDelete", resourceCulture)
|
Return ResourceManager.GetString("frmGameManager_ConfirmBackupDeleteAll", resourceCulture)
|
||||||
End Get
|
End Get
|
||||||
End Property
|
End Property
|
||||||
|
|
||||||
@@ -1491,6 +1572,24 @@ Namespace My.Resources
|
|||||||
End Get
|
End Get
|
||||||
End Property
|
End Property
|
||||||
|
|
||||||
|
'''<summary>
|
||||||
|
''' Looks up a localized string similar to [PARAM] is already the current backup file..
|
||||||
|
'''</summary>
|
||||||
|
Friend ReadOnly Property frmGameManager_ErrorBackupChangeFileName() As String
|
||||||
|
Get
|
||||||
|
Return ResourceManager.GetString("frmGameManager_ErrorBackupChangeFileName", resourceCulture)
|
||||||
|
End Get
|
||||||
|
End Property
|
||||||
|
|
||||||
|
'''<summary>
|
||||||
|
''' Looks up a localized string similar to You cannot choose a file located outside the current [PARAM] backup folder..
|
||||||
|
'''</summary>
|
||||||
|
Friend ReadOnly Property frmGameManager_ErrorBackupChangePath() As String
|
||||||
|
Get
|
||||||
|
Return ResourceManager.GetString("frmGameManager_ErrorBackupChangePath", resourceCulture)
|
||||||
|
End Get
|
||||||
|
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 this exact name and process already exists..
|
||||||
'''</summary>
|
'''</summary>
|
||||||
@@ -1689,6 +1788,15 @@ Namespace My.Resources
|
|||||||
End Get
|
End Get
|
||||||
End Property
|
End Property
|
||||||
|
|
||||||
|
'''<summary>
|
||||||
|
''' Looks up a localized string similar to Backup File:.
|
||||||
|
'''</summary>
|
||||||
|
Friend ReadOnly Property frmGameManager_lblBackupFile() As String
|
||||||
|
Get
|
||||||
|
Return ResourceManager.GetString("frmGameManager_lblBackupFile", resourceCulture)
|
||||||
|
End Get
|
||||||
|
End Property
|
||||||
|
|
||||||
'''<summary>
|
'''<summary>
|
||||||
''' Looks up a localized string similar to Company:.
|
''' Looks up a localized string similar to Company:.
|
||||||
'''</summary>
|
'''</summary>
|
||||||
@@ -1698,24 +1806,6 @@ Namespace My.Resources
|
|||||||
End Get
|
End Get
|
||||||
End Property
|
End Property
|
||||||
|
|
||||||
'''<summary>
|
|
||||||
''' Looks up a localized string similar to Current Backup:.
|
|
||||||
'''</summary>
|
|
||||||
Friend ReadOnly Property frmGameManager_lblCurrentBackup() As String
|
|
||||||
Get
|
|
||||||
Return ResourceManager.GetString("frmGameManager_lblCurrentBackup", resourceCulture)
|
|
||||||
End Get
|
|
||||||
End Property
|
|
||||||
|
|
||||||
'''<summary>
|
|
||||||
''' Looks up a localized string similar to Backup Size:.
|
|
||||||
'''</summary>
|
|
||||||
Friend ReadOnly Property frmGameManager_lblFileSize() As String
|
|
||||||
Get
|
|
||||||
Return ResourceManager.GetString("frmGameManager_lblFileSize", resourceCulture)
|
|
||||||
End Get
|
|
||||||
End Property
|
|
||||||
|
|
||||||
'''<summary>
|
'''<summary>
|
||||||
''' Looks up a localized string similar to Game Path:.
|
''' Looks up a localized string similar to Game Path:.
|
||||||
'''</summary>
|
'''</summary>
|
||||||
@@ -1744,11 +1834,20 @@ Namespace My.Resources
|
|||||||
End Property
|
End Property
|
||||||
|
|
||||||
'''<summary>
|
'''<summary>
|
||||||
''' Looks up a localized string similar to Local Backup:.
|
''' Looks up a localized string similar to Backup Limit.
|
||||||
'''</summary>
|
'''</summary>
|
||||||
Friend ReadOnly Property frmGameManager_lblLastBackup() As String
|
Friend ReadOnly Property frmGameManager_lblLimit() As String
|
||||||
Get
|
Get
|
||||||
Return ResourceManager.GetString("frmGameManager_lblLastBackup", resourceCulture)
|
Return ResourceManager.GetString("frmGameManager_lblLimit", resourceCulture)
|
||||||
|
End Get
|
||||||
|
End Property
|
||||||
|
|
||||||
|
'''<summary>
|
||||||
|
''' Looks up a localized string similar to Local Data:.
|
||||||
|
'''</summary>
|
||||||
|
Friend ReadOnly Property frmGameManager_lblLocalData() As String
|
||||||
|
Get
|
||||||
|
Return ResourceManager.GetString("frmGameManager_lblLocalData", resourceCulture)
|
||||||
End Get
|
End Get
|
||||||
End Property
|
End Property
|
||||||
|
|
||||||
@@ -1779,6 +1878,15 @@ Namespace My.Resources
|
|||||||
End Get
|
End Get
|
||||||
End Property
|
End Property
|
||||||
|
|
||||||
|
'''<summary>
|
||||||
|
''' Looks up a localized string similar to Backup Data:.
|
||||||
|
'''</summary>
|
||||||
|
Friend ReadOnly Property frmGameManager_lblRemote() As String
|
||||||
|
Get
|
||||||
|
Return ResourceManager.GetString("frmGameManager_lblRemote", resourceCulture)
|
||||||
|
End Get
|
||||||
|
End Property
|
||||||
|
|
||||||
'''<summary>
|
'''<summary>
|
||||||
''' Looks up a localized string similar to Restore Path:.
|
''' Looks up a localized string similar to Restore Path:.
|
||||||
'''</summary>
|
'''</summary>
|
||||||
@@ -1807,11 +1915,11 @@ Namespace My.Resources
|
|||||||
End Property
|
End Property
|
||||||
|
|
||||||
'''<summary>
|
'''<summary>
|
||||||
''' Looks up a localized string similar to Never.
|
''' Looks up a localized string similar to None.
|
||||||
'''</summary>
|
'''</summary>
|
||||||
Friend ReadOnly Property frmGameManager_Never() As String
|
Friend ReadOnly Property frmGameManager_None() As String
|
||||||
Get
|
Get
|
||||||
Return ResourceManager.GetString("frmGameManager_Never", resourceCulture)
|
Return ResourceManager.GetString("frmGameManager_None", resourceCulture)
|
||||||
End Get
|
End Get
|
||||||
End Property
|
End Property
|
||||||
|
|
||||||
@@ -1843,7 +1951,7 @@ Namespace My.Resources
|
|||||||
End Property
|
End Property
|
||||||
|
|
||||||
'''<summary>
|
'''<summary>
|
||||||
''' Looks up a localized string similar to New Saves Pending.
|
''' Looks up a localized string similar to New Backups Pending.
|
||||||
'''</summary>
|
'''</summary>
|
||||||
Friend ReadOnly Property frmGameManager_optPendingRestores() As String
|
Friend ReadOnly Property frmGameManager_optPendingRestores() As String
|
||||||
Get
|
Get
|
||||||
@@ -1860,6 +1968,15 @@ Namespace My.Resources
|
|||||||
End Get
|
End Get
|
||||||
End Property
|
End Property
|
||||||
|
|
||||||
|
'''<summary>
|
||||||
|
''' Looks up a localized string similar to Unknown.
|
||||||
|
'''</summary>
|
||||||
|
Friend ReadOnly Property frmGameManager_Unknown() As String
|
||||||
|
Get
|
||||||
|
Return ResourceManager.GetString("frmGameManager_Unknown", resourceCulture)
|
||||||
|
End Get
|
||||||
|
End Property
|
||||||
|
|
||||||
'''<summary>
|
'''<summary>
|
||||||
''' Looks up a localized string similar to Up to Date!.
|
''' Looks up a localized string similar to Up to Date!.
|
||||||
'''</summary>
|
'''</summary>
|
||||||
@@ -2167,7 +2284,7 @@ Namespace My.Resources
|
|||||||
End Property
|
End Property
|
||||||
|
|
||||||
'''<summary>
|
'''<summary>
|
||||||
''' Looks up a localized string similar to Game Backup Monitor[BR]Version: [PARAM] Beta ([PARAM])[BR]Build: [PARAM][BR][PARAM][BR][BR]This program comes with ABSOLUTELY NO WARRANTY.[BR]This is free software, and you are welcome to redistribute it under certain conditions.[BR][BR]See gpl-3.0.html in the program folder for details..
|
''' Looks up a localized string similar to Game Backup Monitor[BR]Version: [PARAM] ([PARAM])[BR]Build: [PARAM][BR][PARAM][BR][BR]This program comes with ABSOLUTELY NO WARRANTY.[BR]This is free software, and you are welcome to redistribute it under certain conditions.[BR][BR]See gpl-3.0.html in the program folder for details..
|
||||||
'''</summary>
|
'''</summary>
|
||||||
Friend ReadOnly Property frmMain_About() As String
|
Friend ReadOnly Property frmMain_About() As String
|
||||||
Get
|
Get
|
||||||
@@ -2184,6 +2301,24 @@ Namespace My.Resources
|
|||||||
End Get
|
End Get
|
||||||
End Property
|
End Property
|
||||||
|
|
||||||
|
'''<summary>
|
||||||
|
''' Looks up a localized string similar to The saved game folder for [PARAM] does not exist or could not be determined, the backup has been automatically marked as restored..
|
||||||
|
'''</summary>
|
||||||
|
Friend ReadOnly Property frmMain_AutoMark() As String
|
||||||
|
Get
|
||||||
|
Return ResourceManager.GetString("frmMain_AutoMark", resourceCulture)
|
||||||
|
End Get
|
||||||
|
End Property
|
||||||
|
|
||||||
|
'''<summary>
|
||||||
|
''' Looks up a localized string similar to [PARAM] has multiple configurations and cannot be automatically restored..
|
||||||
|
'''</summary>
|
||||||
|
Friend ReadOnly Property frmMain_AutoRestoreFailure() As String
|
||||||
|
Get
|
||||||
|
Return ResourceManager.GetString("frmMain_AutoRestoreFailure", resourceCulture)
|
||||||
|
End Get
|
||||||
|
End Property
|
||||||
|
|
||||||
'''<summary>
|
'''<summary>
|
||||||
''' Looks up a localized string similar to Backup in Progress....
|
''' Looks up a localized string similar to Backup in Progress....
|
||||||
'''</summary>
|
'''</summary>
|
||||||
@@ -2950,7 +3085,7 @@ Namespace My.Resources
|
|||||||
End Property
|
End Property
|
||||||
|
|
||||||
'''<summary>
|
'''<summary>
|
||||||
''' Looks up a localized string similar to [PARAM] New Saves Pending.
|
''' Looks up a localized string similar to [PARAM] New Backups Pending.
|
||||||
'''</summary>
|
'''</summary>
|
||||||
Friend ReadOnly Property frmMain_NewSaveNotificationMulti() As String
|
Friend ReadOnly Property frmMain_NewSaveNotificationMulti() As String
|
||||||
Get
|
Get
|
||||||
@@ -2959,7 +3094,7 @@ Namespace My.Resources
|
|||||||
End Property
|
End Property
|
||||||
|
|
||||||
'''<summary>
|
'''<summary>
|
||||||
''' Looks up a localized string similar to [PARAM] New Save Pending.
|
''' Looks up a localized string similar to [PARAM] New Backup Pending.
|
||||||
'''</summary>
|
'''</summary>
|
||||||
Friend ReadOnly Property frmMain_NewSaveNotificationSingle() As String
|
Friend ReadOnly Property frmMain_NewSaveNotificationSingle() As String
|
||||||
Get
|
Get
|
||||||
@@ -2967,6 +3102,24 @@ Namespace My.Resources
|
|||||||
End Get
|
End Get
|
||||||
End Property
|
End Property
|
||||||
|
|
||||||
|
'''<summary>
|
||||||
|
''' Looks up a localized string similar to The saved game folder for [PARAM] does not exist or could not be determined, this backup has been skipped..
|
||||||
|
'''</summary>
|
||||||
|
Friend ReadOnly Property frmMain_NoAutoMark() As String
|
||||||
|
Get
|
||||||
|
Return ResourceManager.GetString("frmMain_NoAutoMark", resourceCulture)
|
||||||
|
End Get
|
||||||
|
End Property
|
||||||
|
|
||||||
|
'''<summary>
|
||||||
|
''' Looks up a localized string similar to The backup file for [PARAM] has no checksum, it cannot be automatically restored..
|
||||||
|
'''</summary>
|
||||||
|
Friend ReadOnly Property frmMain_NoCheckSum() As String
|
||||||
|
Get
|
||||||
|
Return ResourceManager.GetString("frmMain_NoCheckSum", resourceCulture)
|
||||||
|
End Get
|
||||||
|
End Property
|
||||||
|
|
||||||
'''<summary>
|
'''<summary>
|
||||||
''' Looks up a localized string similar to Game details are unavailable..
|
''' Looks up a localized string similar to Game details are unavailable..
|
||||||
'''</summary>
|
'''</summary>
|
||||||
@@ -3039,6 +3192,33 @@ Namespace My.Resources
|
|||||||
End Get
|
End Get
|
||||||
End Property
|
End Property
|
||||||
|
|
||||||
|
'''<summary>
|
||||||
|
''' Looks up a localized string similar to [PARAM] new saved game backups are being automatically restored..
|
||||||
|
'''</summary>
|
||||||
|
Friend ReadOnly Property frmMain_RestoreNotificationMulti() As String
|
||||||
|
Get
|
||||||
|
Return ResourceManager.GetString("frmMain_RestoreNotificationMulti", resourceCulture)
|
||||||
|
End Get
|
||||||
|
End Property
|
||||||
|
|
||||||
|
'''<summary>
|
||||||
|
''' Looks up a localized string similar to A new saved game backup for [PARAM] is being automatically restored..
|
||||||
|
'''</summary>
|
||||||
|
Friend ReadOnly Property frmMain_RestoreNotificationSingle() As String
|
||||||
|
Get
|
||||||
|
Return ResourceManager.GetString("frmMain_RestoreNotificationSingle", resourceCulture)
|
||||||
|
End Get
|
||||||
|
End Property
|
||||||
|
|
||||||
|
'''<summary>
|
||||||
|
''' Looks up a localized string similar to The backup file for [PARAM] is not ready to restore..
|
||||||
|
'''</summary>
|
||||||
|
Friend ReadOnly Property frmMain_RestoreNotReady() As String
|
||||||
|
Get
|
||||||
|
Return ResourceManager.GetString("frmMain_RestoreNotReady", resourceCulture)
|
||||||
|
End Get
|
||||||
|
End Property
|
||||||
|
|
||||||
'''<summary>
|
'''<summary>
|
||||||
''' Looks up a localized string similar to GBM is running with Administrator privileges..
|
''' Looks up a localized string similar to GBM is running with Administrator privileges..
|
||||||
'''</summary>
|
'''</summary>
|
||||||
@@ -3237,6 +3417,24 @@ Namespace My.Resources
|
|||||||
End Get
|
End Get
|
||||||
End Property
|
End Property
|
||||||
|
|
||||||
|
'''<summary>
|
||||||
|
''' Looks up a localized string similar to Automatically mark new backups as restored when appropriate.
|
||||||
|
'''</summary>
|
||||||
|
Friend ReadOnly Property frmSettings_chkAutoMark() As String
|
||||||
|
Get
|
||||||
|
Return ResourceManager.GetString("frmSettings_chkAutoMark", resourceCulture)
|
||||||
|
End Get
|
||||||
|
End Property
|
||||||
|
|
||||||
|
'''<summary>
|
||||||
|
''' Looks up a localized string similar to Automatically restore new backups.
|
||||||
|
'''</summary>
|
||||||
|
Friend ReadOnly Property frmSettings_chkAutoRestore() As String
|
||||||
|
Get
|
||||||
|
Return ResourceManager.GetString("frmSettings_chkAutoRestore", resourceCulture)
|
||||||
|
End Get
|
||||||
|
End Property
|
||||||
|
|
||||||
'''<summary>
|
'''<summary>
|
||||||
''' Looks up a localized string similar to Autosave log when max length is exceeded.
|
''' Looks up a localized string similar to Autosave log when max length is exceeded.
|
||||||
'''</summary>
|
'''</summary>
|
||||||
@@ -3255,15 +3453,6 @@ Namespace My.Resources
|
|||||||
End Get
|
End Get
|
||||||
End Property
|
End Property
|
||||||
|
|
||||||
'''<summary>
|
|
||||||
''' Looks up a localized string similar to Verify backup files with a checksum.
|
|
||||||
'''</summary>
|
|
||||||
Friend ReadOnly Property frmSettings_chkCheckSum() As String
|
|
||||||
Get
|
|
||||||
Return ResourceManager.GetString("frmSettings_chkCheckSum", 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>
|
||||||
@@ -3292,11 +3481,11 @@ Namespace My.Resources
|
|||||||
End Property
|
End Property
|
||||||
|
|
||||||
'''<summary>
|
'''<summary>
|
||||||
''' Looks up a localized string similar to Notify when there are new backup files to restore.
|
''' Looks up a localized string similar to Display notifications about new backups.
|
||||||
'''</summary>
|
'''</summary>
|
||||||
Friend ReadOnly Property frmSettings_chkRestoreOnLaunch() As String
|
Friend ReadOnly Property frmSettings_chkRestoreNotify() As String
|
||||||
Get
|
Get
|
||||||
Return ResourceManager.GetString("frmSettings_chkRestoreOnLaunch", resourceCulture)
|
Return ResourceManager.GetString("frmSettings_chkRestoreNotify", resourceCulture)
|
||||||
End Get
|
End Get
|
||||||
End Property
|
End Property
|
||||||
|
|
||||||
@@ -3417,6 +3606,15 @@ Namespace My.Resources
|
|||||||
End Get
|
End Get
|
||||||
End Property
|
End Property
|
||||||
|
|
||||||
|
'''<summary>
|
||||||
|
''' Looks up a localized string similar to Backup Handling.
|
||||||
|
'''</summary>
|
||||||
|
Friend ReadOnly Property frmSettings_grpBackupHandling() As String
|
||||||
|
Get
|
||||||
|
Return ResourceManager.GetString("frmSettings_grpBackupHandling", resourceCulture)
|
||||||
|
End Get
|
||||||
|
End Property
|
||||||
|
|
||||||
'''<summary>
|
'''<summary>
|
||||||
''' Looks up a localized string similar to Folders.
|
''' Looks up a localized string similar to Folders.
|
||||||
'''</summary>
|
'''</summary>
|
||||||
@@ -3850,7 +4048,7 @@ Namespace My.Resources
|
|||||||
End Property
|
End Property
|
||||||
|
|
||||||
'''<summary>
|
'''<summary>
|
||||||
''' Looks up a localized string similar to Time stamp each backup.
|
''' Looks up a localized string similar to Save multiple backups.
|
||||||
'''</summary>
|
'''</summary>
|
||||||
Friend ReadOnly Property frmSyncFields_chkTimeStamp() As String
|
Friend ReadOnly Property frmSyncFields_chkTimeStamp() As String
|
||||||
Get
|
Get
|
||||||
@@ -4294,6 +4492,15 @@ Namespace My.Resources
|
|||||||
End Get
|
End Get
|
||||||
End Property
|
End Property
|
||||||
|
|
||||||
|
'''<summary>
|
||||||
|
''' Looks up a localized string similar to [PARAM] was automatically removed..
|
||||||
|
'''</summary>
|
||||||
|
Friend ReadOnly Property mgrBackup_BackupLimitExceeded() As String
|
||||||
|
Get
|
||||||
|
Return ResourceManager.GetString("mgrBackup_BackupLimitExceeded", resourceCulture)
|
||||||
|
End Get
|
||||||
|
End Property
|
||||||
|
|
||||||
'''<summary>
|
'''<summary>
|
||||||
''' Looks up a localized string similar to [PARAM] backup finished with warnings or errors..
|
''' Looks up a localized string similar to [PARAM] backup finished with warnings or errors..
|
||||||
'''</summary>
|
'''</summary>
|
||||||
|
|||||||
@@ -122,7 +122,7 @@
|
|||||||
<value>..\Resources\Admin.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
<value>..\Resources\Admin.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="frmMain_About" xml:space="preserve">
|
<data name="frmMain_About" xml:space="preserve">
|
||||||
<value>Game Backup Monitor[BR]Version: [PARAM] Beta ([PARAM])[BR]Build: [PARAM][BR][PARAM][BR][BR]This program comes with ABSOLUTELY NO WARRANTY.[BR]This is free software, and you are welcome to redistribute it under certain conditions.[BR][BR]See gpl-3.0.html in the program folder for details.</value>
|
<value>Game Backup Monitor[BR]Version: [PARAM] ([PARAM])[BR]Build: [PARAM][BR][PARAM][BR][BR]This program comes with ABSOLUTELY NO WARRANTY.[BR]This is free software, and you are welcome to redistribute it under certain conditions.[BR][BR]See gpl-3.0.html in the program folder for details.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="frmMain_ManifestAreadyClean" xml:space="preserve">
|
<data name="frmMain_ManifestAreadyClean" xml:space="preserve">
|
||||||
<value>The local manifest is clean.</value>
|
<value>The local manifest is clean.</value>
|
||||||
@@ -287,10 +287,10 @@
|
|||||||
<value>Multiple Games Detected</value>
|
<value>Multiple Games Detected</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="frmMain_NewSaveNotificationMulti" xml:space="preserve">
|
<data name="frmMain_NewSaveNotificationMulti" xml:space="preserve">
|
||||||
<value>[PARAM] New Saves Pending</value>
|
<value>[PARAM] New Backups Pending</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="frmMain_NewSaveNotificationSingle" xml:space="preserve">
|
<data name="frmMain_NewSaveNotificationSingle" xml:space="preserve">
|
||||||
<value>[PARAM] New Save Pending</value>
|
<value>[PARAM] New Backup Pending</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="frmMain_NoDetails" xml:space="preserve">
|
<data name="frmMain_NoDetails" xml:space="preserve">
|
||||||
<value>Game details are unavailable.</value>
|
<value>Game details are unavailable.</value>
|
||||||
@@ -431,7 +431,7 @@
|
|||||||
<value>[PARAM] MB</value>
|
<value>[PARAM] MB</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="frmGameManager_BackupTimeAndName" xml:space="preserve">
|
<data name="frmGameManager_BackupTimeAndName" xml:space="preserve">
|
||||||
<value>[PARAM] by [PARAM]</value>
|
<value>[PARAM] ([PARAM])</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="frmGameManager_btnAdd" xml:space="preserve">
|
<data name="frmGameManager_btnAdd" xml:space="preserve">
|
||||||
<value>+</value>
|
<value>+</value>
|
||||||
@@ -503,7 +503,7 @@
|
|||||||
<value>Monitor only</value>
|
<value>Monitor only</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="frmGameManager_chkTimeStamp" xml:space="preserve">
|
<data name="frmGameManager_chkTimeStamp" xml:space="preserve">
|
||||||
<value>Timestamp each backup</value>
|
<value>Save multiple backups</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="frmGameManager_ChooseCustomIcon" xml:space="preserve">
|
<data name="frmGameManager_ChooseCustomIcon" xml:space="preserve">
|
||||||
<value>Choose a custom icon for the game</value>
|
<value>Choose a custom icon for the game</value>
|
||||||
@@ -527,10 +527,7 @@
|
|||||||
<value>Are you sure you want to run a backup for [PARAM]? This will close the form.</value>
|
<value>Are you sure you want to run a backup for [PARAM]? This will close the form.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="frmGameManager_ConfirmBackupDelete" xml:space="preserve">
|
<data name="frmGameManager_ConfirmBackupDelete" xml:space="preserve">
|
||||||
<value>This will delete the backup file and all records of this backup. This cannot be undone. [BR][BR]Do you want to remove the data for [PARAM]?</value>
|
<value>This will delete the selected backup file. This cannot be undone. [BR][BR]Do you want to delete [PARAM]?</value>
|
||||||
</data>
|
|
||||||
<data name="frmGameManager_ConfirmBackupFolderDelete" xml:space="preserve">
|
|
||||||
<value>The backup folder [PARAM] still contains [PARAM] directories and [PARAM] files.[BR][BR]Do you want to delete the contents and remove the sub-folder for this game?</value>
|
|
||||||
</data>
|
</data>
|
||||||
<data name="frmGameManager_ConfirmGameDelete" xml:space="preserve">
|
<data name="frmGameManager_ConfirmGameDelete" xml:space="preserve">
|
||||||
<value>Are you sure you want to delete [PARAM]? This cannot be undone.[BR][BR]This will not delete any backup files that already exist for this game.</value>
|
<value>Are you sure you want to delete [PARAM]? This cannot be undone.[BR][BR]This will not delete any backup files that already exist for this game.</value>
|
||||||
@@ -616,11 +613,11 @@
|
|||||||
<data name="frmGameManager_lblCompany" xml:space="preserve">
|
<data name="frmGameManager_lblCompany" xml:space="preserve">
|
||||||
<value>Company:</value>
|
<value>Company:</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="frmGameManager_lblCurrentBackup" xml:space="preserve">
|
<data name="frmGameManager_lblRemote" xml:space="preserve">
|
||||||
<value>Current Backup:</value>
|
<value>Backup Data:</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="frmGameManager_lblFileSize" xml:space="preserve">
|
<data name="frmGameManager_lblBackupFile" xml:space="preserve">
|
||||||
<value>Backup Size:</value>
|
<value>Backup File:</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="frmGameManager_lblGamePath" xml:space="preserve">
|
<data name="frmGameManager_lblGamePath" xml:space="preserve">
|
||||||
<value>Game Path:</value>
|
<value>Game Path:</value>
|
||||||
@@ -631,8 +628,8 @@
|
|||||||
<data name="frmGameManager_lblIcon" xml:space="preserve">
|
<data name="frmGameManager_lblIcon" xml:space="preserve">
|
||||||
<value>Icon:</value>
|
<value>Icon:</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="frmGameManager_lblLastBackup" xml:space="preserve">
|
<data name="frmGameManager_lblLocalData" xml:space="preserve">
|
||||||
<value>Local Backup:</value>
|
<value>Local Data:</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="frmGameManager_lblName" xml:space="preserve">
|
<data name="frmGameManager_lblName" xml:space="preserve">
|
||||||
<value>Name:</value>
|
<value>Name:</value>
|
||||||
@@ -649,8 +646,8 @@
|
|||||||
<data name="frmGameManager_lblVersion" xml:space="preserve">
|
<data name="frmGameManager_lblVersion" xml:space="preserve">
|
||||||
<value>Version:</value>
|
<value>Version:</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="frmGameManager_Never" xml:space="preserve">
|
<data name="frmGameManager_None" xml:space="preserve">
|
||||||
<value>Never</value>
|
<value>None</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="frmGameManager_optAllGames" xml:space="preserve">
|
<data name="frmGameManager_optAllGames" xml:space="preserve">
|
||||||
<value>All</value>
|
<value>All</value>
|
||||||
@@ -662,7 +659,7 @@
|
|||||||
<value>Custom</value>
|
<value>Custom</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="frmGameManager_optPendingRestores" xml:space="preserve">
|
<data name="frmGameManager_optPendingRestores" xml:space="preserve">
|
||||||
<value>New Saves Pending</value>
|
<value>New Backups Pending</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="frmGameManager_OutofSync" xml:space="preserve">
|
<data name="frmGameManager_OutofSync" xml:space="preserve">
|
||||||
<value>Out of Sync</value>
|
<value>Out of Sync</value>
|
||||||
@@ -704,10 +701,10 @@
|
|||||||
<value>...</value>
|
<value>...</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="frmAddWizard_chkFolderSave" xml:space="preserve">
|
<data name="frmAddWizard_chkFolderSave" xml:space="preserve">
|
||||||
<value>Save Entire Folder</value>
|
<value>Save entire folder</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="frmAddWizard_chkTimeStamp" xml:space="preserve">
|
<data name="frmAddWizard_chkTimeStamp" xml:space="preserve">
|
||||||
<value>Time Stamp Backup</value>
|
<value>Save multiple backups</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="frmAddWizard_ChooseProcess" xml:space="preserve">
|
<data name="frmAddWizard_ChooseProcess" xml:space="preserve">
|
||||||
<value>Choose exe file that starts the game</value>
|
<value>Choose exe file that starts the game</value>
|
||||||
@@ -809,7 +806,7 @@
|
|||||||
<value>Choose Files to Backup</value>
|
<value>Choose Files to Backup</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="frmAddWizard_lblStep3Instructions" xml:space="preserve">
|
<data name="frmAddWizard_lblStep3Instructions" xml:space="preserve">
|
||||||
<value>If you're unsure of exactly which files to backup, make sure Save Entire Folder is checked. You can also time stamp your backup files to make incremental backups.</value>
|
<value>If you're unsure of exactly which files to backup, make sure Save entire folder is checked. You can also choose to save multiple backups and set a limit on how many to keep.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="frmAddWizard_lblStep3Intro" xml:space="preserve">
|
<data name="frmAddWizard_lblStep3Intro" xml:space="preserve">
|
||||||
<value>Choose the location of your game's save files:</value>
|
<value>Choose the location of your game's save files:</value>
|
||||||
@@ -854,7 +851,7 @@
|
|||||||
<value>Save Path</value>
|
<value>Save Path</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="frmAddWizard_Summary_Timestamp" xml:space="preserve">
|
<data name="frmAddWizard_Summary_Timestamp" xml:space="preserve">
|
||||||
<value>Timestamp</value>
|
<value>Multiple Backups</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="frmAdvancedImport_btnCancel" xml:space="preserve">
|
<data name="frmAdvancedImport_btnCancel" xml:space="preserve">
|
||||||
<value>&Cancel</value>
|
<value>&Cancel</value>
|
||||||
@@ -1078,9 +1075,6 @@
|
|||||||
<data name="frmSettings_chkBackupConfirm" xml:space="preserve">
|
<data name="frmSettings_chkBackupConfirm" xml:space="preserve">
|
||||||
<value>Disable backup confirmation</value>
|
<value>Disable backup confirmation</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="frmSettings_chkCheckSum" xml:space="preserve">
|
|
||||||
<value>Verify backup files with a checksum</value>
|
|
||||||
</data>
|
|
||||||
<data name="frmSettings_chkCreateFolder" xml:space="preserve">
|
<data name="frmSettings_chkCreateFolder" xml:space="preserve">
|
||||||
<value>Create a sub-folder for each game</value>
|
<value>Create a sub-folder for each game</value>
|
||||||
</data>
|
</data>
|
||||||
@@ -1090,8 +1084,8 @@
|
|||||||
<data name="frmSettings_chkOverwriteWarning" xml:space="preserve">
|
<data name="frmSettings_chkOverwriteWarning" xml:space="preserve">
|
||||||
<value>Show overwrite warning</value>
|
<value>Show overwrite warning</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="frmSettings_chkRestoreOnLaunch" xml:space="preserve">
|
<data name="frmSettings_chkRestoreNotify" xml:space="preserve">
|
||||||
<value>Notify when there are new backup files to restore</value>
|
<value>Display notifications about new backups</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="frmSettings_chkShowDetectionTips" xml:space="preserve">
|
<data name="frmSettings_chkShowDetectionTips" xml:space="preserve">
|
||||||
<value>Show detection notifications</value>
|
<value>Show detection notifications</value>
|
||||||
@@ -1652,7 +1646,7 @@
|
|||||||
<value>Monitor this game</value>
|
<value>Monitor this game</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="frmSyncFields_chkTimeStamp" xml:space="preserve">
|
<data name="frmSyncFields_chkTimeStamp" xml:space="preserve">
|
||||||
<value>Time stamp each backup</value>
|
<value>Save multiple backups</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="frmSyncFields_chkVersion" xml:space="preserve">
|
<data name="frmSyncFields_chkVersion" xml:space="preserve">
|
||||||
<value>Version</value>
|
<value>Version</value>
|
||||||
@@ -1693,4 +1687,79 @@
|
|||||||
<data name="App_URLImportLinux" xml:space="preserve">
|
<data name="App_URLImportLinux" xml:space="preserve">
|
||||||
<value>http://mikemaximus.github.io/gbm-web/GBM_Official_Linux.xml</value>
|
<value>http://mikemaximus.github.io/gbm-web/GBM_Official_Linux.xml</value>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="frmGameManager_BrowseBackup" xml:space="preserve">
|
||||||
|
<value>Choose a new [PARAM] backup file</value>
|
||||||
|
</data>
|
||||||
|
<data name="frmGameManager_BrowseBackupType" xml:space="preserve">
|
||||||
|
<value>7-Zip</value>
|
||||||
|
</data>
|
||||||
|
<data name="frmGameManager_btnChangeBackup" xml:space="preserve">
|
||||||
|
<value>&Change Backup File</value>
|
||||||
|
</data>
|
||||||
|
<data name="frmGameManager_ConfirmBackupChange" xml:space="preserve">
|
||||||
|
<value>[PARAM] will be the new backup file for [PARAM].[BR][BR]Is this correct?</value>
|
||||||
|
</data>
|
||||||
|
<data name="frmGameManager_ConfirmBackupChangeRestore" xml:space="preserve">
|
||||||
|
<value>Do you want to restore [PARAM] now?</value>
|
||||||
|
</data>
|
||||||
|
<data name="frmGameManager_ErrorBackupChangeFileName" xml:space="preserve">
|
||||||
|
<value>[PARAM] is already the current backup file.</value>
|
||||||
|
</data>
|
||||||
|
<data name="frmGameManager_ErrorBackupChangePath" xml:space="preserve">
|
||||||
|
<value>You cannot choose a file located outside the current [PARAM] backup folder.</value>
|
||||||
|
</data>
|
||||||
|
<data name="frmGameManager_lblLimit" xml:space="preserve">
|
||||||
|
<value>Backup Limit</value>
|
||||||
|
</data>
|
||||||
|
<data name="mgrBackup_BackupLimitExceeded" xml:space="preserve">
|
||||||
|
<value>[PARAM] was automatically removed.</value>
|
||||||
|
</data>
|
||||||
|
<data name="frmGameManager_cmsDeleteAll" xml:space="preserve">
|
||||||
|
<value>&All Files</value>
|
||||||
|
</data>
|
||||||
|
<data name="frmGameManager_cmsDeleteOne" xml:space="preserve">
|
||||||
|
<value>&Selected File</value>
|
||||||
|
</data>
|
||||||
|
<data name="frmGameManager_ConfirmBackupDeleteAll" xml:space="preserve">
|
||||||
|
<value>This will delete all backup files for [PARAM]. This cannot be undone. [BR][BR]Do you want to continue?</value>
|
||||||
|
</data>
|
||||||
|
<data name="frmAddWizard_lblLimit" xml:space="preserve">
|
||||||
|
<value>Backup Limit</value>
|
||||||
|
</data>
|
||||||
|
<data name="frmGameManager_Unknown" xml:space="preserve">
|
||||||
|
<value>Unknown</value>
|
||||||
|
</data>
|
||||||
|
<data name="frmGameManager_chkCleanFolder" xml:space="preserve">
|
||||||
|
<value>Delete folder on restore</value>
|
||||||
|
</data>
|
||||||
|
<data name="frmMain_AutoMark" xml:space="preserve">
|
||||||
|
<value>The saved game folder for [PARAM] does not exist or could not be determined, the backup has been automatically marked as restored.</value>
|
||||||
|
</data>
|
||||||
|
<data name="frmMain_RestoreNotReady" xml:space="preserve">
|
||||||
|
<value>The backup file for [PARAM] is not ready to restore.</value>
|
||||||
|
</data>
|
||||||
|
<data name="frmSettings_chkAutoMark" xml:space="preserve">
|
||||||
|
<value>Automatically mark new backups as restored when appropriate</value>
|
||||||
|
</data>
|
||||||
|
<data name="frmSettings_grpBackupHandling" xml:space="preserve">
|
||||||
|
<value>Backup Handling</value>
|
||||||
|
</data>
|
||||||
|
<data name="frmSettings_chkAutoRestore" xml:space="preserve">
|
||||||
|
<value>Automatically restore new backups</value>
|
||||||
|
</data>
|
||||||
|
<data name="frmMain_AutoRestoreFailure" xml:space="preserve">
|
||||||
|
<value>[PARAM] has multiple configurations and cannot be automatically restored.</value>
|
||||||
|
</data>
|
||||||
|
<data name="frmMain_RestoreNotificationMulti" xml:space="preserve">
|
||||||
|
<value>[PARAM] new saved game backups are being automatically restored.</value>
|
||||||
|
</data>
|
||||||
|
<data name="frmMain_RestoreNotificationSingle" xml:space="preserve">
|
||||||
|
<value>A new saved game backup for [PARAM] is being automatically restored.</value>
|
||||||
|
</data>
|
||||||
|
<data name="frmMain_NoAutoMark" xml:space="preserve">
|
||||||
|
<value>The saved game folder for [PARAM] does not exist or could not be determined, this backup has been skipped.</value>
|
||||||
|
</data>
|
||||||
|
<data name="frmMain_NoCheckSum" xml:space="preserve">
|
||||||
|
<value>The backup file for [PARAM] has no checksum, it cannot be automatically restored.</value>
|
||||||
|
</data>
|
||||||
</root>
|
</root>
|
||||||
+14
-18
@@ -1,26 +1,22 @@
|
|||||||
Game Backup Monitor v0.97 Readme
|
Game Backup Monitor v1.01 Readme
|
||||||
http://mikemaximus.github.io/gbm-web/
|
http://mikemaximus.github.io/gbm-web/
|
||||||
gamebackupmonitor@gmail.com
|
gamebackupmonitor@gmail.com
|
||||||
|
|
||||||
June 30, 2016
|
April 1, 2017
|
||||||
|
|
||||||
Disclaimer:
|
New in 1.01
|
||||||
|
|
||||||
This is beta release software. You may still encounter some bugs.
|
- (All) Added features to automatically handle new backup files.
|
||||||
|
- Automatically restore new backup files when they are detected.
|
||||||
|
- Automatically mark new backup files as restored if the game isn't installed on the current PC.
|
||||||
|
- These new features are available in the "Backup and Restore" section of the Settings. They are optional and disabled by default.
|
||||||
|
- (All) Added new configuration option to delete saved game folder on restore
|
||||||
|
- This option is used for games that change the file names of their saves, which results in a mix of old and new saved games if the old saves aren't deleted first.
|
||||||
|
- This option has limitations and is not part of official configurations or import/export features.
|
||||||
|
- (All) The "Verify backup files with a checksum" option has been removed. This feature is now baked into GBM and cannot be disabled.
|
||||||
|
- (All) GBM will now behave consistently across different configurations (such as LAN) when performing sync operations.
|
||||||
|
- (Windows) Fixed rare issue related to DPI display scaling.
|
||||||
|
|
||||||
New in 0.97
|
Read the "Settings" and "The Game Manager" sections of the manual (http://mikemaximus.github.io/gbm-web/manual.html) for more details on how the new features work and their limitations.
|
||||||
|
|
||||||
- (All) Re-designed the Settings screen as a standard preference panel interface.
|
|
||||||
- (Windows) Updated GBM's version of 7-Zip to 16.02 (2016-05-21)
|
|
||||||
- (All) Custom arguments and switches can now be added to GBM's 7-Zip commands.
|
|
||||||
- (All) Custom versions of 7-Zip Console (7za) can now be used as a supported feature.
|
|
||||||
- (Windows) GBM's packaged version(s) of 7-Zip Console (7za) are now verified as a simple security feature.
|
|
||||||
- (All) A "Set Defaults" button is now available on the Settings screen.
|
|
||||||
- (All) Optional data fields such as "Company" and "Version" can now be included in the sync.
|
|
||||||
- (All) Reduced the maximum length of the session log to improve performance and added a setting to control log autosaves.
|
|
||||||
- (All) A "Quick Filter" has been added to the Game Manager. You can now quickly find a game by typing the name as soon as you open the window.
|
|
||||||
- (Linux) An official game list is now available for Linux, GBM will choose the official list based on your operating system.
|
|
||||||
|
|
||||||
For more information regarding Linux support read the FAQ at http://mikemaximus.github.io/gbm-web/linux.html
|
|
||||||
|
|
||||||
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
|
||||||
@@ -1,15 +1,15 @@
|
|||||||
# [Game Backup Monitor] (http://mikemaximus.github.io/gbm-web/)
|
# [Game Backup Monitor](http://mikemaximus.github.io/gbm-web/)
|
||||||
|
|
||||||
![Screenshot] (http://mikemaximus.github.io/gbm-web/images/manual/manual_01.jpg)
|

|
||||||
|
|
||||||
Game Backup Monitor is a simple, but flexible application that detects games as you play them. Once you finish playing a game, a backup of the saved games will be made automatically using 7-Zip compression. GBM can be used on a single computer, or on multiple computers to effectively add cloud support to any game or application.
|
Game Backup Monitor is a simple, but flexible application that detects games as you play them. Once you finish playing a game, a backup of the saved games will be made automatically using 7-Zip compression. GBM can be used on a single computer, or on multiple computers to effectively add cloud support to any game or application.
|
||||||
|
|
||||||
**License**: GNU General Public License version 3.0 (GPLv3)<br />
|
**License**: GNU General Public License version 3.0 (GPLv3)<br />
|
||||||
**Language**: English Only<br />
|
**Language**: English ([Translation FAQ](http://mikemaximus.github.io/gbm-web/translations.html))<br />
|
||||||
**Platform**: Windows (.NET 4) & Linux (Mono)
|
**Platform**: Windows (.NET 4) & Linux (Mono)
|
||||||
|
|
||||||
[About Game Backup Monitor] (http://mikemaximus.github.io/gbm-web/about.html) <br />
|
[About Game Backup Monitor](http://mikemaximus.github.io/gbm-web/about.html) <br />
|
||||||
[Game Backup Monitor FAQ] (http://mikemaximus.github.io/gbm-web/faq.html) <br />
|
[Game Backup Monitor FAQ](http://mikemaximus.github.io/gbm-web/faq.html) <br />
|
||||||
[Game Backup Monitor Manual] (http://mikemaximus.github.io/gbm-web/manual.html) <br />
|
[Game Backup Monitor Manual](http://mikemaximus.github.io/gbm-web/manual.html) <br />
|
||||||
[List of Preconfigured Games] (http://mikemaximus.github.io/gbm-web/GBM_Official.xml) <br /> <br />
|
[List of Preconfigured Games](http://mikemaximus.github.io/gbm-web/GBM_Official.xml) <br /> <br />
|
||||||
Updates regarding this project are available via the [Game Backup Monitor web site] (http://mikemaximus.github.io/gbm-web/).
|
Updates regarding this project are available via the [Game Backup Monitor web site](http://mikemaximus.github.io/gbm-web/).
|
||||||
|
|||||||
Reference in New Issue
Block a user