fix clipboard and screen maximize

This commit is contained in:
fmtabbara
2022-03-03 12:18:08 +00:00
parent b7bc713cd4
commit b9ef848523
2 changed files with 8 additions and 2 deletions
+2 -2
View File
@@ -13,13 +13,13 @@ rust-version = "1.56"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[build-dependencies]
tauri-build = { version = "1.0.0-rc.3" }
tauri-build = { version = "1.0.0-rc.3", features = [] }
[dependencies]
serde_json = "1.0"
serde = { version = "1.0", features = ["derive"] }
strum = { version = "0.23", features = ["derive"] }
tauri = { version = "1.0.0-rc.3", features = ["shell-open"] }
tauri = { version = "1.0.0-rc.3", features = ["clipboard-all", "shell-open", "window-maximize"] }
tokio = { version = "1.10", features = ["sync"] }
dirs = "4.0"
bip39 = "1.0"
+6
View File
@@ -49,6 +49,12 @@
"active": false
},
"allowlist": {
"window": {
"maximize": true
},
"clipboard": {
"all": true
},
"shell": {
"open": true
}