3 Commits
Author SHA1 Message Date
ianjauslin ccf475d3f5 Update to 2.3.4:
Fix: Compatibility with sqlite3 version >= 3.52.0 when using '-o appearance'
2026-07-28 18:33:37 -04:00
ianjauslin 3fb2504ef8 Update to v2.3.3:
Fix: Remove extraneous print (used for debugging)
2026-05-09 00:23:55 -04:00
ianjauslin be267f64e7 Update to 2.3.2:
Fix: Do not fail when a sqlite entry is empty
2026-05-09 00:09:07 -04:00
5 changed files with 18 additions and 7 deletions
+9
View File
@@ -1,3 +1,12 @@
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)
2.3.2:
* Fix: Do not fail when a sqlite entry is empty
2.3.1: 2.3.1:
* Fix: Compatibility with sqlite3 version >= 3.52.0 * Fix: Compatibility with sqlite3 version >= 3.52.0
+1 -1
View File
@@ -1,4 +1,4 @@
## Copyright Ian Jauslin 2015-2023 ## Copyright Ian Jauslin 2015-2026
## ##
## Licensed under the Apache License, Version 2.0 (the "License"); ## Licensed under the Apache License, Version 2.0 (the "License");
## you may not use this file except in compliance with the License. ## you may not use this file except in compliance with the License.
+1 -1
View File
@@ -18,7 +18,7 @@
enginedir=/home/ian/Programs/BBlog2/src/engines enginedir=/home/ian/Programs/BBlog2/src/engines
# version # version
version=2.3.1 version=2.3.4
function print_config { function print_config {
echo "engine: $engine" echo "engine: $engine"
+5 -3
View File
@@ -7,8 +7,10 @@ function SQL_addquotes {
# add quotes and escape string # add quotes and escape string
if [ -n "$line" ]; then if [ -n "$line" ]; then
line=$(escape_string "$line") line=$(escape_string "$line")
line="${line/ = /=\"}" line="${line/ =/=\"}"
line="${line/%/\"}" # remove extra space
line="${line/=\" /=\"}"
line="$line\""
fi fi
echo "$line" echo "$line"
done done
@@ -108,7 +110,7 @@ function fetch_BBlog_entries_appearance {
if [ "$foundit" = 0 ]; then if [ "$foundit" = 0 ]; then
SQL="$base_SQL_noprauth WHERE citeref='$citeref'" SQL="$base_SQL_noprauth WHERE citeref='$citeref'"
sqlite3 -line "$db" "$SQL" | SQL_addquotes sqlite3 "$db" ".mode line --colsep ' = '" "$SQL" | SQL_addquotes
else else
echo "citeref=$citeref" echo "citeref=$citeref"
fi fi
+2 -2
View File
@@ -1,5 +1,5 @@
.Dd $Mdocdate: July 26 2026 $ .Dd $Mdocdate: July 28 2026 $
.Dt BBLOG 2.3.1 .Dt BBLOG 2.3.4
.Os .Os
.Sh NAME .Sh NAME
.Nm BBlog .Nm BBlog