forked from Pony-House/Client
-
Notifications
You must be signed in to change notification settings - Fork 3
/
electron-builder.json5
54 lines (54 loc) · 1.34 KB
/
electron-builder.json5
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
/**
* @see https://www.electron.build/configuration/configuration
*/
{
appId: 'SpaceShip',
productName: 'SpaceShip',
copyright: 'Copyright © 2023 ${author}',
asar: true,
directories: {
output: 'release/${version}',
},
files: ['dist-electron', 'dist'],
linux: {
icon: 'build/icon.png',
target: ['AppImage', 'deb', 'tar.gz'],
category: 'Network;Chat;InstantMessaging;',
desktop: {
Comment: 'SpaceShip matrix client',
Keywords: 'chat;spaceship;messaging;messenger;matrix;matrix-client;brony',
},
},
mac: {
icon: 'build/icon.icns',
category: 'public.app-category.social-networking',
artifactName: '${productName}_${version}.${ext}',
target: ['dmg', 'zip'],
},
win: {
icon: 'build/icon.ico',
target: [
'zip',
{
target: 'nsis',
arch: ['x64'],
},
],
artifactName: '${productName}_${version}.${ext}',
},
nsis: {
oneClick: false,
perMachine: false,
allowToChangeInstallationDirectory: true,
deleteAppDataOnUninstall: false,
uninstallDisplayName: 'Pony House',
installerSidebar: 'build/nsisSidebar.bmp',
uninstallerSidebar: 'build/nsisSidebar.bmp',
license: 'LICENSE',
},
publish: {
provider: 'generic',
channel: 'latest',
url: 'https://github.com/pixxels-team/Pixxels-App/releases/latest',
},
}