Skip to content

Commit

Permalink
chore(tauri-runtime-wry): update tao to 0.30 and wry to 0.43 (#10895)
Browse files Browse the repository at this point in the history
  • Loading branch information
lucasfernog authored Sep 4, 2024
1 parent 0c46e48 commit 77056b1
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 7 deletions.
5 changes: 5 additions & 0 deletions .changes/update-wry.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"tauri-runtime-wry": patch:deps
---

Update tao to 0.30 and wry to 0.43.
8 changes: 4 additions & 4 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions crates/tauri-runtime-wry/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,13 +17,13 @@ rustc-args = ["--cfg", "docsrs"]
rustdoc-args = ["--cfg", "docsrs"]

[dependencies]
wry = { version = "0.42", default-features = false, features = [
wry = { version = "0.43.1", default-features = false, features = [
"drag-drop",
"protocol",
"os-webview",
"linux-body",
] }
tao = { version = "0.29.1", default-features = false, features = ["rwh_06"] }
tao = { version = "0.30", default-features = false, features = ["rwh_06"] }
tauri-runtime = { version = "2.0.0-rc.7", path = "../tauri-runtime" }
tauri-utils = { version = "2.0.0-rc.7", path = "../tauri-utils" }
raw-window-handle = "0.6"
Expand Down
2 changes: 1 addition & 1 deletion crates/tauri-runtime-wry/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2912,7 +2912,7 @@ fn handle_user_message<T: UserEvent>(
#[allow(unused_variables)]
WindowMessage::SetSkipTaskbar(skip) => {
#[cfg(any(windows, target_os = "linux"))]
window.set_skip_taskbar(skip);
let _ = window.set_skip_taskbar(skip);
}
WindowMessage::SetCursorGrab(grab) => {
let _ = window.set_cursor_grab(grab);
Expand Down

0 comments on commit 77056b1

Please sign in to comment.