diff options
author | Kirill Chibisov <contact@kchibisov.com> | 2023-12-31 22:12:35 +0400 |
---|---|---|
committer | Christian Duerr <contact@christianduerr.com> | 2024-01-06 08:59:54 +0100 |
commit | f5ed831c3083438e1dd37e1e5f8aed6136e687e1 (patch) | |
tree | af2efba488b26941a9dcc085c108c5908e3fdaa0 | |
parent | 3d858c7c8d276bb8b37e3a55af811345feb583fb (diff) | |
download | alacritty-f5ed831c3083438e1dd37e1e5f8aed6136e687e1.tar.gz alacritty-f5ed831c3083438e1dd37e1e5f8aed6136e687e1.zip |
Bump winit to 0.29.8
Fixes #7514.
Fixes #7502.
Fixes #7494.
Fixes #7474.
Fixes #7472.
-rw-r--r-- | CHANGELOG.md | 5 | ||||
-rw-r--r-- | Cargo.lock | 4 | ||||
-rw-r--r-- | alacritty/Cargo.toml | 2 |
3 files changed, 8 insertions, 3 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index 15a1da4f..15345e8d 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 + <number>` 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 @@ -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 5e23a525..eb9a8300 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" |