Skip to content

Commit

Permalink
Fix SVG parser (vectornator)
Browse files Browse the repository at this point in the history
  • Loading branch information
johanmattssonm committed Jul 11, 2021
1 parent 4ea517a commit 9442a41
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions libbirdfont/SvgParser.vala
Expand Up @@ -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) {
Expand Down
2 changes: 1 addition & 1 deletion scripts/release.sh
Expand Up @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion scripts/version.py
Expand Up @@ -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
Expand Down

0 comments on commit 9442a41

Please sign in to comment.