From 9442a41713f3946994dd44b524a7f80b8a227443 Mon Sep 17 00:00:00 2001 From: Johan Mattsson Date: Sun, 11 Jul 2021 20:18:29 +0200 Subject: [PATCH] Fix SVG parser (vectornator) --- libbirdfont/SvgParser.vala | 1 + scripts/release.sh | 2 +- scripts/version.py | 2 +- 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/libbirdfont/SvgParser.vala b/libbirdfont/SvgParser.vala index 842a6c50..2311dfb1 100644 --- a/libbirdfont/SvgParser.vala +++ b/libbirdfont/SvgParser.vala @@ -1013,6 +1013,7 @@ public class SvgParser { data = data.replace ("\t", " "); data = data.replace ("\r\n", " "); data = data.replace ("\n", " "); + data = data.replace ("+", " "); // use only a single space as separator while (data.index_of (" ") > -1) { diff --git a/scripts/release.sh b/scripts/release.sh index 5c0277eb..2516dcd6 100755 --- a/scripts/release.sh +++ b/scripts/release.sh @@ -37,7 +37,7 @@ if [ $? -ne 0 ] ; then exit 1 fi -echo "Creating a release fo version $version" +echo "Creating a release for version $version" if [ $# -ne 0 -a $# -ne 2 ] ; then echo "Usage: $0 branch version" diff --git a/scripts/version.py b/scripts/version.py index 5c99831f..3a025edc 100644 --- a/scripts/version.py +++ b/scripts/version.py @@ -13,7 +13,7 @@ Lesser General Public License for more details. """ -VERSION = '2.29.4' +VERSION = '2.29.5' SO_VERSION_MAJOR = '36' SO_VERSION_MINOR = '0' SO_VERSION = SO_VERSION_MAJOR + '.' + SO_VERSION_MINOR