Bumped version

git-svn-id: https://forja.rediris.es/svn/cusl6-swadroid/trunk@153 5bc14d19-1e4b-4ba2-aa50-860af135f48c
This commit is contained in:
Juan Miguel Boyero Corral 2011-11-22 22:14:26 +00:00
parent e8f211184a
commit 97bf748c65
3 changed files with 12 additions and 7 deletions

View File

@ -1,6 +1,10 @@
## 0.3.9 (2011-05-03)
* Fixed empty fields bug on notifications module
## 0.3.8 (2011-04-27)
* Fixed bug on cleaning old notifications.
* Fixed bug on cleaning old notifications
## 0.3.7 (2011-04-14)

View File

@ -30,9 +30,9 @@ Copyright (C) 2010, Juan Miguel Boyero Corral
it under the same terms as [GPLv3][gplv3] license.
[![Copyright and License](http://www.gnu.org/graphics/lgplv3-88x31.png)][lgplv3]
SWADroid uses [Android DataFrameWork][androiddataframework-library] library developed by [Javier Pérez Pacheco][androiddataframework-author] licensed under [LGPLv3][lgplv3].
SWADroid uses [Android DataFrameWork][androiddataframework-library] library developed by [Javier Pérez Pacheco][androiddataframework-author] and licensed under [LGPLv3][lgplv3].
SWADroid uses [ksoap2-android][ksoap2-library] library developed by [Manfred Moser][ksoap2-author] licensed under [MIT][mit].
SWADroid uses [ksoap2-android][ksoap2-library] library developed by [Manfred Moser][ksoap2-author] and licensed under [MIT][mit].
## Contributing

View File

@ -38,6 +38,7 @@ import android.view.View;
import android.widget.ExpandableListView;
import android.widget.ImageView;
import android.widget.TextView;
import android.widget.Toast;
import es.ugr.swad.swadroid.model.DataBaseHelper;
import es.ugr.swad.swadroid.modules.notifications.Notifications;
import es.ugr.swad.swadroid.modules.tests.Tests;
@ -174,10 +175,10 @@ public class SWADMain extends ExpandableListActivity {
startActivityForResult(activity, Global.NOTIFICATIONS_REQUEST_CODE);
} else if(keyword.equals(getString(R.string.testsModuleLabel))) {
activity = new Intent(getBaseContext(), Tests.class);
startActivityForResult(activity, Global.TESTS_REQUEST_CODE);
/*Toast.makeText(this, keyword + " aún no implementado", Toast.LENGTH_LONG)
.show();*/
/*activity = new Intent(getBaseContext(), Tests.class);
startActivityForResult(activity, Global.TESTS_REQUEST_CODE);*/
Toast.makeText(this, keyword + " aún no implementado", Toast.LENGTH_LONG)
.show();
}
return true;