Skip to content

Commit 842c148

Browse files
committed
fix: allow webview popups so links open in default browser on Windows (#165, #170)
1 parent e7eef2d commit 842c148

2 files changed

Lines changed: 2 additions & 0 deletions

File tree

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1414
### Changed
1515

1616
- **Windows OpenSSL Compatibility.** The bundled Python's directory is now prepended to `PATH` on Windows so its own OpenSSL DLLs are loaded before any conflicting system-wide installations (Git for Windows, Anaconda, Strawberry Perl, etc.), preventing the `OPENSSL_Uplink: no OPENSSL_Applink` crash on startup (#167).
17+
- **Links Open in Default Browser on Windows.** Added `allowpopups` to the webview so that `target="_blank"` link clicks correctly propagate to the main process handler and open in the default browser instead of being silently blocked (#165, #170).
1718
- **Linux System Requirements.** Documentation now specifies glibc 2.28+ as a minimum requirement for Linux installations.
1819

1920
## [0.0.16] - 2026-05-02

src/renderer/src/lib/components/Main/Connections/Content.svelte

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -270,6 +270,7 @@
270270
style="display: {view === 'connected' && activeConnectionId === connId ? 'flex' : 'none'}"
271271
partition="persist:connection-{connId}"
272272
preload={contentPreloadPath}
273+
allowpopups
273274
></webview>
274275
{/each}
275276

0 commit comments

Comments
 (0)