Release ForgeFlow 0.8.7 automatic server discovery

This commit is contained in:
NuklearRabbit
2026-07-26 04:22:02 +02:00
parent 70840839f8
commit 40d41f9a32
13 changed files with 638 additions and 130 deletions
+7 -8
View File
@@ -141,14 +141,12 @@ function createWindow() {
);
mainWindow.webContents.setWindowOpenHandler(({ url }) => {
if (/^https?:\/\//i.test(url))
shell
.openExternal(url)
.catch((error) =>
diagnostics?.warning("external-link.open.failed", {
url,
message: error.message,
}),
);
shell.openExternal(url).catch((error) =>
diagnostics?.warning("external-link.open.failed", {
url,
message: error.message,
}),
);
return { action: "deny" };
});
mainWindow.webContents.on("will-navigate", (event, url) => {
@@ -260,6 +258,7 @@ app
store,
ssh,
git,
gitea,
diagnostics,
sourcePath: app.getAppPath(),
onOperationChange: reportOperationChange,