~linuxgndu/sqlitebrowser-recipe/+git/sqlitebrowser:v3.6.x

Last commit made on 2015-05-05
Get this branch:
git clone -b v3.6.x https://git.launchpad.net/~linuxgndu/sqlitebrowser-recipe/+git/sqlitebrowser

Branch merges

Branch information

Recent commits

dce7b30... by rp

cmake/vs2013: use winxp toolset

5dc61fe... by rp

windows/msvc: add missing .dll to installers

e703344... by mvt91

Update French translation

5ad7fbf... by Martin Kleusberg <email address hidden>

bump version to 3.6.0

6d196c0... by Martin Kleusberg <email address hidden>

Support non-integer primary keys

Add support for non-integer primary keys, especially on table without
rowid column. The previous code often assumed that the rowid column or
its equivalent was a 64bit integer but SQLite allows any data, including
text, to be stored in there.

See issue #240.

d6533ba... by Martin Kleusberg <email address hidden>

Fix Qt4 build broken in dd8dd4852d97a92d6f9772dc788aaf1591d0ff19

9b2529b... by Martin Kleusberg <email address hidden>

Remove DBBrowserDB::tableColumns() method

Remove the DBBrowserDB::tableColumns() method which queries the database
for the column names of a given table and which is used for the SQL
export only. This function isn't needed at all because it generates a
whole bunch of queries for data which is already hold in memory...

dd8dd48... by Martin Kleusberg <email address hidden>

Add Browse Table popop action to Database Structure tab

In the Database Structure tab of the main window, add a new action to
the popup menu which open upon right clicking the tree view to allow
directly changing to the Browse Data tab with the current table being
selected automatically.

See issue #246.

4c77036... by Samir

mainwindow: Add filter to the open file dialog

As with #230, we don't add the filter on OS X
due to Qt bugs not yet fixed.

See issue #266.

506804a... by Martin Kleusberg <email address hidden>

Merge pull request #260 from sqlitebrowser/qscintilla

Use Qscintilla instead of implementing our own code editor