-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtauri.conf.json
More file actions
97 lines (97 loc) · 2.38 KB
/
Copy pathtauri.conf.json
File metadata and controls
97 lines (97 loc) · 2.38 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
{
"$schema": "https://schema.tauri.app/config/2",
"productName": "Rustris",
"version": "0.0.2",
"identifier": "com.rustris.gigamog",
"build": {
"beforeDevCommand": "cd frontend && npm run dev",
"devUrl": "http://localhost:5173",
"beforeBuildCommand": "",
"frontendDist": "./frontend/dist"
},
"bundle": {
"active": true,
"targets": "all",
"icon": [
"icons/icon.png"
],
"category": "Game",
"shortDescription": "Lutris game manager interface",
"longDescription": "A modern interface for managing Lutris games, Wine versions, and Proton compatibility tools",
"linux": {
"deb": {
"depends": [],
"files": {}
},
"rpm": {
"depends": [],
"release": "1",
"files": {}
},
"appimage": {
"bundleMediaFramework": true
}
}
},
"app": {
"withGlobalTauri": true,
"windows": [
{
"fullscreen": false,
"resizable": true,
"title": "Rustris",
"width": 1024,
"height": 720,
"center": true,
"minWidth": 400,
"minHeight": 300,
"visible": false,
"backgroundColor": "#0a0a0a"
}
],
"security": {
"csp": null,
"assetProtocol": {
"enable": true,
"scope": [
"$HOME/.local/share/lutris/**",
"$HOME/.cache/lutris/**",
"$HOME/.var/app/net.lutris.Lutris/**",
"$HOME/.steam/**",
"$HOME/.local/share/Steam/**",
"$HOME/Downloads/**",
"$HOME/**/*.yml",
"$HOME/**/*.db",
"$HOME/**/*.log",
"$HOME/**/*.jpg",
"$HOME/**/*.png"
]
},
"capabilities": [
{
"identifier": "main-capability",
"description": "Main app capabilities",
"windows": ["main"],
"permissions": [
"core:default",
"core:event:allow-listen",
"core:event:allow-emit",
"core:window:allow-create",
"core:webview:allow-create-webview",
"core:webview:allow-create-webview-window",
"dialog:default",
"dialog:allow-open",
{
"identifier": "opener:allow-open-path",
"allow": [
{
"path": "**/*"
}
]
}
]
}
]
}
}
}