From 56988e86e25c3234b7039227c07d8cf9af19ebd7 Mon Sep 17 00:00:00 2001 From: Siddharth Date: Sat, 14 Mar 2026 15:57:22 -0700 Subject: [PATCH] custom install loc --- electron-builder.json5 | 18 +++++++++++------- 1 file changed, 11 insertions(+), 7 deletions(-) diff --git a/electron-builder.json5 b/electron-builder.json5 index 960484da..18127a99 100644 --- a/electron-builder.json5 +++ b/electron-builder.json5 @@ -52,10 +52,14 @@ "artifactName": "${productName}-Linux-${version}.${ext}", "category": "AudioVideo" }, - "win": { - "target": [ - "nsis" - ], - "icon": "icons/icons/win/icon.ico" - } -} + "win": { + "target": [ + "nsis" + ], + "icon": "icons/icons/win/icon.ico" + }, + "nsis": { + "oneClick": false, + "allowToChangeInstallationDirectory": true + } +}