1
0
Fork 0
mirror of https://github.com/geometer/FBReaderJ.git synced 2025-10-03 09:49:19 +02:00

next version will be 1.0 :)

This commit is contained in:
Nikolay Pultsin 2011-03-19 20:02:11 +00:00
parent 451c7339ad
commit 76baa5f9e9
4 changed files with 4 additions and 4 deletions

View file

@ -15,7 +15,7 @@ fi
updateVersion() {
major=`echo $version | cut -d . -f 1`
minor=`echo $version | cut -d . -f 2`
micro=`echo $version | cut -d . -f 3`
micro=0`echo $version | cut -d . -f 3`
intversion=$((10000*$major+100*$minor+$micro))
sed "s/@INTVERSION@/$intversion/" AndroidManifest.xml.pattern | sed "s/@VERSION@/$version/" > AndroidManifest.xml
}