aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKirill Chibisov <contact@kchibisov.com>2024-01-06 04:48:40 +0400
committerChristian Duerr <contact@christianduerr.com>2024-01-06 08:59:54 +0100
commit3a2b959f8d003dba3d737a981d645c8f51b36472 (patch)
tree64ded2442449b0d9dd06bbf58542ee5d13aa9df7
parent53e7059613863e05dbcf71327dad75ffa1a95513 (diff)
downloadalacritty-3a2b959f8d003dba3d737a981d645c8f51b36472.tar.gz
alacritty-3a2b959f8d003dba3d737a981d645c8f51b36472.zip
Bump winit to 0.29.9
Fixes #7559. Fixes #7533.
-rw-r--r--CHANGELOG.md1
-rw-r--r--Cargo.lock4
-rw-r--r--alacritty/Cargo.toml2
3 files changed, 4 insertions, 3 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 2cb10ba5..4c44959a 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
diff --git a/Cargo.lock b/Cargo.lock
index 65ea2998..a50bc3fa 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -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 eb9a8300..f5780562 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"