Bumped version

This commit is contained in:
Juan Miguel Boyero Corral 2013-11-24 18:53:22 +01:00
parent f46222a12f
commit 0d64639c9c
5 changed files with 49 additions and 4 deletions

View File

@ -1,3 +1,16 @@
##0.12.6 (2013-11-24)
* Added sending of "seen notifications" info to SWAD
* Added management of seen notifications
* Updated Notifications table and added "mark all notifications as read" feature
* Synchronized code from Notifications class to NotificationsSyncAdapterService class
* Remove ignored files
* Changed action bar background color to black
* Improved error management
* Fixed a bug on BugSense initialization
* Fixed automatic synchronization on application upgrade
* Fixed black background color when the notifications list is being pulled
##0.12.5 (2013-11-10)
* Fixed incorrect layout and NullPointerException in message replys

View File

@ -2,8 +2,8 @@
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="es.ugr.swad.swadroid"
android:installLocation="auto"
android:versionCode="55"
android:versionName="0.12.5">
android:versionCode="56"
android:versionName="0.12.6">
<uses-permission android:name="android.permission.INTERNET"/>
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>

View File

@ -15,6 +15,22 @@
</head>
<body bgcolor="white">
<h4>0.12.6 (2013-11-24)</h4>
<ul>
<lh class="new">[NOVEDADES]</lh>
<li type="disc">A&ntilde;adido control de las notificaciones vistas</li>
<li type="disc">A&ntilde;adido env&iacute;o de la informaci&oacute;n de las notificaciones vistas a SWAD</li>
<li type="disc">A&ntilde;adida funci&oacute;n para marcar todas las notificaciones como vistas</li>
</ul>
<ul>
<lh class="update">[ACTUALIZACIONES]</lh>
<li type="disc">Cambiado el color de la barra de t&iacute;tulo a negro</li>
</ul>
<ul>
<lh class="fix">[CORRECCIONES]</lh>
<li type="disc">Corregida la configuraci&oacute;n de la sincronizaci&oacute;n autom&aacute;tica al actualizar la aplicaci&oacute;n</li>
<li type="disc">Corregido color de fondo negro al deslizar el listado de notificaciones</li>
</ul>
<h4>0.12.5 (2013-11-10)</h4>
<ul>
<lh class="fix">[CORRECCIONES]</lh>

View File

@ -15,6 +15,22 @@
</head>
<body bgcolor="white">
<h4>0.12.6 (2013-11-24)</h4>
<ul>
<lh class="new">[NEW]</lh>
<li type="disc">Added management of seen notifications</li>
<li type="disc">Added sending of seen notifications info to SWAD</li>
<li type="disc">Added mark all notifications as read feature</li>
</ul>
<ul>
<lh class="update">[UPDATES]</lh>
<li type="disc">Changed action bar background color to black</li>
</ul>
<ul>
<lh class="fix">[FIXES]</lh>
<li type="disc">Fixed automatic synchronization on application upgrade</li>
<li type="disc">Fixed black background color when the notifications list is being pulled</li>
</ul>
<h4>0.12.5 (2013-11-10)</h4>
<ul>
<lh class="fix">[FIXES]</lh>

View File

@ -609,10 +609,10 @@ public class SWADMain extends MenuExpandableListActivity {
map.put(IMAGE, getResources().getDrawable(R.drawable.folder_users));
courseData.add(map);
//Introduction category
map = new HashMap<String, Object>();
/*map = new HashMap<String, Object>();
map.put(NAME, getString(R.string.introductionModuleLabel));
map.put(IMAGE, getResources().getDrawable(R.drawable.notif));
courseData.add(map);
courseData.add(map);*/
//Evaluation category
map = new HashMap<String, Object>();