forked from Legcord/Legcord
-
Notifications
You must be signed in to change notification settings - Fork 2
/
electron-builder.json
69 lines (69 loc) · 2.21 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
{
"electronVersion": "22.3.27",
"asar": true,
"productName": "ArmCord",
"appId": "com.alex313031.armcord",
"generateUpdatesFilesForAllChannels": false,
"directories": {
"app": ".",
"buildResources": "build",
"output": "dist"
},
"files": ["!*", "assets", "node_modules", "ts-out", "package.json", "LICENSE.md"],
"extraFiles": [
{
"from": "assets/icon.png"
}
],
"linux": {
"target": ["zip", "deb", "rpm", "appimage"],
"icon": "build/icons",
"maintainer": "Alex313031",
"vendor": "Alex313031",
"synopsis": "ArmCord is a custom client designed to enhance your Discord experience while keeping everything lightweight. Legacy OS Builds.",
"category": "Network;",
"executableName": "armcord",
"artifactName": "armcord_${version}_${arch}.${ext}",
"executableArgs": ["--ozone-platform-hint=auto"],
"desktop": {
"Name": "ArmCord",
"StartupWMClass": "armcord",
"Keywords": "discord;arm;",
"Icon": "armcord"
}
},
"snap": {
"allowNativeWayland": true
},
"win": {
"target": ["zip", "portable", "nsis"],
"icon": "build/icon.ico",
"publisherName": "Alex313031",
"executableName": "ArmCord",
"artifactName": "ArmCord_${version}_${arch}.${ext}"
},
"nsis": {
"shortcutName": "ArmCord",
"artifactName": "ArmCord_setup_${version}_${arch}.${ext}",
"uninstallDisplayName": "ArmCord ${version}",
"license": "LICENSE.md",
"include": "build/installer.nsh",
"deleteAppDataOnUninstall": false,
"oneClick": false,
"allowToChangeInstallationDirectory": true
},
"appx": {
"publisherDisplayName": "Alex313031",
"applicationId": "alex313031.ArmCord"
},
"portable": {
"artifactName": "ArmCord_portable_${version}_${arch}.${ext}"
},
"mac": {
"category": "public.app-category.social-networking",
"icon": "build/icon.icns",
"darkModeSupport": true,
"artifactName": "ArmCord_${version}_macos_${arch}.${ext}",
"target": ["dmg", "zip"]
}
}