Bumped version

This commit is contained in:
Juan Miguel Boyero Corral 2011-12-09 14:36:40 +01:00
parent a4f5489c04
commit 5f06a7a1df
3 changed files with 12 additions and 4 deletions

View File

@ -1,3 +1,11 @@
## 0.6.2 (2011-12-09)
* Added Blog URL to preferences screen
* Added Catalan language by Francisco Manuel Herrero Pérez
* Updated ksoap2-android library
* Reinitialized last course selected on database cleaning
* Minor changes on error messages
## 0.6.1 (2011-11-16)
* Added Google+ account to preferences screen

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:versionName="0.6.1" android:versionCode="27">
android:installLocation="auto" android:versionName="0.6.2" android:versionCode="28">
<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

@ -220,15 +220,15 @@ public class NotificationsCursorAdapter extends CursorAdapter {
viewType = String.valueOf(eventType.getText());
marksType = ctx.getString(R.string.marksFile);
if(viewType.equals(marksType)) {
/*if(viewType.equals(marksType)) {
TextView content = (TextView) view.findViewById(R.id.eventText);
Intent activity = new Intent(ctx.getApplicationContext(), Marks.class);
activity.putExtra("content", content.getText().toString());
ctx.startActivity(activity);
} else {
} else {*/
contentVisible[position] = !contentVisible[position];
this.notifyDataSetChanged();
}
//}
}
}