-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathneutralino.config.json
52 lines (52 loc) · 1.34 KB
/
neutralino.config.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
{
"$schema": "https://raw.githubusercontent.com/neutralinojs/neutralinojs/main/schemas/neutralino.config.schema.json",
"applicationId": "com.mogita.osmflux",
"version": "$CI_RELEASE_VERSION",
"defaultMode": "window",
"port": 0,
"documentRoot": "/gui/build/",
"url": "/",
"enableServer": true,
"enableNativeAPI": true,
"exportAuthInfo": true,
"tokenSecurity": "one-time",
"logging": {
"enabled": true,
"writeToLogFile": false
},
"nativeAllowList": ["filesystem.*", "app.*", "os.*", "computer.*", "storage.*", "window.*", "debug.log"],
"globalVariables": {
"RELEASE_INFO": {
"channel": "$CI_RELEASE_CHANNEL"
}
},
"modes": {
"window": {
"title": "OsmFlux",
"width": 800,
"height": 540,
"minWidth": 800,
"minHeight": 540,
"fullScreen": false,
"alwaysOnTop": false,
"icon": "/gui/public/osmflux-dev.png",
"enableInspector": true,
"borderless": false,
"maximize": false,
"hidden": false,
"resizable": true,
"exitProcessOnClose": true
}
},
"cli": {
"binaryName": "osmflux",
"resourcesPath": "/gui/build/",
"extensionsPath": "/extensions/",
"binaryVersion": "4.13.0",
"clientVersion": "3.11.0",
"frontendLibrary": {
"patchFile": "/gui/index.html",
"devUrl": "http://localhost:3000"
}
}
}