From 5fe4c33ae17267d0893365b34bff801088d812ed Mon Sep 17 00:00:00 2001 From: mkdir700 Date: Sat, 13 Sep 2025 15:54:00 +0800 Subject: [PATCH] feat: add Windows ARM64 architecture support - Add arm64 architecture support for Windows NSIS installer target - Add arm64 architecture support for Windows Portable target - Align Windows build targets with existing macOS and Linux ARM64 support - Enable native ARM64 builds for Windows on ARM devices This change allows the application to run natively on Windows ARM64 devices, providing better performance and compatibility for users with ARM-based Windows machines. --- electron-builder.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/electron-builder.yml b/electron-builder.yml index 4fb1f67f..ea3ed499 100644 --- a/electron-builder.yml +++ b/electron-builder.yml @@ -60,9 +60,11 @@ win: - target: nsis arch: - x64 + - arm64 - target: portable arch: - x64 + - arm64 signtoolOptions: sign: scripts/win-sign.js verifyUpdateCodeSignature: false