lbry-desktop/electron-builder.json
Igor Gassmann b9f4d7b307
chore: migrate to AppImage and update publish workflow (#1010)
The app now uses AppImage instead of .deb files for Linux. Thanks to this change, the app supports now auto-updates on Linux too.

The publishing workflow has been updated. It uses now the publishing mechanisms offered by electron-builder.
2018-03-07 18:03:45 -05:00

54 lines
967 B
JSON

{
"appId": "io.lbry.LBRY",
"productName": "LBRY",
"publish": [{
"provider": "s3",
"bucket": "releases.lbry.io",
"path": "app/latest"
}, "github"],
"mac": {
"target": "dmg",
"category": "public.app-category.entertainment"
},
"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
},
"background": "./build/background.png"
},
"protocols": [
{
"name": "LBRY URI",
"schemes": ["lbry"],
"role": "Viewer"
}
],
"linux": {
"target": "AppImage",
"category": "AudioVideo;Video",
"desktop": {
"MimeType": "x-scheme-handler/lbry;"
}
},
"nsis": {
"perMachine": true
},
"artifactName": "${productName}_${version}.${ext}"
}