Bumped version

This commit is contained in:
Juan Miguel Boyero Corral 2011-04-14 20:19:18 +02:00
parent 644b1cc6ef
commit 92e69335c4
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) ## 0.3.6 (2011-04-13)
* Added notification details * Added notification details

View File

@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android" <manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="es.ugr.swad.swadroid" 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"> <application android:label="@string/app_name" android:icon="@drawable/ic_launcher_swadroid" android:debuggable="true">
<activity android:name=".SWADMain" <activity android:name=".SWADMain"
android:label="@string/app_name" android:label="@string/app_name"

View File

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