mirror of
https://github.com/Kunzisoft/KeePassDX.git
synced 2025-12-04 15:49:33 +01:00
Compare commits
5 Commits
2.5.0.0bet
...
2.5.0.0bet
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
da4f41732a | ||
|
|
0414adf5de | ||
|
|
d9b2942f66 | ||
|
|
cbe7907b07 | ||
|
|
3989ca3ad1 |
@@ -1,3 +1,6 @@
|
|||||||
|
KeepassDX (2.5.0.0beta20)
|
||||||
|
* Fix a major bug that displays an entry history
|
||||||
|
|
||||||
KeepassDX (2.5.0.0beta19)
|
KeepassDX (2.5.0.0beta19)
|
||||||
* Add lock button always visible
|
* Add lock button always visible
|
||||||
* New connection workflow
|
* New connection workflow
|
||||||
|
|||||||
@@ -11,8 +11,8 @@ android {
|
|||||||
applicationId "com.kunzisoft.keepass"
|
applicationId "com.kunzisoft.keepass"
|
||||||
minSdkVersion 14
|
minSdkVersion 14
|
||||||
targetSdkVersion 27
|
targetSdkVersion 27
|
||||||
versionCode = 19
|
versionCode = 20
|
||||||
versionName = "2.5.0.0beta19"
|
versionName = "2.5.0.0beta20"
|
||||||
multiDexEnabled true
|
multiDexEnabled true
|
||||||
|
|
||||||
testApplicationId = "com.kunzisoft.keepass.tests"
|
testApplicationId = "com.kunzisoft.keepass.tests"
|
||||||
|
|||||||
@@ -233,7 +233,9 @@ abstract class PwDatabase<Group : PwGroup<*, Group, Entry>, Entry : PwEntry<Grou
|
|||||||
}
|
}
|
||||||
|
|
||||||
fun addGroupIndex(group: Group) {
|
fun addGroupIndex(group: Group) {
|
||||||
this.groupIndexes[group.nodeId] = group
|
val groupId = group.nodeId
|
||||||
|
if (!groupIndexes.containsKey(groupId))
|
||||||
|
this.groupIndexes[groupId] = group
|
||||||
}
|
}
|
||||||
|
|
||||||
fun removeGroupIndex(group: Group) {
|
fun removeGroupIndex(group: Group) {
|
||||||
@@ -263,7 +265,9 @@ abstract class PwDatabase<Group : PwGroup<*, Group, Entry>, Entry : PwEntry<Grou
|
|||||||
}
|
}
|
||||||
|
|
||||||
fun addEntryIndex(entry: Entry) {
|
fun addEntryIndex(entry: Entry) {
|
||||||
this.entryIndexes[entry.nodeId] = entry
|
val entryId = entry.nodeId
|
||||||
|
if (!entryIndexes.containsKey(entryId))
|
||||||
|
this.entryIndexes[entryId] = entry
|
||||||
}
|
}
|
||||||
|
|
||||||
fun removeEntryIndex(entry: Entry) {
|
fun removeEntryIndex(entry: Entry) {
|
||||||
|
|||||||
9
fastlane/metadata/android/en-US/changelogs/20.txt
Normal file
9
fastlane/metadata/android/en-US/changelogs/20.txt
Normal file
@@ -0,0 +1,9 @@
|
|||||||
|
* Add lock button always visible
|
||||||
|
* New connection workflow
|
||||||
|
* Code refactored in Kotlin
|
||||||
|
* Better notification implementation
|
||||||
|
* Better views for large screen
|
||||||
|
* Magikeyboard enhancement
|
||||||
|
* Fix Recycle Bin
|
||||||
|
* Fix memory when load database
|
||||||
|
* Fix a bug that displays an entry history in 2.5.0.0beta19
|
||||||
9
fastlane/metadata/android/fr-FR/changelogs/20.txt
Normal file
9
fastlane/metadata/android/fr-FR/changelogs/20.txt
Normal file
@@ -0,0 +1,9 @@
|
|||||||
|
* Ajout du bouton de lock toujours visible
|
||||||
|
* Nouveau workflow de connexion
|
||||||
|
* Code refactorisé en Kotlin
|
||||||
|
* Meilleure implementation des notifications
|
||||||
|
* Meilleures vues pour les écrans larges
|
||||||
|
* Amélioration du Magikeyboard
|
||||||
|
* Correction de la Corbeille
|
||||||
|
* Correction de la mémoire lors du chargement de base de données
|
||||||
|
* Correction d'un bug qui affiche un historique d'entrée (2.5.0.0beta19)
|
||||||
Reference in New Issue
Block a user