From bec50da2b47c6c806fc7e9835324860e6e154b7c Mon Sep 17 00:00:00 2001 From: David Kaya Date: Mon, 30 Mar 2026 17:19:58 +0200 Subject: [PATCH] fix: add DPI awareness to NSIS installer Add ManifestDPIAware true via a custom NSIS include file so the installer renders at native resolution on high-DPI displays. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> --- assets/installer.nsh | 1 + package.json | 1 + 2 files changed, 2 insertions(+) create mode 100644 assets/installer.nsh diff --git a/assets/installer.nsh b/assets/installer.nsh new file mode 100644 index 0000000..f669e22 --- /dev/null +++ b/assets/installer.nsh @@ -0,0 +1 @@ +ManifestDPIAware true diff --git a/package.json b/package.json index 5f535a0..fe58fe0 100644 --- a/package.json +++ b/package.json @@ -126,6 +126,7 @@ "oneClick": false, "perMachine": false, "allowToChangeInstallationDirectory": true, + "include": "assets/installer.nsh", "installerIcon": "assets/icons/windows/icon.ico", "uninstallerIcon": "assets/icons/windows/icon.ico" },