Compare commits

...

4 commits

Author SHA1 Message Date
Robert Palmer
18140ae65e Remove filesytem config in DMG. Will submit patch to electron-builder 2021-12-10 21:41:46 -05:00
Robert Palmer
7b805e45d3 Updated electron-updater 2021-12-10 21:38:26 -05:00
Robert Palmer
90a6d6f42d Force APFS DMG image for M1 Macs 2021-12-10 21:30:12 -05:00
Robert Palmer
c80d6f91b8 Start of universal binary for macOS
Currently it's building x64 and arm64 electron apps.
We *could* make DMGs of each and have end users select their
platform.
2021-12-10 21:00:32 -05:00
3 changed files with 14 additions and 4 deletions

View file

@ -20,6 +20,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
- Disk space setting under Data Hosting ([#7266](https://github.com/lbryio/lbry-desktop/pull/7266)) - Disk space setting under Data Hosting ([#7266](https://github.com/lbryio/lbry-desktop/pull/7266))
- Paginated 'All Playlists' page ([#7268](https://github.com/lbryio/lbry-desktop/pull/7268)) - Paginated 'All Playlists' page ([#7268](https://github.com/lbryio/lbry-desktop/pull/7268))
- Expanded playlist ordering tools ([#7305](https://github.com/lbryio/lbry-desktop/pull/7305)) - Expanded playlist ordering tools ([#7305](https://github.com/lbryio/lbry-desktop/pull/7305))
- Support for macOS arm64
### Changed ### Changed
- Changing the supported language from Filipino to Tagalog _community pr!_ ([#6951](https://github.com/lbryio/lbry-desktop/pull/6951)) - Changing the supported language from Filipino to Tagalog _community pr!_ ([#6951](https://github.com/lbryio/lbry-desktop/pull/6951))

View file

@ -37,7 +37,16 @@
} }
], ],
"mac": { "mac": {
"category": "public.app-category.entertainment" "category": "public.app-category.entertainment",
"target": [
{
"target": "default",
"arch": [
"x64",
"arm64"
]
}
],
}, },
"dmg": { "dmg": {
"iconSize": 128, "iconSize": 128,
@ -59,7 +68,7 @@
"width": 500, "width": 500,
"height": 300 "height": 300
}, },
"background": "./build/background.png" "background": "./build/background.png",
}, },
"protocols": [ "protocols": [
{ {

View file

@ -49,7 +49,7 @@
"electron-dl": "^3.2.0", "electron-dl": "^3.2.0",
"electron-log": "^2.2.12", "electron-log": "^2.2.12",
"electron-notarize": "^1.0.0", "electron-notarize": "^1.0.0",
"electron-updater": "^4.2.4", "electron-updater": "^4.6.5",
"express": "^4.17.1", "express": "^4.17.1",
"humanize-duration": "^3.27.0", "humanize-duration": "^3.27.0",
"if-env": "^1.0.4", "if-env": "^1.0.4",
@ -122,7 +122,7 @@
"dotenv-defaults": "^2.0.1", "dotenv-defaults": "^2.0.1",
"dotenv-webpack": "^1.8.0", "dotenv-webpack": "^1.8.0",
"electron": "11.5.0", "electron": "11.5.0",
"electron-builder": "^22.9.1", "electron-builder": "^22.14.5",
"electron-devtools-installer": "^3.1.1", "electron-devtools-installer": "^3.1.1",
"electron-is-dev": "^0.3.0", "electron-is-dev": "^0.3.0",
"electron-webpack": "^2.8.2", "electron-webpack": "^2.8.2",