Skip to content

Commit

Permalink
feat: build for both architectures (x86 and x64) on Windows (#1262)
Browse files Browse the repository at this point in the history
  • Loading branch information
IGassmann authored Apr 3, 2018
1 parent 401d980 commit 51c0a7c
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 0 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
8 changes: 8 additions & 0 deletions electron-builder.json
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,14 @@
"perMachine": true,
"createDesktopShortcut": "always"
},
"win": {
"target": [
{
"target": "nsis",
"arch": ["x64", "ia32"]
}
]
},
"artifactName": "${productName}_${version}.${ext}",
"beforeBuild": "./build/checkDaemonPlatform.js"
}

0 comments on commit 51c0a7c

Please sign in to comment.