feat(desktop): add webcam QR code scanning for bunker login

Uses webcam-capture + ZXing to scan QR codes from the camera.
Click the QR icon on the login screen to open a webcam scanner
dialog that auto-detects bunker:// URIs from Amber's QR display.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
nrobi144
2026-03-05 14:07:29 +02:00
parent fd1b435020
commit 6e04482981
4 changed files with 90 additions and 51 deletions
+2 -1
View File
@@ -46,9 +46,10 @@ dependencies {
// JSON
implementation(libs.jackson.module.kotlin)
// QR code decoding from images
// QR code scanning (webcam + image decoding)
implementation(libs.zxing)
implementation(libs.zxing.javase)
implementation(libs.webcam.capture)
// Collections
implementation(libs.kotlinx.collections.immutable)