Skip to content

Commit

Permalink
Added support for mac amd64 arch and merged win32 to main windows rel…
Browse files Browse the repository at this point in the history
…ease file
  • Loading branch information
m-mohamedin committed Dec 17, 2020
1 parent c4ca5cf commit 9dcf4fc
Show file tree
Hide file tree
Showing 5 changed files with 18 additions and 77 deletions.
3 changes: 2 additions & 1 deletion electron-builder-appx.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,8 @@
{
"target": "appx",
"arch": [
"x64"
"x64",
"ia32"
]
}
]
Expand Down
12 changes: 10 additions & 2 deletions electron-builder-linux-mac.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,16 @@
"entitlementsInherit": "build/entitlements.mac.plist",
"category": "public.app-category.graphics-design",
"target": [
"zip",
"dmg"
{ "target": "zip", "arch": [
"x64",
"arm64"
]
},
{ "target": "dmg", "arch": [
"x64",
"arm64"
]
}
]
},
"afterSign": "build/notarize.js",
Expand Down
6 changes: 4 additions & 2 deletions electron-builder-win.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,13 +20,15 @@
{
"target": "nsis",
"arch": [
"x64"
"x64",
"ia32"
]
},
{
"target": "portable",
"arch": [
"x64"
"x64",
"ia32"
]
}
]
Expand Down
70 changes: 0 additions & 70 deletions electron-builder-win32.json

This file was deleted.

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,8 @@
},
"devDependencies": {
"dotenv": "^8.2.0",
"electron": "^11.0.1",
"electron-builder": "^22.9.1",
"electron": "^11.1.0",
"electron-builder": "^22.10.3",
"electron-notarize": "^1.0.0",
"sumchecker": "^3.0.1"
}
Expand Down

0 comments on commit 9dcf4fc

Please sign in to comment.