mirror of
https://github.com/Kunzisoft/KeePassDX.git
synced 2025-12-04 15:49:33 +01:00
Compare commits
3 Commits
master
...
3b793a72b8
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
3b793a72b8 | ||
|
|
f19afbdb2e | ||
|
|
622e9cefdd |
@@ -1,3 +1,7 @@
|
||||
KeePassDX(4.3.0)
|
||||
* Manual change of app language #1884 #1990
|
||||
* Fix autofill username detection #2276
|
||||
|
||||
KeePassDX(4.2.4)
|
||||
* Fix remembering database location #2262
|
||||
|
||||
|
||||
@@ -11,8 +11,8 @@ android {
|
||||
applicationId "com.kunzisoft.keepass"
|
||||
minSdkVersion 19
|
||||
targetSdkVersion 35
|
||||
versionCode = 149
|
||||
versionName = "4.2.4"
|
||||
versionCode = 150
|
||||
versionName = "4.3.0"
|
||||
multiDexEnabled true
|
||||
|
||||
testApplicationId = "com.kunzisoft.keepass.tests"
|
||||
@@ -110,6 +110,10 @@ android {
|
||||
// Bouncy castle bug https://github.com/bcgit/bc-java/issues/1685
|
||||
resources.pickFirsts.add('META-INF/versions/9/OSGI-INF/MANIFEST.MF')
|
||||
}
|
||||
|
||||
androidResources {
|
||||
generateLocaleConfig true
|
||||
}
|
||||
}
|
||||
|
||||
def room_version = "2.5.1"
|
||||
|
||||
@@ -154,7 +154,7 @@ class StructureParser(private val structure: AssistStructure) {
|
||||
it.contains(View.AUTOFILL_HINT_PASSWORD, true) -> {
|
||||
// Password Id changed if it's the second times we are here,
|
||||
// So the last username candidate is most appropriate
|
||||
if (result?.passwordId != null) {
|
||||
if (result?.passwordId != null && usernameIdCandidate != null) {
|
||||
result?.usernameId = usernameIdCandidate
|
||||
result?.usernameValue = usernameValueCandidate
|
||||
}
|
||||
|
||||
1
app/src/main/res/resources.properties
Normal file
1
app/src/main/res/resources.properties
Normal file
@@ -0,0 +1 @@
|
||||
unqualifiedResLocale=en-US
|
||||
2
fastlane/metadata/android/en-US/changelogs/150.txt
Normal file
2
fastlane/metadata/android/en-US/changelogs/150.txt
Normal file
@@ -0,0 +1,2 @@
|
||||
* Manual change of app language #1884 #1990
|
||||
* Fix autofill username detection #2276
|
||||
2
fastlane/metadata/android/fr-FR/changelogs/150.txt
Normal file
2
fastlane/metadata/android/fr-FR/changelogs/150.txt
Normal file
@@ -0,0 +1,2 @@
|
||||
* Changement manuel de la langue de l'appli #1884 #1990
|
||||
* Correction de la détection du nom d'utilisateur pour le remplissage auto #2276
|
||||
Reference in New Issue
Block a user