diff --git a/bin/macos/geth b/bin/macos/geth new file mode 100644 index 0000000..e0b485b Binary files /dev/null and b/bin/macos/geth differ diff --git a/build/icon.icns b/build/icon.icns new file mode 100644 index 0000000..73a4d66 Binary files /dev/null and b/build/icon.icns differ diff --git a/package.json b/package.json index 874d583..87635e2 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "Ether1Wallet", - "version": "0.2.1", + "version": "0.2.2", "description": "Desktop wallet for Ether1 currency", "main": "main.js", "scripts": { @@ -19,20 +19,28 @@ "index.html" ], "win": { - "icon": "build/icon.png", "target": "7z", + "icon": "build/icon.png", "artifactName": "Windows-${productName}-${version}.${ext}", "extraResources": [ "bin/win/*" ] }, "linux": { - "icon": "build/icon.png", "target": "tar.gz", + "icon": "build/icon.icns", "artifactName": "Linux-${productName}-${version}.${ext}", "extraResources": [ "bin/linux/*" ] + }, + "mac": { + "target": "tar.gz", + "icon": "build/icon.icns", + "artifactName": "MacOS-${productName}-${version}.${ext}", + "extraResources": [ + "bin/macos/*" + ] } }, "repository": "https://github.com/taeguscromis/Ether1DesktopWallet",