From 4df3573cdaf829cd034c4ff0250ba60d87bdc6a2 Mon Sep 17 00:00:00 2001 From: Todd Martin Date: Sun, 17 Aug 2025 10:45:04 -0400 Subject: [PATCH] Addressed PR feedback. --- apps/browser/src/safari/README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/apps/browser/src/safari/README.md b/apps/browser/src/safari/README.md index 94416ac109f..3a883c45cc3 100644 --- a/apps/browser/src/safari/README.md +++ b/apps/browser/src/safari/README.md @@ -20,7 +20,7 @@ sequenceDiagram participant SE as Safari Extension
(Browser Context) participant SH as Safari Extension Handler
(SafariWebExtensionHandler.swift) participant KC as Keychain
(macOS) - participant BA as LocalAuthentication
(TouchID/FaceID) + participant BA as LocalAuthentication
(TouchID) participant FS as File System
(Downloads) Note over SE, FS: Safari Native Messaging Flow @@ -48,7 +48,7 @@ sequenceDiagram LA-->>SH: Authentication result alt Success SH->>KC: SecKeychainFindGenericPassword() - KC-->>SH: User key (encrypted) + KC-->>SH: User key (unencrypted) SH->>SE: Return user key + auth success else Failure SH->>SE: Return auth failure @@ -77,7 +77,7 @@ sequenceDiagram - **`sleep`** - Provide async delay functionality #### Biometric Authentication -- **`authenticateWithBiometrics`** - Perform TouchID/FaceID authentication +- **`authenticateWithBiometrics`** - Perform TouchID authentication - **`getBiometricsStatus`** - Check if biometrics are available on device - **`unlockWithBiometricsForUser`** - Unlock vault with biometrics for specific user - **`getBiometricsStatusForUser`** - Check biometric availability for specific user @@ -101,5 +101,5 @@ npm run dist:safari This uses the `package-safari.ps1` script to: 1. Build the Safari extension Xcode project -2. Code sign the extension for different distribution types (mas, masdev, dmg) +2. Code sign the extension for different distribution types (`mas`, `masdev`, `dmg`) 3. Package the extension for integration with the desktop app \ No newline at end of file