-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathelectron.manifest.json
More file actions
76 lines (76 loc) · 1.89 KB
/
electron.manifest.json
File metadata and controls
76 lines (76 loc) · 1.89 KB
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
{
"executable": "Aquiis.SimpleStart",
"splashscreen": {
"imageFile": "wwwroot/assets/splash.png"
},
"electronCLIFlags": [
"--enable-features=VaapiVideoDecoder",
"--disable-dev-shm-usage"
],
"name": "aquiis",
"description": "Aquiis Property Management",
"author": "Aquiis",
"singleInstance": false,
"environment": "Production",
"aspCoreBackendPort": 8888,
"build": {
"appId": "com.aquiis.propertymanagement",
"productName": "Aquiis",
"copyright": "Copyright © 2026",
"buildVersion": "1.1.2",
"compression": "normal",
"directories": {
"output": "../../../bin/Desktop"
},
"extraResources": [
{
"from": "./bin",
"to": "bin",
"filter": ["**/*"]
}
],
"files": [
{
"from": "./ElectronHostHook/node_modules",
"to": "ElectronHostHook/node_modules",
"filter": ["**/*"]
},
"**/*"
],
"mac": {
"target": "dmg",
"icon": "bin/Assets/icon.icns",
"category": "public.app-category.business"
},
"win": {
"target": "nsis",
"icon": "bin/Assets/icon.ico",
"artifactName": "${productName}-${version}-${arch}-Setup.${ext}"
},
"nsis": {
"oneClick": false,
"perMachine": false,
"allowToChangeInstallationDirectory": true,
"createDesktopShortcut": true,
"createStartMenuShortcut": true,
"shortcutName": "Aquiis"
},
"linux": {
"target": "AppImage",
"icon": "bin/Assets/icon.png",
"category": "Office",
"artifactName": "${productName}-${version}-${arch}.${ext}",
"desktop": {
"entry": {
"X-AppImage-Payload-License": "MIT"
}
},
"extraFiles": [
{
"from": "Assets/com.aquiis.propertymanagement.appdata.xml",
"to": "usr/share/metainfo/com.aquiis.propertymanagement.appdata.xml"
}
]
}
}
}