Skip to content

Commit

Permalink
fix: dialogs of "prepare release" losing focus
Browse files Browse the repository at this point in the history
  • Loading branch information
dtarnawsky committed Nov 26, 2024
1 parent 86058a6 commit b2f8dfa
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
3 changes: 3 additions & 0 deletions src/capacitor-build.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}
Expand All @@ -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;
}
Expand All @@ -134,6 +136,7 @@ async function verifySettings(
title: 'Key password',
placeHolder: 'Enter key password',
password: true,
ignoreFocusOut: true,
});
if (!settings.keyPassword) return undefined;
}
Expand Down

0 comments on commit b2f8dfa

Please sign in to comment.