Merge branch 'release/0.3.7' into develop

This commit is contained in:
Juan Miguel Boyero Corral 2011-04-14 20:19:40 +02:00
commit 1ec391aa7c
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();