Bumped version

git-svn-id: https://forja.rediris.es/svn/cusl6-swadroid/trunk@142 5bc14d19-1e4b-4ba2-aa50-860af135f48c
This commit is contained in:
Juan Miguel Boyero Corral 2011-11-22 22:12:53 +00:00
parent f695c1c4c7
commit 19fd0758e5
3 changed files with 6 additions and 2 deletions

View File

@ -1,3 +1,7 @@
## 0.3.7 (2011-04-14)
* Fixed notifications bug in surname
## 0.3.6 (2011-04-13)
* Added notification details

View File

@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="es.ugr.swad.swadroid"
android:installLocation="auto" android:versionCode="12" android:versionName="0.3.6">
android:installLocation="auto" android:versionCode="13" android:versionName="0.3.7">
<application android:label="@string/app_name" android:icon="@drawable/ic_launcher_swadroid" android:debuggable="true">
<activity android:name=".SWADMain"
android:label="@string/app_name"

View File

@ -307,7 +307,7 @@ public class SWADMain extends ExpandableListActivity {
if(lastVersion == 0) {
showConfigurationDialog();
prefs.setLastVersion(currentVersion);
} else if(currentVersion > lastVersion) {
} else if(lastVersion < 11) {
dbHelper.emptyTable(Global.DB_TABLE_NOTIFICATIONS);
prefs.setLastVersion(currentVersion);
showUpgradeDialog();