-
-
Notifications
You must be signed in to change notification settings - Fork 33
Expand file tree
/
Copy pathtauri.conf.json
More file actions
124 lines (124 loc) · 3.4 KB
/
tauri.conf.json
File metadata and controls
124 lines (124 loc) · 3.4 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
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
112
113
114
115
116
117
118
119
120
121
122
123
124
{
"$schema": "https://schema.tauri.app/config/2",
"build": {
"beforeBuildCommand": "pnpm build",
"beforeDevCommand": "pnpm dev",
"frontendDist": "../dist",
"devUrl": "http://localhost:3001"
},
"bundle": {
"active": true,
"category": "Utility",
"copyright": "Defguard",
"targets": [
"deb",
"app"
],
"externalBin": [],
"icon": [
"icons/32x32.png",
"icons/128x128.png",
"icons/128x128@2x.png",
"icons/icon.icns",
"icons/icon.ico"
],
"windows": {
"certificateThumbprint": null,
"digestAlgorithm": "sha256",
"timestampUrl": "",
"wix": {
"upgradeCode": "923b21f5-7d3f-4f5e-8dcb-43fe1c65fb43",
"bannerPath": "./resources-windows/msi/top_banner.png",
"dialogImagePath": "./resources-windows/msi/side_banner.png",
"fragmentPaths": [
"./resources-windows/fragments/service.wxs",
"./resources-windows/fragments/provisioning.wxs"
],
"componentRefs": [
"DefguardServiceFragment",
"ProvisioningScriptFragment"
],
"template": "./resources-windows/msi/main.wxs"
}
},
"macOS": {
"bundleVersion": "@BUILD_NUMBER@",
"entitlements": "./Client.entitlements",
"files": {
"embedded.provisionprofile": "Defguard_Client_Mac_App_Store.provisionprofile",
"PlugIns/VPNExtension.appex": "../swift/extension/build/Release/VPNExtension.appex"
},
"minimumSystemVersion": "13.5"
},
"resources": [
"resources/icons/*"
],
"shortDescription": "Defguard desktop client",
"longDescription": "Defguard desktop client",
"linux": {
"deb": {
"files": {
"/usr/sbin/defguard-service": "target/release/defguard-service",
"/usr/lib/systemd/system/defguard-service.service": "../resources-linux/defguard-service.service",
"../control/rules": "../resources-linux/rules",
"../control/postinst": "../resources-linux/postinst",
"../control/prerm": "../resources-linux/prerm",
"../control/postrm": "../resources-linux/postrm"
},
"depends": [
"desktop-file-utils"
]
},
"rpm": {
"files": {
"/usr/sbin/defguard-service": "target/release/defguard-service",
"/lib/systemd/system/defguard-service.service": "../resources-linux/defguard-service.service"
},
"depends": [
"desktop-file-utils"
],
"postInstallScript": "../resources-linux/postinst",
"preRemoveScript": "../resources-linux/prerm",
"postRemoveScript": "../resources-linux/postrm"
}
}
},
"productName": "defguard-client",
"mainBinaryName": "defguard-client",
"identifier": "net.defguard",
"version": "1.6.0",
"app": {
"security": {
"capabilities": [
"main-capability"
],
"csp": null
},
"windows": [
{
"fullscreen": false,
"center": true,
"maximized": true,
"height": 720,
"resizable": true,
"maximizable": true,
"minimizable": true,
"closable": true,
"title": "Defguard",
"width": 992,
"minWidth": 650,
"minHeight": 450,
"useHttpsScheme": true
}
]
},
"plugins": {
"deep-link": {
"desktop": {
"schemes": [
"defguard"
]
}
}
}
}