Bumped version

This commit is contained in:
Juan Miguel Boyero Corral 2012-05-01 17:51:46 +02:00
parent 61387ee6e8
commit cdd8195e81
4 changed files with 27 additions and 3 deletions

View File

@ -1,3 +1,22 @@
## 0.8 (2012-05-01)
* Added automatic synchronization of notifications
* Added server URL configuration in preferences
* Added notices publishingAdded function to publish new notices (yellow notes) (only teachers)
* Integrated new SWAD roles system
* Adapted all Modules to work with a global actual course
* Improved visualization of notifications
* Integrated ZXing library for attendance module
* Added error handler for all modules
* Added rotating refresh image when updating notifications
* Updated ksoap2-android library
* Updated minimum SDK version to 7 (Android 2.1)
* Updated Market link
* Fixed date and time format
* Fixed uninplemented method error isEmpty() on earlier API versions
* Fixed HTML bug in location field of notifications
* Fixed br tag bug in notifications
## 0.7.2 (2012-02-22)
* Added notification alerts on status bar

View File

@ -39,6 +39,11 @@ SWADroid uses [ksoap2-android][ksoap2-library] library developed by [Manfred Mos
[![Copyright and License](http://www.apache.org/images/feather-small.gif)][apache2]
SWADroid uses [ZXing][zxing-library] library developed by [Sean Owen][zxing-author] and licensed under [Apache License 2.0][apache2]
## Contributors
* Helena Rodríguez Gijón
* Antonio Aguilera Malagón
## Contributing
SWADroid is an open source project. I encourage contributions.

Binary file not shown.

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="32"
android:versionName="0.7.2" >
android:versionCode="33"
android:versionName="0.8" >
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
@ -13,7 +13,7 @@
<uses-permission android:name="android.permission.AUTHENTICATE_ACCOUNTS" />
<uses-permission android:name="android.permission.READ_SYNC_SETTINGS" />
<uses-permission android:name="android.permission.WRITE_SYNC_SETTINGS" />
<uses-permission android:name="android.permission.CAMERA" />
<!-- <uses-permission android:name="android.permission.CAMERA" /> -->
<uses-sdk
android:minSdkVersion="7"