Skip to content

Commit

Permalink
Prepare release of version 1.4.4
Browse files Browse the repository at this point in the history
- Added ZLIB dependent extensions COMPRESS, SQLAR, and ZIPFILE
- Added source code for the SQLite TCL interface
- Updated copyright years in resource files
  • Loading branch information
utelle committed May 16, 2022
1 parent 5068c89 commit f073845
Show file tree
Hide file tree
Showing 5 changed files with 4,058 additions and 6 deletions.
2 changes: 1 addition & 1 deletion src/compress.c
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ static void uncompressFunc(
unsigned int nIn;
unsigned long int nOut;
int rc;
int i;
unsigned int i;

pIn = sqlite3_value_blob(argv[0]);
nIn = sqlite3_value_bytes(argv[0]);
Expand Down
5 changes: 2 additions & 3 deletions src/sqlite3mc.c
Original file line number Diff line number Diff line change
Expand Up @@ -483,9 +483,8 @@ sqlite3mc_shutdown(void)
}

/*
** TCL/TK Shell
** TCL/TK Extension and/or Shell
*/
#ifdef TCLSH
#define BUILD_tcl
#ifdef SQLITE_ENABLE_TCL
#include "tclsqlite.c"
#endif
2 changes: 1 addition & 1 deletion src/sqlite3mc.rc
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ BEGIN
VALUE "FileDescription", "SQLite3 Multiple Ciphers Database Library"
VALUE "FileVersion", SQLITE3MC_FILE_VERSION_NUM_DOT_STRING
VALUE "InternalName", "sqlite3mc.dll"
VALUE "LegalCopyright", "Copyright (C) 2019-2020, Ulrich Telle"
VALUE "LegalCopyright", "Copyright (C) 2019-2022, Ulrich Telle"
VALUE "OriginalFilename", "sqlite3mc.dll"
VALUE "ProductName", "SQLite3 Multiple Ciphers"
VALUE "ProductVersion", SQLITE3MC_PROD_VERSION_NUM_DOT_STRING
Expand Down
2 changes: 1 addition & 1 deletion src/sqlite3mc_shell.rc
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ BEGIN
VALUE "FileDescription", "SQLite3 Multiple Ciphers Database Shell"
VALUE "FileVersion", SQLITE3MC_FILE_VERSION_NUM_DOT_STRING
VALUE "InternalName", "sqlite3mc_shell.exe"
VALUE "LegalCopyright", "Copyright (C) 2019-2020, Ulrich Telle"
VALUE "LegalCopyright", "Copyright (C) 2019-2022, Ulrich Telle"
VALUE "OriginalFilename", "sqlite3mc_shell.exe"
VALUE "ProductName", "SQLite3 Multiple Ciphers"
VALUE "ProductVersion", SQLITE3MC_PROD_VERSION_NUM_DOT_STRING
Expand Down
Loading

0 comments on commit f073845

Please sign in to comment.