Skip to content

Commit 9fd446a

Browse files
committed
feat: Add contributions to tauri.conf.json
1 parent 514e1a9 commit 9fd446a

File tree

2 files changed

+38
-14
lines changed

2 files changed

+38
-14
lines changed

GUI/ETVR/src-tauri/Cargo.toml

+31-7
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name = "eyetrackvr"
33
version = "1.0.0"
44
description = "Eye tracking for VR"
5-
authors = [ "DaOfficialWizard",]
5+
authors = ["DaOfficialWizard", "Luckmer", "RedHawk989"]
66
license = "MIT"
77
repository = "https://github.com/RedHawk989/EyeTrackVR"
88
default-run = "eyetrackvr"
@@ -21,16 +21,40 @@ futures-util = "0.3.25"
2121
mdns-sd = "0.5.9"
2222

2323
[features]
24-
default = [ "custom-protocol",]
25-
custom-protocol = [ "tauri/custom-protocol",]
24+
default = ["custom-protocol"]
25+
custom-protocol = ["tauri/custom-protocol"]
2626

2727
[dependencies.serde]
2828
version = "1.0"
29-
features = [ "derive",]
29+
features = ["derive"]
3030

3131
[dependencies.tauri]
3232
version = "1.1.1"
33-
features = [ "fs-create-dir", "fs-read-dir", "fs-write-file", "http-all", "icon-ico", "notification-all", "os-all", "path-all", "process-relaunch", "shell-open", "system-tray", "window-center", "window-close", "window-hide", "window-maximize", "window-minimize", "window-set-decorations", "window-set-focus", "window-set-fullscreen", "window-set-size", "window-start-dragging", "window-unmaximize", "window-unminimize",]
33+
features = [
34+
"fs-create-dir",
35+
"fs-read-dir",
36+
"fs-write-file",
37+
"http-all",
38+
"icon-ico",
39+
"notification-all",
40+
"os-all",
41+
"path-all",
42+
"process-relaunch",
43+
"shell-open",
44+
"system-tray",
45+
"window-center",
46+
"window-close",
47+
"window-hide",
48+
"window-maximize",
49+
"window-minimize",
50+
"window-set-decorations",
51+
"window-set-focus",
52+
"window-set-fullscreen",
53+
"window-set-size",
54+
"window-start-dragging",
55+
"window-unmaximize",
56+
"window-unminimize",
57+
]
3458

3559
[dependencies.tauri-plugin-window-state]
3660
git = "https://github.com/tauri-apps/tauri-plugin-window-state/"
@@ -46,11 +70,11 @@ rev = "9bd993a"
4670

4771
[dependencies.reqwest]
4872
version = "0.11"
49-
features = [ "json", "rustls-tls",]
73+
features = ["json", "rustls-tls"]
5074

5175
[dependencies.tokio]
5276
version = "1"
53-
features = [ "full",]
77+
features = ["full"]
5478

5579
[build-dependencies.tauri-build]
5680
version = "1.1.1"

GUI/ETVR/src-tauri/tauri.conf.json

+7-7
Original file line numberDiff line numberDiff line change
@@ -19,12 +19,12 @@
1919
"writeText": false
2020
},
2121
"dialog": {
22-
"all": false,
23-
"ask": false,
24-
"confirm": false,
25-
"message": false,
26-
"open": false,
27-
"save": false
22+
"all": true,
23+
"ask": true,
24+
"confirm": true,
25+
"message": true,
26+
"open": true,
27+
"save": true
2828
},
2929
"fs": {
3030
"all": false,
@@ -192,4 +192,4 @@
192192
"iconAsTemplate": true
193193
}
194194
}
195-
}
195+
}

0 commit comments

Comments
 (0)