diff --git a/GBM/Forms/frmMain.vb b/GBM/Forms/frmMain.vb index eae16ba..8ebece1 100644 --- a/GBM/Forms/frmMain.vb +++ b/GBM/Forms/frmMain.vb @@ -815,9 +815,11 @@ Public Class frmMain 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 sRevision As String = My.Application.Info.Version.Revision + Dim oDatabase As New mgrSQLite(mgrSQLite.Database.Local) + Dim sSqliteVersion As String = oDatabase.ReportVersion 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, sSqliteVersion, sConstCopyright}, MsgBoxStyle.Information) End Sub Private Sub OpenTags() diff --git a/GBM/Game Backup Monitor.vbproj b/GBM/Game Backup Monitor.vbproj index 33d3fb3..0267ad9 100644 --- a/GBM/Game Backup Monitor.vbproj +++ b/GBM/Game Backup Monitor.vbproj @@ -347,6 +347,7 @@ PreserveNewest + @@ -359,7 +360,6 @@ - diff --git a/GBM/Managers/mgrSQLite.vb b/GBM/Managers/mgrSQLite.vb index a9aa722..bad4fa5 100644 --- a/GBM/Managers/mgrSQLite.vb +++ b/GBM/Managers/mgrSQLite.vb @@ -678,6 +678,10 @@ Public Class mgrSQLite Return Math.Round(oFileInfo.Length / 1024, 2) End Function + Public Function ReportVersion() As String + Return SqliteConnection.SQLiteVersion + End Function + Public Sub CompactDatabase() Dim sSQL As String Dim command As SQLiteCommand diff --git a/GBM/My Project/Resources.Designer.vb b/GBM/My Project/Resources.Designer.vb index 763550d..839d2c2 100644 --- a/GBM/My Project/Resources.Designer.vb +++ b/GBM/My Project/Resources.Designer.vb @@ -2275,7 +2275,7 @@ Namespace My.Resources End Property ''' - ''' 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.. + ''' Looks up a localized string similar to Game Backup Monitor[BR]Version: [PARAM] ([PARAM])[BR]Build: [PARAM][BR]SQLite: [PARAM][BR][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.. ''' Friend ReadOnly Property frmMain_About() As String Get diff --git a/GBM/My Project/Resources.resx b/GBM/My Project/Resources.resx index d0c50eb..09b045f 100644 --- a/GBM/My Project/Resources.resx +++ b/GBM/My Project/Resources.resx @@ -122,7 +122,7 @@ ..\Resources\Admin.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - 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. + Game Backup Monitor[BR]Version: [PARAM] ([PARAM])[BR]Build: [PARAM][BR]SQLite: [PARAM][BR][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. The local manifest is clean. diff --git a/GBM/x64/sqlite3.dll b/GBM/x64/sqlite3.dll index 3021560..d48a7ef 100644 Binary files a/GBM/x64/sqlite3.dll and b/GBM/x64/sqlite3.dll differ diff --git a/GBM/x86/sqlite3.dll b/GBM/x86/sqlite3.dll index 315ade8..1e537df 100644 Binary files a/GBM/x86/sqlite3.dll and b/GBM/x86/sqlite3.dll differ