-
-
Notifications
You must be signed in to change notification settings - Fork 128
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
28 changed files
with
240 additions
and
64 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,2 @@ | ||
- Fehlermeldungen, wenn ein Tresor nicht unterstützt wird, verbessert | ||
- Anzeigefehler, der beim Verschieben von Ordnern mit lokalem Speicher und direktem Zugriff auf diesen auftritt, behoben | ||
- Fehler, dass beim automatischen Hochladen aufgrund der Batterieoptimierung nicht immer alle Bilder erfasst werden, behoben | ||
- Das Hinzufügen und Erstellen von Tresoren über eine Verknüpfung zu "Meiner Ablage" aus einem Ordner im Bereich "Geteilte Laufwerke" behoben | ||
- Absturz der App auf einigen Geräten beim Betrachten von Bildern und Klicken auf den Bildschirm behoben |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,2 @@ | ||
- Improved error messages when a vault is not supported | ||
- Fixed moving folders with local storage shows an error when accessed directly | ||
- Fixed auto upload does not always upload all images automatically due to battery optimization | ||
- Fixed adding and creating vaults using a shortcut to "My Drive" from a folder in the "Shared Drives" location | ||
- Fixed app crash on some devices when browsing images and clicking the screen |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,4 @@ | ||
<ul> | ||
<li>Improved error messages when a vault is not supported</li> | ||
<li>Fixed moving folders with local storage shows an error when accessed directly</li> | ||
<li>Fixed auto upload does not always upload all images automatically due to battery optimization</li> | ||
<li>Fixed adding and creating vaults using a shortcut to "My Drive" from a folder in the "Shared Drives" location</li> | ||
<li>Fixed app crash on some devices when browsing images and clicking the screen</li> | ||
</ul> |
Binary file not shown.
Binary file not shown.
32 changes: 32 additions & 0 deletions
32
presentation/src/main/java/org/cryptomator/presentation/util/ViewPagerWorkaround.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
package org.cryptomator.presentation.util | ||
|
||
import android.content.Context | ||
import android.util.AttributeSet | ||
import android.view.MotionEvent | ||
import androidx.viewpager.widget.ViewPager | ||
|
||
/** | ||
* Workaround for https://github.com/cryptomator/android/issues/429 | ||
* Source https://github.com/Baseflow/PhotoView/issues/31#issuecomment-19803926 | ||
*/ | ||
class ViewPagerWorkaround : ViewPager { | ||
|
||
constructor(context: Context) : super(context) | ||
constructor(context: Context, attrs: AttributeSet?) : super(context, attrs) | ||
|
||
override fun onTouchEvent(ev: MotionEvent?): Boolean { | ||
return try { | ||
super.onTouchEvent(ev) | ||
} catch (ex: IllegalArgumentException) { | ||
false | ||
} | ||
} | ||
|
||
override fun onInterceptTouchEvent(ev: MotionEvent?): Boolean { | ||
return try { | ||
super.onInterceptTouchEvent(ev) | ||
} catch (ex: IllegalArgumentException) { | ||
false | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<resources> | ||
<!-- # app --> | ||
<!-- # error messages --> | ||
<!-- # clouds --> | ||
<!-- ## cloud names --> | ||
<!-- # permission --> | ||
<!-- ## permission messages --> | ||
<string name="snack_bar_action_title_search_next">بعدی</string> | ||
<!-- # screens --> | ||
<!-- # screen: vault list --> | ||
<!-- # screen: file browser --> | ||
<!-- ## screen: text editor --> | ||
<!-- ## screen: share files --> | ||
<!-- ## screen: choose cloud service --> | ||
<!-- ## screen: cloud connections --> | ||
<!-- ## screen: webdav settings --> | ||
<!-- ## screen: s3 settings --> | ||
<!-- ## screen: enter vault name --> | ||
<!-- ## screen: set password --> | ||
<!-- ## screen: settings --> | ||
<!-- ## screen: cloud settings --> | ||
<!-- ## screen: licenses --> | ||
<!-- ## screen: authenticate cloud --> | ||
<!-- ## screen: insecure android version info --> | ||
<!-- # dialogs --> | ||
<string name="dialog_enter_password_positive_button">بازکردن قفل</string> | ||
<!-- Vault not found --> | ||
<string name="dialog_lock_vault">قفل</string> | ||
<string name="dialog_sym_link_back_button">بازگشت</string> | ||
<!-- # error reports --> | ||
<!-- # misc --> | ||
<!-- ## file size helper --> | ||
<!-- ## date helper --> | ||
<!-- ## biometric authentication --> | ||
<!-- notification --> | ||
<!-- lock timeout names --> | ||
<!-- cache size names --> | ||
<!-- screen scheme mode names --> | ||
<!-- update interval names --> | ||
</resources> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.