bumped version number to 1.3, since databases saved with the SQLite 3.3.4 engine can not be opened by earlier versions of this (or any other) SQLite compatible program.

This commit is contained in:
tabuleiro
2006-02-17 20:13:52 +00:00
parent 52c96b77e2
commit cb37ba2c45
2 changed files with 3 additions and 3 deletions

View File

@@ -32,10 +32,10 @@
</sizepolicy>
</property>
<property name="text">
<string>Version 1.2.1
<string>Version 1.3
SQLite Database Browser is an open source, public domain, freeware visual tool used to create, design and edit SQLite 3.x database files.
This program was built with version 3.2.1 of the SQLite engine.
This program was built with version 3.3.4 of the SQLite engine.
More information at http://sqlitebrowser.sourceforge.net.</string>
</property>

View File

@@ -23,7 +23,7 @@ enum
static QString applicationName = QString("SQLite Database Browser");
static QString applicationIconName = QString("icone16.png");
static QString aboutText = QString("Version 1.2b1\n\nSQLite Database Browser is a freeware, public domain, open source visual tool used to create, design and edit database files compatible with SQLite 3.x.\n\nIt has been developed originally by Mauricio Piacentini from Tabuleiro Producoes. \n\nIn the spirit of the original SQLite source code, the author disclaims copyright to this source code.");
static QString aboutText = QString("Version 1.3\n\nSQLite Database Browser is a freeware, public domain, open source visual tool used to create, design and edit database files compatible with SQLite 3.x.\n\nIt has been developed originally by Mauricio Piacentini from Tabuleiro Producoes. \n\nIn the spirit of the original SQLite source code, the author disclaims copyright to this source code.");
typedef QMap<int, class DBBrowserField> fieldMap;