mirror of
https://github.com/etesync/android
synced 2025-01-22 05:31:07 +00:00
version 0.3.5-alpha
enhancements: - don't show calendars/address books in account when no calendars/address books were added bug fixes: - select only events from correct calendar when querying (fixes #37) - ignore non-OK values in multi-status response (fixes #35) - fix wrong entries in setup calendar/addressbook selection - commit after every 100 resource downloads to avoid TransactionTooLargeException - don't delete resources without file name (fixes #33) - avoid crashes when content providers return null cursors - ignore invalid URLs (for instance, with spaces) in WebDAV multi-status responses
This commit is contained in:
parent
68bd43fe6a
commit
e3ba460991
@ -1,8 +1,8 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
package="at.bitfire.davdroid"
|
||||
android:versionCode="7"
|
||||
android:versionName="0.3.4-alpha" >
|
||||
android:versionCode="8"
|
||||
android:versionName="0.3.5-alpha" >
|
||||
|
||||
<uses-sdk
|
||||
android:minSdkVersion="14"
|
||||
|
@ -9,7 +9,7 @@ package at.bitfire.davdroid;
|
||||
|
||||
public class Constants {
|
||||
public static final String
|
||||
APP_VERSION = "0.3.4-alpha",
|
||||
APP_VERSION = "0.3.5-alpha",
|
||||
|
||||
ACCOUNT_TYPE = "bitfire.at.davdroid",
|
||||
|
||||
|
@ -1,7 +1,6 @@
|
||||
package at.bitfire.davdroid.syncadapter;
|
||||
|
||||
import java.io.IOException;
|
||||
import java.net.URISyntaxException;
|
||||
import java.util.Map;
|
||||
|
||||
import org.apache.http.HttpException;
|
||||
@ -18,7 +17,6 @@ import android.content.SyncResult;
|
||||
import android.os.Bundle;
|
||||
import android.os.RemoteException;
|
||||
import android.util.Log;
|
||||
import at.bitfire.davdroid.resource.IncapableResourceException;
|
||||
import at.bitfire.davdroid.resource.LocalCollection;
|
||||
import at.bitfire.davdroid.resource.RemoteCollection;
|
||||
import at.bitfire.davdroid.webdav.InvalidDavResponseException;
|
||||
|
Loading…
Reference in New Issue
Block a user