1
0
Fork 0
mirror of https://github.com/geometer/FBReaderJ.git synced 2025-10-05 02:39:23 +02:00

VERSION => 2.2 beta

This commit is contained in:
Nikolay Pultsin 2014-10-11 17:22:41 +02:00
parent 1eb0fb96fd
commit 237e3b191e
3 changed files with 16 additions and 10 deletions

View file

@ -25,11 +25,13 @@ updateVersion() {
variant=1
;;
esac
major=`echo $version | cut -d . -f 1`
minor=`echo $version | cut -d . -f 2`
micro=`echo $version | cut -d . -f 3`
local=`echo $version | cut -d . -f 4`
fixed=`echo $version | sed "s/ beta.*//"`
major=`echo $fixed | cut -d . -f 1`
minor=`echo $fixed | cut -d . -f 2`
micro=`echo $fixed | cut -d . -f 3`
local=`echo $fixed | cut -d . -f 4`
if [ "$branch" == "nook" ]; then
version=$version-nst
elif [ "$branch" == "kindle" ]; then
@ -37,10 +39,14 @@ updateVersion() {
fi
if [ "$micro" == "" ]; then
micro=0
micro=0
fi
if [ "$version" != "$fixed" ]; then
minor=$(($minor - 1))
micro=$(($micro + 50))
fi
if [ "$local" == "" ]; then
local=0
local=0
fi
intversion=$((1000000*$major+10000*$minor+100*$micro+10*$variant+$local))
sed "s/@INTVERSION@/$intversion/" AndroidManifest.xml.pattern | sed "s/@VERSION@/$version/" > AndroidManifest.xml