This commit is contained in:
Taegus
2019-01-02 11:06:24 +01:00
parent f1afa68b11
commit 87e382aa17
3 changed files with 11 additions and 3 deletions

BIN
bin/macos/geth Normal file

Binary file not shown.

BIN
build/icon.icns Normal file

Binary file not shown.

View File

@@ -1,6 +1,6 @@
{ {
"name": "Ether1Wallet", "name": "Ether1Wallet",
"version": "0.2.1", "version": "0.2.2",
"description": "Desktop wallet for Ether1 currency", "description": "Desktop wallet for Ether1 currency",
"main": "main.js", "main": "main.js",
"scripts": { "scripts": {
@@ -19,20 +19,28 @@
"index.html" "index.html"
], ],
"win": { "win": {
"icon": "build/icon.png",
"target": "7z", "target": "7z",
"icon": "build/icon.png",
"artifactName": "Windows-${productName}-${version}.${ext}", "artifactName": "Windows-${productName}-${version}.${ext}",
"extraResources": [ "extraResources": [
"bin/win/*" "bin/win/*"
] ]
}, },
"linux": { "linux": {
"icon": "build/icon.png",
"target": "tar.gz", "target": "tar.gz",
"icon": "build/icon.icns",
"artifactName": "Linux-${productName}-${version}.${ext}", "artifactName": "Linux-${productName}-${version}.${ext}",
"extraResources": [ "extraResources": [
"bin/linux/*" "bin/linux/*"
] ]
},
"mac": {
"target": "tar.gz",
"icon": "build/icon.icns",
"artifactName": "MacOS-${productName}-${version}.${ext}",
"extraResources": [
"bin/macos/*"
]
} }
}, },
"repository": "https://github.com/taeguscromis/Ether1DesktopWallet", "repository": "https://github.com/taeguscromis/Ether1DesktopWallet",