diff --git a/CHANGELOG.md b/CHANGELOG.md index 55ec403a3..d8302afbc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,7 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/). ### Added * Add keyboard shortcut to quit the app on Windows ([#1202](https://github.com/lbryio/lbry-app/pull/1202)) + * Build for both architectures (x86 and x64) for Windows ([#1262](https://github.com/lbryio/lbry-app/pull/1262)) ### Fixed diff --git a/electron-builder.json b/electron-builder.json index 54d148d12..6b13458f3 100644 --- a/electron-builder.json +++ b/electron-builder.json @@ -65,6 +65,14 @@ "perMachine": true, "createDesktopShortcut": "always" }, + "win": { + "target": [ + { + "target": "nsis", + "arch": ["x64", "ia32"] + } + ] + }, "artifactName": "${productName}_${version}.${ext}", "beforeBuild": "./build/checkDaemonPlatform.js" }