Skip to content

Commit

Permalink
Merge branch 'release/2.9.6'
Browse files Browse the repository at this point in the history
  • Loading branch information
J-Jamet committed Dec 18, 2020
2 parents 774dddc + 6da747c commit 0761d35
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 6 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
KeePassDX(2.9.6)
* Fix KeyFile bug #820

KeePassDX(2.9.5)
* Unlock database by device credentials (PIN/Password/Pattern) with Android M+ #102 #152 #811
* Prevent auto switch back to previous keyboard if otp field exists #814
Expand Down
4 changes: 2 additions & 2 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ android {
applicationId "com.kunzisoft.keepass"
minSdkVersion 14
targetSdkVersion 30
versionCode = 49
versionName = "2.9.5"
versionCode = 50
versionName = "2.9.6"
multiDexEnabled true

testApplicationId = "com.kunzisoft.keepass.tests"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -117,10 +117,10 @@ class AdvancedUnlockFragment: StylishFragment(), AdvancedUnlockManager.AdvancedU

override fun onActivityResult(requestCode: Int, resultCode: Int, data: Intent?) {
// To wait resume
activityResult = ActivityResult(requestCode, resultCode, data)
if (keepConnection) {
activityResult = ActivityResult(requestCode, resultCode, data)
}
keepConnection = false

super.onActivityResult(requestCode, resultCode, data)
}

override fun onResume() {
Expand Down Expand Up @@ -237,7 +237,7 @@ class AdvancedUnlockFragment: StylishFragment(), AdvancedUnlockManager.AdvancedU
Mode.WAIT_CREDENTIAL
})
}
} ?: throw IODatabaseException()
}
}
}
}
Expand Down
1 change: 1 addition & 0 deletions fastlane/metadata/android/en-US/changelogs/50.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
* Fix KeyFile bug #820
1 change: 1 addition & 0 deletions fastlane/metadata/android/fr-FR/changelogs/50.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
* Correction du bug de fichier de clé #820

0 comments on commit 0761d35

Please sign in to comment.