From f22f36dec1fa614cd13948c7177fbc7e9fa0c49c Mon Sep 17 00:00:00 2001 From: webadderall <131426131+webadderall@users.noreply.github.com> Date: Sat, 5 Sep 2026 15:02:55 +1000 Subject: [PATCH] feat(windows): add assisted installer setup --- electron-builder.json5 | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/electron-builder.json5 b/electron-builder.json5 index a333a872..64a0f47d 100644 --- a/electron-builder.json5 +++ b/electron-builder.json5 @@ -105,10 +105,15 @@ "target": [ "nsis" ], - "icon": "icons/icons/win/icon.ico" - , + "icon": "icons/icons/win/icon.ico", "executableName": "Recordly", "artifactName": "${productName}-windows-${arch}.${ext}" + }, + "nsis": { + "oneClick": false, + "allowToChangeInstallationDirectory": true, + "createDesktopShortcut": true, + "createStartMenuShortcut": true, + "shortcutName": "Recordly" } } -