Skip to content

Commit 850f412

Browse files
committed
Version 4.1.1
1 parent eef702b commit 850f412

File tree

2 files changed

+11
-5
lines changed

2 files changed

+11
-5
lines changed

CHANGELOG

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,10 @@
11
Summary of Changes
2+
Version 4.1.1 Changes Below
3+
* Fix file name for debug movies
4+
* Fix image saving when using highres option
5+
* Add error checking of jpeg decompression.
6+
* Fix version script for old distributions.
7+
* Fix building on musl based systems.
28
Version 4.1 Changes Below
39
* Add flip_axis option
410
* Add mask_privacy option

version.sh

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#!/bin/sh
2-
BASE_VERSION="4.1"
2+
BASE_VERSION="4.1.1"
33
if [ -d .git ]; then
44
if test "`git diff --name-only`" = "" ; then
55
GIT_COMMIT="git"
@@ -10,9 +10,9 @@ if [ -d .git ]; then
1010
if [ $? -ne 0 ]; then
1111
GIT_COMMIT=$GIT_COMMIT`git show -s --format=%h`
1212
fi
13-
#printf "$BASE_VERSION"
14-
printf "$BASE_VERSION+$GIT_COMMIT"
13+
printf "$BASE_VERSION"
14+
#printf "$BASE_VERSION+$GIT_COMMIT"
1515
else
16-
#printf "$BASE_VERSION"
17-
printf "$BASE_VERSION+gitUNKNOWN"
16+
printf "$BASE_VERSION"
17+
#printf "$BASE_VERSION+gitUNKNOWN"
1818
fi

0 commit comments

Comments
 (0)