-
Notifications
You must be signed in to change notification settings - Fork 3
/
electron-builder.json
64 lines (64 loc) · 1.44 KB
/
electron-builder.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"productName": "Super resolution",
"appId": "org.upscayl.superresolution",
"copyright": "Copyright © 2023 ${author}",
"artifactName": "${name}-${version}-${os}.${ext}",
"asar": true,
"extraFiles": [
{
"from": "resources/${os}/bin",
"to": "resources/bin",
"filter": ["**/*"]
},
{
"from": "resources/models",
"to": "resources/models",
"filter": ["**/*"]
}
],
"mac": {
"type": "distribution",
"hardenedRuntime": true,
"entitlements": "main/resources/entitlements.mac.plist",
"entitlementsInherit": "main/resources/entitlements.mac.plist",
"gatekeeperAssess": false,
"target": [
{
"target": "dmg",
"arch": ["x64"]
}
]
},
"dmg": {
"contents": [
{
"x": 130,
"y": 220
},
{
"x": 410,
"y": 220,
"type": "link",
"path": "/Applications"
}
]
},
"linux": {
"target": ["deb", "rpm"],
"maintainer": "Urij Horuzij <[email protected]>",
"category": "Graphics;2DGraphics;RasterGraphics;ImageProcessing;",
"synopsis": "AI Image Upscaler",
"description": "Free and open source AI image upscaler for Linux. It uses the latest AI technology to upscale images to higher resolutions."
},
"win": {
"target": ["nsis"]
},
"nsis": {
"allowToChangeInstallationDirectory": true,
"oneClick": false,
"runAfterFinish": true,
"perMachine": true
},
"files": ["main", "out"],
"publish": [{ "provider": "github", "repo": "super-resolution", "owner": "UrijHoruzij" }]
}