From 6aa430a973f23cfa5a5e69eb64bcab99e269f509 Mon Sep 17 00:00:00 2001 From: Oleg Shulyakov Date: Fri, 17 Jun 2022 23:34:30 +0300 Subject: [PATCH 1/2] #379 MacOS ARM Support --- package.json | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/package.json b/package.json index cc11e317..769bdcb6 100644 --- a/package.json +++ b/package.json @@ -90,7 +90,15 @@ ] }, "mac": { - "target": "dmg", + "target": [ + { + "target": "dmg", + "arch": [ + "x64", + "arm64" + ] + } + ], "icon": "renderer/img/icon.icns", "category": "public.app-category.utilities", "identity": null, From c2aff4c5d59086b3f1371b5193ebce3d08459904 Mon Sep 17 00:00:00 2001 From: Oleg Shulyakov Date: Sat, 18 Jun 2022 23:00:02 +0300 Subject: [PATCH 2/2] #379 Add macos universal architecture --- package.json | 1 + 1 file changed, 1 insertion(+) diff --git a/package.json b/package.json index 769bdcb6..b34a9f5e 100644 --- a/package.json +++ b/package.json @@ -94,6 +94,7 @@ { "target": "dmg", "arch": [ + "universal", "x64", "arm64" ]