summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKirill Chibisov <contact@kchibisov.com>2023-12-31 22:12:35 +0400
committerGitHub <noreply@github.com>2023-12-31 22:12:35 +0400
commit659550ee34fe1b45ea176b88e60901d277d210a3 (patch)
tree660a2ca14e5c41a9d293d00a45d3ac623a724c76
parentc07b65c760be0c87f737e80cf8bea2809e59c928 (diff)
downloadalacritty-659550ee34fe1b45ea176b88e60901d277d210a3.tar.gz
alacritty-659550ee34fe1b45ea176b88e60901d277d210a3.zip
Bump winit to 0.29.8
Fixes #7514. Fixes #7502. Fixes #7494. Fixes #7474. Fixes #7472.
-rw-r--r--CHANGELOG.md5
-rw-r--r--Cargo.lock4
-rw-r--r--alacritty/Cargo.toml2
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 + <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
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"