diff --git a/build.gradle b/build.gradle index 49cbd7174..28fa29163 100644 --- a/build.gradle +++ b/build.gradle @@ -39,7 +39,7 @@ allprojects { ext { androidApplicationId = 'org.cryptomator' androidVersionCode = getVersionCode() - androidVersionName = '1.7.0' + androidVersionName = '1.7.1' } repositories { mavenCentral() diff --git a/data/src/main/java/org/cryptomator/data/cloud/onedrive/OnedriveImpl.kt b/data/src/main/java/org/cryptomator/data/cloud/onedrive/OnedriveImpl.kt index b77eab342..0be2c2af8 100644 --- a/data/src/main/java/org/cryptomator/data/cloud/onedrive/OnedriveImpl.kt +++ b/data/src/main/java/org/cryptomator/data/cloud/onedrive/OnedriveImpl.kt @@ -1,7 +1,6 @@ package org.cryptomator.data.cloud.onedrive import android.content.Context -import android.net.Uri import com.microsoft.graph.http.GraphServiceException import com.microsoft.graph.models.DriveItem import com.microsoft.graph.models.DriveItemCreateUploadSessionParameterSet @@ -86,7 +85,7 @@ internal class OnedriveImpl(cloud: OnedriveCloud, context: Context, graphService private fun childByName(parentId: String, parentDriveId: String, name: String): DriveItem? { return try { - drive(parentDriveId).items(parentId).itemWithPath(Uri.encode(name)).buildRequest().get() + drive(parentDriveId).items(parentId).itemWithPath(name).buildRequest().get() } catch (e: GraphServiceException) { if (isNotFoundError(e)) { null diff --git a/fastlane/metadata/android/de-DE/changelogs/default.txt b/fastlane/metadata/android/de-DE/changelogs/default.txt index 7e9ce8c07..4d9f3432d 100644 --- a/fastlane/metadata/android/de-DE/changelogs/default.txt +++ b/fastlane/metadata/android/de-DE/changelogs/default.txt @@ -1,6 +1 @@ -- Unterstützung für mehrere OneDrive-Konten hinzugefügt -- Zugriff auf Tresore, die sich in "Shared with Me", "My Computer" und "My Drive" von Google Drive befinden, wurde mit Hilfe von Shortcuts hinzugefügt -- Viele Übersetzungen hinzugefügt -- Verbesserte Suchfunktion, nun wird eine "enthält"-Suche anstelle von "beginnt mit" verwendet -- Absturz auf einigen Geräten während des Entsperrens aufgrund einer Keystore-Ausnahme behoben -- Problem beim Löschen einer Cloud behoben \ No newline at end of file +- Problem behoben, bei dem ein "Tresor nicht gefunden"-Dialog beim Entsperren mit OneDrive angezeigt wird, wenn er ein Leerzeichen im Namen enthält \ No newline at end of file diff --git a/fastlane/metadata/android/en-US/changelogs/default.txt b/fastlane/metadata/android/en-US/changelogs/default.txt index 5a29c08bb..bc4d458a8 100644 --- a/fastlane/metadata/android/en-US/changelogs/default.txt +++ b/fastlane/metadata/android/en-US/changelogs/default.txt @@ -1,6 +1 @@ -- Added support for multiple OneDrive accounts -- Added access to vaults located in "Shared with Me", "My Computer" and "My Drive" of Google Drive using shortcuts -- Added a lot of translations -- Improved search functionality, now a "contains" search is used instead of "starts with" -- Fixed crash on some devices during unlock due to keystore exception -- Fixed problem during deletion of a cloud \ No newline at end of file +- Fixed a problem where a "Vault not found" dialog is shown during unlock with OneDrive cloud if the vault contains a blank character \ No newline at end of file diff --git a/fastlane/release-notes.html b/fastlane/release-notes.html index 2a6b198a1..3008487d3 100644 --- a/fastlane/release-notes.html +++ b/fastlane/release-notes.html @@ -1,8 +1,3 @@