diff --git a/Changelog b/Changelog index ebf398b..b1eab53 100644 --- a/Changelog +++ b/Changelog @@ -1,3 +1,6 @@ +2.3.4: + * Fix: Compatibility with sqlite3 version >= 3.52.0 when using '-o appearance' + 2.3.3: * Fix: Remove extraneous print (used for debugging) diff --git a/bin/BBlog b/bin/BBlog index 587e175..c0694bf 100755 --- a/bin/BBlog +++ b/bin/BBlog @@ -18,7 +18,7 @@ enginedir=/home/ian/Programs/BBlog2/src/engines # version -version=2.3.3 +version=2.3.4 function print_config { echo "engine: $engine" diff --git a/engines/sqlite.sh b/engines/sqlite.sh index abe5109..cbf3cb7 100644 --- a/engines/sqlite.sh +++ b/engines/sqlite.sh @@ -110,7 +110,7 @@ function fetch_BBlog_entries_appearance { if [ "$foundit" = 0 ]; then SQL="$base_SQL_noprauth WHERE citeref='$citeref'" - sqlite3 -line "$db" "$SQL" | SQL_addquotes + sqlite3 "$db" ".mode line --colsep ' = '" "$SQL" | SQL_addquotes else echo "citeref=$citeref" fi diff --git a/man/man1/BBlog.1 b/man/man1/BBlog.1 index 80fba35..838c411 100644 --- a/man/man1/BBlog.1 +++ b/man/man1/BBlog.1 @@ -1,5 +1,5 @@ -.Dd $Mdocdate: May 9 2026 $ -.Dt BBLOG 2.3.3 +.Dd $Mdocdate: July 28 2026 $ +.Dt BBLOG 2.3.4 .Os .Sh NAME .Nm BBlog