Skip to content

Commit

Permalink
Up to 1.6.6
Browse files Browse the repository at this point in the history
* Up SQLite to 3.37.2
* Custom scalar functions
* Fix issues #86, #88, #89, #90, #91, #93, #95
* Fix minor bugs
  • Loading branch information
little-brother committed Feb 10, 2022
1 parent b0e9e2d commit 4fc76d2
Show file tree
Hide file tree
Showing 17 changed files with 965 additions and 288 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -8,3 +8,4 @@ http-debug.txt
sqlite-gui.depend
sqlite-gui.layout
ToDo.txt
build.bat
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ Small, simple, powerfull, fast, free.
* [Charts](https://github.com/little-brother/sqlite-gui/wiki#charts)
* [Query parameters](https://github.com/little-brother/sqlite-gui/wiki#query-parameters)
* [Query shortcuts](https://github.com/little-brother/sqlite-gui/wiki#query-shortcuts)
* [Custom functions](https://github.com/little-brother/sqlite-gui/wiki#custom-functions)
* Data generator
* [Extension pack](https://github.com/little-brother/sqlite-gui/wiki#extensions)
* [Built-in REST API web server](https://github.com/little-brother/sqlite-gui/wiki#rest-api-web-server)
Expand Down
120 changes: 82 additions & 38 deletions include/sqlite3.c

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions include/sqlite3.h
Original file line number Diff line number Diff line change
Expand Up @@ -146,9 +146,9 @@ extern "C" {
** [sqlite3_libversion_number()], [sqlite3_sourceid()],
** [sqlite_version()] and [sqlite_source_id()].
*/
#define SQLITE_VERSION "3.37.0"
#define SQLITE_VERSION_NUMBER 3037000
#define SQLITE_SOURCE_ID "2021-11-27 14:13:22 bd41822c7424d393a30e92ff6cb254d25c26769889c1499a18a0b9339f5d6c8a"
#define SQLITE_VERSION "3.37.2"
#define SQLITE_VERSION_NUMBER 3037002
#define SQLITE_SOURCE_ID "2022-01-06 13:25:41 872ba256cbf61d9290b571c0e6d82a20c224ca3ad82971edc46b29818d5d17a0"

/*
** CAPI3REF: Run-Time Library Version Numbers
Expand Down
Binary file modified lib/x32/libsqlite3.a
Binary file not shown.
Binary file modified lib/x64/libsqlite3.a
Binary file not shown.
Binary file added resources/toolbar_functions.bmp
Binary file not shown.
32 changes: 4 additions & 28 deletions sqlite-gui.cbp
Original file line number Diff line number Diff line change
Expand Up @@ -4,18 +4,17 @@
<Project>
<Option title="sqlite-gui" />
<Option pch_mode="2" />
<Option compiler="gcc" />
<Option compiler="mingw64_x32" />
<Build>
<Target title="Debug">
<Option output="bin/Debug/sqlite-gui" prefix_auto="1" extension_auto="1" />
<Option object_output="obj/Debug/" />
<Option type="1" />
<Option compiler="gcc" />
<Option compiler="mingw64_x32" />
<Compiler>
<Add option="-std=c++11" />
<Add option="-g" />
<Add option="-U__STRICT_ANSI__" />
<Add option="-D_WIN32_WINNT=0x0501" />
<Add directory="include" />
</Compiler>
<Linker>
Expand All @@ -26,13 +25,12 @@
<Option output="bin/Release/sqlite-gui" prefix_auto="1" extension_auto="1" />
<Option object_output="obj/Release/" />
<Option type="0" />
<Option compiler="gcc" />
<Option compiler="mingw64_x32" />
<Compiler>
<Add option="-Os" />
<Add option="-std=c++11" />
<Add option="-m32" />
<Add option="-U__STRICT_ANSI__" />
<Add option="-D_WIN32_WINNT=0x0501" />
<Add directory="include" />
</Compiler>
<Linker>
Expand All @@ -53,7 +51,6 @@
<Add option="-std=c++11" />
<Add option="-m64" />
<Add option="-U__STRICT_ANSI__" />
<Add option="-D_WIN32_WINNT=0x0501" />
<Add directory="include" />
</Compiler>
<Linker>
Expand All @@ -63,34 +60,14 @@
<Add library="lib/x64/libsqlite3.a" />
</Linker>
</Target>
<Target title="Release32">
<Option output="bin/Release32/sqlite-gui" prefix_auto="1" extension_auto="1" />
<Option object_output="obj/Release32/" />
<Option type="0" />
<Option compiler="mingw64_x32" />
<Compiler>
<Add option="-Os" />
<Add option="-std=c++11" />
<Add option="-m32" />
<Add option="-U__STRICT_ANSI__" />
<Add option="-D_WIN32_WINNT=0x0501" />
<Add directory="include" />
</Compiler>
<Linker>
<Add option="-s" />
<Add option="-static-libstdc++" />
<Add option="-static" />
<Add option="-m32" />
<Add library="lib/x32/libsqlite3.a" />
</Linker>
</Target>
</Build>
<Compiler>
<Add option="-Wall" />
<Add option="-std=c++11" />
<Add option="-m32" />
<Add option="-DUNICODE" />
<Add option="-D_UNICODE" />
<Add option="-D_WIN32_WINNT=0x0501" />
</Compiler>
<Linker>
<Add option="-static" />
Expand All @@ -115,7 +92,6 @@
<Unit filename="src/http.cpp" />
<Unit filename="src/http.h" />
<Unit filename="src/main.cpp" />
<Unit filename="src/missing.h" />
<Unit filename="src/prefs.cpp" />
<Unit filename="src/prefs.h" />
<Unit filename="src/resource.h" />
Expand Down
Loading

0 comments on commit 4fc76d2

Please sign in to comment.