jely2002 / youtube-dl-gui

A cross-platform GUI for youtube-dl made in Electron and node.js
GNU Affero General Public License v3.0
6.5k stars 454 forks source link

MacOS ARM Support #379

Open olegshulyakov opened 2 years ago

olegshulyakov commented 2 years ago

Describe the solution you'd like electron-builder supports arm builds. It would be good for M1 Macs to have native build.

Additional context Need to update package.json Mac target to specify platforms like following:

"target": [
  {
    "target": "dmg",
    "arch": [
      "x64",
      "arm64"
    ]
  }
],