Merge branch 'hotfix/1.7.1'

This commit is contained in:
Julian Raufelder 2022-03-04 16:14:40 +01:00
commit 360af85d33
No known key found for this signature in database
GPG Key ID: 17EE71F6634E381D
5 changed files with 5 additions and 21 deletions
build.gradle
data/src/main/java/org/cryptomator/data/cloud/onedrive
fastlane
metadata/android
de-DE/changelogs
en-US/changelogs
release-notes.html

@ -39,7 +39,7 @@ allprojects {
ext {
androidApplicationId = 'org.cryptomator'
androidVersionCode = getVersionCode()
androidVersionName = '1.7.0'
androidVersionName = '1.7.1'
}
repositories {
mavenCentral()

@ -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

@ -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
- Problem behoben, bei dem ein "Tresor nicht gefunden"-Dialog beim Entsperren mit OneDrive angezeigt wird, wenn er ein Leerzeichen im Namen enthält

@ -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
- Fixed a problem where a "Vault not found" dialog is shown during unlock with OneDrive cloud if the vault contains a blank character

@ -1,8 +1,3 @@
<ul>
<li>Added support for multiple OneDrive accounts</li>
<li>Added access to vaults located in "Shared with Me", "My Computer" and "My Drive" of Google Drive using shortcuts</li>
<li>Added a lot of translations</li>
<li>Improved search functionality, now a "contains" search is used instead of "starts with"</li>
<li>Fixed crash on some devices during unlock due to keystore exception</li>
<li>Fixed problem during deletion of a cloud</li>
<li>Fixed a problem where a "Vault not found" dialog is shown during unlock with OneDrive cloud if the vault contains a blank character</li>
</ul>