Compare commits
2 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 3fb2504ef8 | |||
| be267f64e7 |
@@ -1,3 +1,9 @@
|
|||||||
|
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,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.
|
||||||
|
|||||||
@@ -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.3
|
||||||
|
|
||||||
function print_config {
|
function print_config {
|
||||||
echo "engine: $engine"
|
echo "engine: $engine"
|
||||||
|
|||||||
+3
-1
@@ -8,7 +8,9 @@ function SQL_addquotes {
|
|||||||
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
|
||||||
|
|||||||
+2
-2
@@ -1,5 +1,5 @@
|
|||||||
.Dd $Mdocdate: July 26 2026 $
|
.Dd $Mdocdate: May 9 2026 $
|
||||||
.Dt BBLOG 2.3.1
|
.Dt BBLOG 2.3.3
|
||||||
.Os
|
.Os
|
||||||
.Sh NAME
|
.Sh NAME
|
||||||
.Nm BBlog
|
.Nm BBlog
|
||||||
|
|||||||
Reference in New Issue
Block a user