1
0
Fork 0
mirror of https://github.com/geometer/FBReaderJ.git synced 2025-10-03 17:59:33 +02:00

cosmetical changes

This commit is contained in:
Nikolay Pultsin 2011-03-26 23:16:51 +00:00
parent 4ea38a40bb
commit 6ed36fdd6c
2 changed files with 5 additions and 2 deletions

View file

@ -2,4 +2,4 @@ DONE hyphenations are not changed after language changing in book info dialog
* scrolling: 4 directions
* scrolling: add 3D animation
DONE 'disable douple tapping' option
* float numbers as series index
DONE float numbers as series index

View file

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