diff --git a/ChangeLog b/ChangeLog index dd432ac90..033dd007d 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,4 +1,4 @@ -===== 1.1.0 (??? ??, 2011) ===== +===== 1.1.0 (Jun ??, 2011) ===== * Text selection * Localization to Traditional Chinese (by Fung.T) diff --git a/scripts/packageTool.sh b/scripts/packageTool.sh index 066e93fdb..e9353e63d 100755 --- a/scripts/packageTool.sh +++ b/scripts/packageTool.sh @@ -19,7 +19,7 @@ updateVersion() { if [ "$micro" == "" ]; then micro=0 fi - intversion=$((10000*$major+100*$minor+$micro+2)) + intversion=$((10000*$major+100*$minor+$micro)) sed "s/@INTVERSION@/$intversion/" AndroidManifest.xml.pattern | sed "s/@VERSION@/$version/" > AndroidManifest.xml }