diff options
author | Kirill Chibisov <contact@kchibisov.com> | 2024-01-06 04:48:40 +0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-01-06 04:48:40 +0400 |
commit | 295ac412de849872e23077d278bcb9cc2021468b (patch) | |
tree | 07730c9c2db73fa6ebcfcd179eb91bbc2beed669 | |
parent | 213f73e8d602e38e9eaed876a7edf68b80caf5e4 (diff) | |
download | alacritty-295ac412de849872e23077d278bcb9cc2021468b.tar.gz alacritty-295ac412de849872e23077d278bcb9cc2021468b.zip |
Bump winit to 0.29.9
Fixes #7559.
Fixes #7533.
-rw-r--r-- | CHANGELOG.md | 1 | ||||
-rw-r--r-- | Cargo.lock | 4 | ||||
-rw-r--r-- | alacritty/Cargo.toml | 2 |
3 files changed, 4 insertions, 3 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index 94d6a926..c3010190 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -31,6 +31,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/). - xdotool modifiers input not working correctly on X11 - Parsing numbers fails for mouse bindings - Some config options overriding each other in CLI/IPC +- Numpad `Left` used for numpad `Up` ## 0.13.0 @@ -2310,9 +2310,9 @@ checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538" [[package]] name = "winit" -version = "0.29.8" +version = "0.29.9" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0dc1a7ae1076890701c7dd71ea35b2aebaf9aeb7b8868ac2d33b1c7e8ef93c00" +checksum = "c2376dab13e09c01ad8b679f0dbc7038af4ec43d9a91344338e37bd686481550" dependencies = [ "ahash", "android-activity", diff --git a/alacritty/Cargo.toml b/alacritty/Cargo.toml index d0d6ab35..41921ac1 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.8", default-features = false, features = ["rwh_05", "serde"] } +winit = { version = "0.29.9", default-features = false, features = ["rwh_05", "serde"] } [build-dependencies] gl_generator = "0.14.0" |