feat: add attach media button
This commit is contained in:
1
src-tauri/Cargo.lock
generated
1
src-tauri/Cargo.lock
generated
@@ -949,6 +949,7 @@ dependencies = [
|
||||
"tauri-plugin-decorum",
|
||||
"tauri-plugin-devtools",
|
||||
"tauri-plugin-dialog",
|
||||
"tauri-plugin-fs",
|
||||
"tauri-plugin-os",
|
||||
"tauri-plugin-prevent-default",
|
||||
"tauri-plugin-process",
|
||||
|
||||
@@ -30,6 +30,7 @@ tauri-plugin-dialog = "2.0.0-beta"
|
||||
tauri-plugin-shell = "2.0.0-beta"
|
||||
tauri-plugin-updater = "2.0.0-beta"
|
||||
tauri-plugin-process = "2.0.0-beta"
|
||||
tauri-plugin-fs = "2.0.0-beta"
|
||||
tauri-plugin-decorum = "0.1.5"
|
||||
serde = { version = "1", features = ["derive"] }
|
||||
serde_json = "1"
|
||||
|
||||
@@ -32,6 +32,7 @@
|
||||
"updater:allow-check",
|
||||
"updater:allow-download-and-install",
|
||||
"clipboard-manager:allow-write-text",
|
||||
"clipboard-manager:allow-read-text"
|
||||
"clipboard-manager:allow-read-text",
|
||||
"fs:allow-read-file"
|
||||
]
|
||||
}
|
||||
|
||||
@@ -117,6 +117,7 @@ fn main() {
|
||||
Ok(())
|
||||
})
|
||||
.enable_macos_default_menu(false)
|
||||
.plugin(tauri_plugin_fs::init())
|
||||
.plugin(tauri_plugin_prevent_default::init())
|
||||
.plugin(tauri_plugin_process::init())
|
||||
.plugin(tauri_plugin_updater::Builder::new().build())
|
||||
|
||||
Reference in New Issue
Block a user