This repository has been archived by the owner on Dec 11, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 971
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Auditors: @bsclifton, @aekeus Electron-builder has change significantly, but we've been stuck on a really old version 2.3.1 because it changed a lot and we didn't keep up with the changes. This gets us on the latest 17.1.1 which has support for NOT rebuilding native modules, and also has things we want in the future like Ubuntu snaps. electron-builder added muon support here: electron-userland/electron-builder#1404 (comment) We currently only use electron-builder for macOS. But it's really powerful and we should probably use it everywhere. This task is only to get our mac back on their tip release.
- Loading branch information
Showing
4 changed files
with
20 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,18 @@ | ||
{ | ||
"osx": { | ||
"appId": "com.electron.brave", | ||
"productName": "Brave", | ||
"npmRebuild": false, | ||
"mac": { | ||
"target": "dmg" | ||
}, | ||
"dmg": { | ||
"title": "Brave", | ||
"background": "background.png", | ||
"icon": "brave_installer.icns", | ||
"icon-size": 80, | ||
"background": "res/background.png", | ||
"icon": "res/brave_installer.icns", | ||
"iconSize": 80, | ||
"contents": [ | ||
{ "x": 438, "y": 344, "type": "link", "path": "/Applications" }, | ||
{ "x": 192, "y": 344, "type": "file" } | ||
{ "x": 192, "y": 344, "type": "file" }, | ||
{ "x": 438, "y": 344, "type": "link", "path": "/Applications" } | ||
] | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
59a55f3
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Fixed #8481
59a55f3
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
++
59a55f3
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
++