Skip to content

Commit

Permalink
Merge PR #1687
Browse files Browse the repository at this point in the history
  • Loading branch information
dainnilsson committed Sep 25, 2024
2 parents 76f60a9 + acfd00b commit 353766b
Show file tree
Hide file tree
Showing 61 changed files with 2,272 additions and 1,565 deletions.
14 changes: 14 additions & 0 deletions NEWS
Original file line number Diff line number Diff line change
@@ -1,3 +1,17 @@
* Version 7.1.0 (released 2024-09-25)
** Improved support for YubiKey Bio - Multi-protocol Edition.
** Improved support for YubiKey 5.7 FIPS:
*** Use secure messaging (SCP11b) when needed over NFC.
*** Add FIPS status information to Home screen and application pages.
*** Disable locked features in UI while not in FIPS approved mode.
** Android: Improve UI for NFC communication.
** Android: Improve error messages shown in UI.
** FIDO: Add button to enable Enterprise Attestation on supported devices.
** UI: Add instructions for enabling NFC for NFC-restricted devices.
** UI: Display PIN complexity info on Home screen for applicable devices.
** UI: Add grid views for OATH and Passkey credential lists.
** UI: Add toggling of visibility to the right sidebar menu.

* Version 7.0.1 (released 2024-05-30) Android only release
** Fix: Opening the app by NFC tap needs another tap to reveal accounts.
** Fix: NFC devices attached to mobile phone prevent usage of USB YubiKeys.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,13 @@ import com.yubico.yubikit.core.YubiKeyDevice
* Provides behavior to run when a YubiKey is inserted/tapped for a specific view of the app.
*/
abstract class AppContextManager {
abstract suspend fun processYubiKey(device: YubiKeyDevice)
abstract suspend fun processYubiKey(device: YubiKeyDevice): Boolean

open fun dispose() {}

open fun onPause() {}
}

open fun onError(e: Exception) {}
}

class ContextDisposedException : Exception()
105 changes: 0 additions & 105 deletions android/app/src/main/kotlin/com/yubico/authenticator/DialogManager.kt

This file was deleted.

Loading

0 comments on commit 353766b

Please sign in to comment.