Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
## Purpose:
Make installing, and using SQLite with V as easy and unified as
Make installing, and using SQLite with V as easy and unified as
possible on *every platform*, including Windows.

## Description:
Expand All @@ -12,5 +12,5 @@ high-reliability, full-featured, SQL database engine."
This project contains the amalgamated SQLite source, extracted with
the help of the `download.bat` and/or `download.sh` scripts.

The current version of the SQLite amalgamation is
https://www.sqlite.org/2022/sqlite-amalgamation-3380200.zip
The current version of the SQLite amalgamation is
https://sqlite.org/2025/sqlite-amalgamation-3510000.zip
12 changes: 6 additions & 6 deletions download.bat
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
curl -L https://www.sqlite.org/2024/sqlite-amalgamation-3450300.zip -o sqlite-amalgamation-3450300.zip
curl -L https://sqlite.org/2025/sqlite-amalgamation-3510000.zip -o sqlite-amalgamation-3510000.zip

unzip sqlite-amalgamation-3450300.zip
unzip sqlite-amalgamation-3510000.zip

del sqlite-amalgamation-3450300.zip
del sqlite-amalgamation-3450300\shell.c
del sqlite-amalgamation-3510000.zip
del sqlite-amalgamation-3510000.zip\shell.c

move /y sqlite-amalgamation-3450300\*.* .
rmdir /s /q sqlite-amalgamation-3450300
move /y sqlite-amalgamation-3510000.zip\*.* .
rmdir /s /q sqlite-amalgamation-3510000.zip

dir .
5 changes: 2 additions & 3 deletions download.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@

set -ve

AMALGAMA_NAME=sqlite-amalgamation-3450300
AMALGAMA_NAME=sqlite-amalgamation-3510000

curl -L https://www.sqlite.org/2024/$AMALGAMA_NAME.zip -o $AMALGAMA_NAME.zip
curl -L https://sqlite.org/2025/$AMALGAMA_NAME.zip -o $AMALGAMA_NAME.zip

unzip $AMALGAMA_NAME.zip

Expand All @@ -15,4 +15,3 @@ mv $AMALGAMA_NAME/* .
rm -rf $AMALGAMA_NAME/

ls -lart .

Loading