-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtauri.conf.json
More file actions
81 lines (80 loc) · 2.02 KB
/
tauri.conf.json
File metadata and controls
81 lines (80 loc) · 2.02 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
{
"$schema": "https://schema.tauri.app/config/2",
"productName": "OpenVCS",
"identifier": "dev.jordon.openvcs",
"build": {
"beforeDevCommand": "node ../Backend/scripts/run-tauri-before-command.js dev",
"beforeBuildCommand": "node scripts/run-tauri-before-command.js build",
"devUrl": "http://localhost:1420",
"frontendDist": "../Frontend/dist"
},
"app": {
"withGlobalTauri": true,
"windows": [
{
"title": "OpenVCS",
"width": 1100,
"height": 600,
"resizable": true,
"minWidth": 1100,
"minHeight": 600
}
],
"security": {
"csp": null
}
},
"bundle": {
"active": true,
"targets": [
"rpm",
"app",
"deb",
"nsis",
"appimage"
],
"icon": [
"icons/32x32.png",
"icons/128x128.png",
"icons/128x128@2x.png",
"icons/icon.icns",
"icons/icon.ico"
],
"resources": [
"../target/openvcs/built-in-plugins",
"../target/openvcs/node-runtime"
],
"licenseFile": "../LICENSE",
"publisher": "Jordon Brooks",
"shortDescription": "A simple, cross-platform GUI for Git.",
"longDescription": "OpenVCS is a simple, cross-platform GUI for Git.",
"homepage": "https://bbgames.dev",
"category": "Development",
"linux": {
"appimage": {
"bundleMediaFramework": false,
"files": {}
},
"deb": {
"files": {}
},
"rpm": {
"epoch": 0,
"files": {},
"release": "1"
}
},
"createUpdaterArtifacts": true
},
"plugins": {
"updater": {
"active": true,
"endpoints": [
"https://github.com/Jordonbc/OpenVCS/releases/latest/download/latest.json",
"https://github.com/Jordonbc/OpenVCS/releases/download/openvcs-nightly/latest.json"
],
"dialog": false,
"pubkey": "dW50cnVzdGVkIGNvbW1lbnQ6IG1pbmlzaWduIHB1YmxpYyBrZXk6IDhBQzc3RDI3RTg4MDUzNzMKUldSelU0RG9KMzNIaWdNaFI3R1JoVzZOb0h4c2hNdFdCMTBneFQyamZkT1VKc2E0NjZhODB5WkQK"
}
}
}