Fix unexpected lock of the app #1294

This commit is contained in:
J-Jamet
2022-04-14 19:11:33 +02:00
parent 3782c4dac0
commit a5d7f33c82
5 changed files with 5 additions and 2 deletions

View File

@@ -1,6 +1,7 @@
KeePassDX(3.4.1)
* Fix search mode with Magikeyboard #1292
* Fix select another entry with Magikeyboard #1293
* Fix unexpected lock with Magikeyboard #1294
* Small UI changes
KeePassDX(3.4.0)

View File

@@ -158,7 +158,6 @@
<activity
android:name="com.kunzisoft.keepass.activities.EntrySelectionLauncherActivity"
android:theme="@style/Theme.Transparent"
android:excludeFromRecents="true"
android:exported="true">
<intent-filter>
<action android:name="android.intent.action.SEND" />

View File

@@ -205,7 +205,8 @@ class EntrySelectionLauncherActivity : DatabaseModeActivity() {
}
// New task needed because don't launch from an Activity context
intent.flags = Intent.FLAG_ACTIVITY_NEW_TASK or
Intent.FLAG_ACTIVITY_CLEAR_TASK
Intent.FLAG_ACTIVITY_CLEAR_TASK or
Intent.FLAG_ACTIVITY_EXCLUDE_FROM_RECENTS
context.startActivity(intent)
}
}

View File

@@ -1,3 +1,4 @@
* Fix search mode with Magikeyboard #1292
* Fix select another entry with Magikeyboard #1293
* Fix unexpected lock with Magikeyboard #1294
* Small UI changes

View File

@@ -1,3 +1,4 @@
* Correction du mode recherche pour le Magiclavier #1292
* Correction de la selection d'une autre entrée avec le Magiclavier #1293
* Correction d'un verrouillage non attendu avec le Magiclavier #1294
* Petits changements d'interface