lbry-desktop/electron-builder.json

49 lines
870 B
JSON
Raw Normal View History

2017-12-06 22:24:01 +01:00
{
2017-12-07 16:06:20 +01:00
"appId": "io.lbry.LBRY",
2018-02-07 19:22:08 +01:00
"productName": "LBRY",
2017-12-08 02:42:35 +01:00
"mac": {
2018-02-07 19:22:08 +01:00
"target": "dmg",
2017-12-15 21:33:01 +01:00
"category": "public.app-category.entertainment"
2017-12-08 02:42:35 +01:00
},
2017-12-06 22:24:01 +01:00
"dmg": {
"iconSize": 128,
"contents": [
{
"x": 115,
"y": 164
},
{
"x": 387,
"y": 164,
"type": "link",
"path": "/Applications"
}
],
"window": {
"x": 200,
"y": 200,
"width": 500,
"height": 300
},
2017-12-08 02:42:35 +01:00
"background": "build/background.png"
2017-12-06 22:24:01 +01:00
},
"protocols": [
{
2018-02-11 17:33:25 +01:00
"name": "LBRY URI",
2017-12-06 22:24:01 +01:00
"schemes": ["lbry"],
"role": "Viewer"
}
],
"linux": {
2018-02-11 18:29:26 +01:00
"category": "AudioVideo;Video",
"desktop": {
2018-02-11 18:42:28 +01:00
"MimeType": "x-scheme-handler/lbry;"
2018-02-11 18:29:26 +01:00
}
2017-12-06 22:24:01 +01:00
},
"nsis": {
"perMachine": true
},
2018-02-11 19:28:40 +01:00
"beforeBuild": "build/downloadDaemon.js",
"artifactName": "${productName}_${version}.${ext}"
2017-12-06 22:24:01 +01:00
}