(feat): add icons to the electron app
(feat): bump version
This commit is contained in:
parent
b5e7b8e2c1
commit
4445852c42
13 changed files with 38 additions and 4 deletions
|
|
@ -41,6 +41,7 @@
|
|||
"productName": "Tensamin",
|
||||
"executableName": "tensamin",
|
||||
"artifactName": "Tensamin-${version}-${os}-${arch}.${ext}",
|
||||
"icon": "build/icons/icon.png",
|
||||
"directories": {
|
||||
"output": "release"
|
||||
},
|
||||
|
|
@ -52,10 +53,15 @@
|
|||
{
|
||||
"from": "../web/dist",
|
||||
"to": "web"
|
||||
},
|
||||
{
|
||||
"from": "build/icons/icon.png",
|
||||
"to": "icons/icon.png"
|
||||
}
|
||||
],
|
||||
"linux": {
|
||||
"target": ["AppImage", "deb", "rpm"],
|
||||
"icon": "build/icons",
|
||||
"executableName": "tensamin",
|
||||
"category": "Network",
|
||||
"maintainer": "Methanium",
|
||||
|
|
@ -67,10 +73,12 @@
|
|||
}
|
||||
},
|
||||
"win": {
|
||||
"target": ["nsis", "portable"]
|
||||
"target": ["nsis", "portable"],
|
||||
"icon": "build/icons/icon.ico"
|
||||
},
|
||||
"mac": {
|
||||
"target": ["dmg"]
|
||||
"target": ["dmg"],
|
||||
"icon": "build/icons/icon.icns"
|
||||
},
|
||||
"publish": null
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue