-
-
Notifications
You must be signed in to change notification settings - Fork 131
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
9 changed files
with
48 additions
and
37 deletions.
There are no files selected for viewing
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 |
---|---|---|
@@ -1,5 +1,2 @@ | ||
- F-Droid-Repository hinzugefügt | ||
- Polnische Übersetzung hinzugefügt (Vielen Dank dafür an FadeMind) | ||
- Verbesserte Tab-Reihenfolge in modalen Dialogen bei Verwendung von Hardware-Tastaturen | ||
- App-Absturz auf einigen Geräten behoben, wenn Cryptomator nach Beendigung des Öffnens einer Datei unter Verwendung von 3-Party-Apps fortgesetzt wird | ||
- Möglichkeit zur Umgehung des Lizenzbildschirms auf gerooteten Geräten behoben | ||
- Fehler beim Erstellen neuer Tresore in pCloud behoben | ||
- Fehler in der Lizenz-Anzeige der Einstellungen 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,5 +1,2 @@ | ||
- Added F-Droid repository | ||
- Added Polish translation (thanks to FadeMind for this contribution) | ||
- Enhanced tab order in modal dialogs when using hardware keyboards | ||
- Fixed app crash on some devices when resuming Cryptomator after open file finished using 3party apps | ||
- Fixed possibility to bypass the license screen on rooted phones | ||
- Fixed creating new vaults in pCloud | ||
- Fixed license screen in settings |
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,7 +1,4 @@ | ||
<ul> | ||
<li>Added F-Droid repository</li> | ||
<li>Added Polish translation (thanks to FadeMind for this contribution)</li> | ||
<li>Enhanced tab order in modal dialogs when using hardware keyboards</li> | ||
<li>Fixed app crash on some devices when resuming Cryptomator after open file finished using 3party apps</li> | ||
<li>Fixed possibility to bypass the license screen on rooted phones</li> | ||
<li>Fixed creating new vaults in pCloud</li> | ||
<li>Fixed license screen in settings</li> | ||
</ul> |
Submodule pcloud-sdk-java
updated
from d12c6e to c99ebf
13 changes: 13 additions & 0 deletions
13
presentation/src/main/java/org/cryptomator/presentation/ui/fragment/LicensesFragment.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,13 @@ | ||
package org.cryptomator.presentation.ui.fragment | ||
|
||
import android.os.Bundle | ||
import androidx.preference.PreferenceFragmentCompat | ||
import org.cryptomator.presentation.R | ||
|
||
// Don't delete this file as it isn't unused but referenced by layout file | ||
class LicensesFragment : PreferenceFragmentCompat() { | ||
|
||
override fun onCreatePreferences(savedInstanceState: Bundle?, rootKey: String?) { | ||
addPreferencesFromResource(R.xml.licenses) | ||
} | ||
} |
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