From b2f8dfa9b488c0cc8814e2850dc9dbc2f27678c3 Mon Sep 17 00:00:00 2001 From: "damian.ionic" Date: Tue, 26 Nov 2024 09:06:36 -0800 Subject: [PATCH] fix: dialogs of "prepare release" losing focus --- CHANGELOG.md | 1 + src/capacitor-build.ts | 3 +++ 2 files changed, 4 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0977fa6..11c8214 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,7 @@ - Support for Angular 19 migration - Fix for yarn outdated plugin - Fix for Capacitor migrate with modern yarn +- Fix for dialogs of "prepare release" losing focus ### Version 1.98 diff --git a/src/capacitor-build.ts b/src/capacitor-build.ts index 3a98737..17bb542 100755 --- a/src/capacitor-build.ts +++ b/src/capacitor-build.ts @@ -117,6 +117,7 @@ async function verifySettings( title: 'Key store password', placeHolder: 'Enter key store password', password: true, + ignoreFocusOut: true, }); if (!settings.keyStorePassword) return undefined; } @@ -125,6 +126,7 @@ async function verifySettings( settings.keyAlias = await window.showInputBox({ title: 'Key alias', placeHolder: 'Enter key alias', + ignoreFocusOut: true, }); if (!settings.keyAlias) return undefined; } @@ -134,6 +136,7 @@ async function verifySettings( title: 'Key password', placeHolder: 'Enter key password', password: true, + ignoreFocusOut: true, }); if (!settings.keyPassword) return undefined; }