-
Notifications
You must be signed in to change notification settings - Fork 560
/
electron-builder.json
111 lines (111 loc) · 2.68 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
{
"productName": "Simplenote",
"appId": "com.automattic.simplenote",
"generateUpdatesFilesForAllChannels": true,
"directories": {
"output": "./release",
"buildResources": "./resources"
},
"files": ["desktop", "dist", "shared"],
"mac": {
"icon": "./resources/images/app-icon.icns",
"category": "public.app-category.social-networking",
"artifactName": "Simplenote-macOS-${version}.${ext}",
"entitlements": "./resources/macos/entitlements.mac.plist",
"entitlementsInherit": "./resources/macos/entitlements.mac.inherit.plist",
"hardenedRuntime": true,
"target": [
{
"target": "dmg",
"arch": ["universal"]
},
{
"target": "zip",
"arch": ["universal"]
}
],
"mergeASARs": false
},
"dmg": {
"title": "Simplenote Installer",
"artifactName": "Simplenote-macOS-${version}.${ext}",
"icon": "./resources/images/dmg-icon.icns",
"iconSize": 150,
"background": "./resources/images/dmg-background.png",
"contents": [
{
"x": 480,
"y": 240,
"type": "link",
"path": "/Applications"
},
{
"x": 130,
"y": 240,
"type": "file"
}
]
},
"win": {
"icon": "resources/images/simplenote.ico",
"certificateSubjectName": "Automattic, Inc.",
"artifactName": "Simplenote-win-${version}-${arch}.${ext}",
"target": [
{
"target": "nsis",
"arch": ["ia32", "x64"]
}
]
},
"nsis": {
"artifactName": "Simplenote-win-${version}-${arch}.${ext}",
"deleteAppDataOnUninstall": true,
"oneClick": false
},
"linux": {
"artifactName": "Simplenote-linux-${version}-${arch}.${ext}",
"target": [
{
"target": "AppImage",
"arch": ["x64", "arm64"]
},
{
"target": "deb",
"arch": ["x64", "arm64"]
},
{
"target": "rpm",
"arch": ["x64"]
},
{
"target": "tar.gz",
"arch": ["x64", "arm64"]
}
],
"synopsis": "The simplest way to keep notes",
"category": "Utility",
"executableName": "simplenote",
"desktop": {
"Name": "Simplenote",
"Comment": "Simplenote for Linux",
"GenericName": "Note Taking Application",
"Type": "Application",
"Icon": "simplenote",
"StartupNotify": true,
"Categories": "Utility"
},
"vendor": "Automattic, Inc.",
"maintainer": "Automattic, Inc. <[email protected]>"
},
"protocols": [
{
"name": "simplenote",
"schemes": ["simplenote"]
}
],
"deb": {
"compression": "gz"
},
"afterSign": "./after_sign_hook.js",
"afterAllArtifactBuild": "./after_sign_hook.js"
}