Updated Tauri Config to accomodate needed APIs and change default size
This commit is contained in:
parent
d6c5e52527
commit
cce3338dc9
2 changed files with 12 additions and 3 deletions
|
@ -13,7 +13,7 @@ edition = "2021"
|
|||
tauri-build = { version = "1.4", features = [] }
|
||||
|
||||
[dependencies]
|
||||
tauri = { version = "1.4", features = ["shell-open"] }
|
||||
tauri = { version = "1.4", features = [ "os-all", "path-all", "dialog-open", "shell-open"] }
|
||||
quick-xml = { version = "0.29.0", features = ["serde", "serialize"] }
|
||||
serde = { version = "1.0", features = ["derive"] }
|
||||
serde-xml-rs = "0.6.0"
|
||||
|
|
|
@ -16,6 +16,15 @@
|
|||
"shell": {
|
||||
"all": false,
|
||||
"open": true
|
||||
},
|
||||
"dialog": {
|
||||
"open": true
|
||||
},
|
||||
"path": {
|
||||
"all": true
|
||||
},
|
||||
"os": {
|
||||
"all": true
|
||||
}
|
||||
},
|
||||
"bundle": {
|
||||
|
@ -38,8 +47,8 @@
|
|||
"fullscreen": false,
|
||||
"resizable": true,
|
||||
"title": "comicinfo-editor-v2",
|
||||
"width": 800,
|
||||
"height": 600
|
||||
"width": 1280,
|
||||
"height": 720
|
||||
}
|
||||
]
|
||||
}
|
||||
|
|
Reference in a new issue