From 703cf8f8803080174b5e88c29496e24b075db3ee Mon Sep 17 00:00:00 2001 From: Florian Rappl Date: Fri, 4 Sep 2026 15:48:29 +0200 Subject: [PATCH] Updated to use nsis on Windows --- docs/Core/Migration-Checks.md | 4 ++++ docs/Core/Migration-Guide.md | 10 ++++++---- 2 files changed, 10 insertions(+), 4 deletions(-) diff --git a/docs/Core/Migration-Checks.md b/docs/Core/Migration-Checks.md index 211faa0..84eaebf 100644 --- a/docs/Core/Migration-Checks.md +++ b/docs/Core/Migration-Checks.md @@ -117,6 +117,10 @@ The `electron.manifest.json` file format is deprecated. All configuration should "mac": { "icon": "Assets/app.icns", "target": ["dmg", "zip"] + }, + "nsis": { + "oneClick": true, + "perMachine": false } } ``` diff --git a/docs/Core/Migration-Guide.md b/docs/Core/Migration-Guide.md index 5fa5a07..9e01009 100644 --- a/docs/Core/Migration-Guide.md +++ b/docs/Core/Migration-Guide.md @@ -48,17 +48,19 @@ You can also manually edit `electron-builder.json`: ```json { "linux": { - "target": [ - "tar.xz" - ] + "target": ["tar.xz"] }, "win": { "target": [ { - "target": "portable", + "target": "nsis", "arch": "x64" } ] + }, + "nsis": { + "oneClick": true, + "perMachine": false } } ```