From 659550ee34fe1b45ea176b88e60901d277d210a3 Mon Sep 17 00:00:00 2001 From: Kirill Chibisov Date: Sun, 31 Dec 2023 22:12:35 +0400 Subject: Bump winit to 0.29.8 Fixes #7514. Fixes #7502. Fixes #7494. Fixes #7474. Fixes #7472. --- CHANGELOG.md | 5 +++++ Cargo.lock | 4 ++-- alacritty/Cargo.toml | 2 +- 3 files changed, 8 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 16601355..f988f21d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -16,6 +16,11 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/). - Alternate keys not sent for `Shift + ` when using kitty protocol - Alternative keys being swapped in kitty protocol implementation - Powerline glyphs being cut for narrow fonts +- Xmodmap not working on X11 +- Occasional slow startup on some X11 window managers +- Blurry window when using `window.dimensions` on some Wayland compositors +- IME input lagging behind on X11 +- xdotool modifiers input not working correctly on X11 ## 0.13.0 diff --git a/Cargo.lock b/Cargo.lock index 0783e44e..adfbb411 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2309,9 +2309,9 @@ checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538" [[package]] name = "winit" -version = "0.29.7" +version = "0.29.8" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7fd430cd4560ee9c48885a4ef473b609a56796e37b1e18222abee146143f7457" +checksum = "0dc1a7ae1076890701c7dd71ea35b2aebaf9aeb7b8868ac2d33b1c7e8ef93c00" dependencies = [ "ahash", "android-activity", diff --git a/alacritty/Cargo.toml b/alacritty/Cargo.toml index ad732cfd..d0d6ab35 100644 --- a/alacritty/Cargo.toml +++ b/alacritty/Cargo.toml @@ -39,7 +39,7 @@ serde_json = "1" serde_yaml = "0.9.25" toml = "0.8.2" unicode-width = "0.1" -winit = { version = "0.29.7", default-features = false, features = ["rwh_05", "serde"] } +winit = { version = "0.29.8", default-features = false, features = ["rwh_05", "serde"] } [build-dependencies] gl_generator = "0.14.0" -- cgit