diff options
author | Kirill Chibisov <contact@kchibisov.com> | 2023-09-26 20:48:19 +0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-09-26 20:48:19 +0400 |
commit | 47d500770a7fe306d710ca2cd9a0758c27a639a2 (patch) | |
tree | 1a7d67f7b385fadf08835ee84c8b7c75ab45a1af | |
parent | a58fb39b68caa34b073f66911c0ac6945f56eac2 (diff) | |
download | alacritty-47d500770a7fe306d710ca2cd9a0758c27a639a2.tar.gz alacritty-47d500770a7fe306d710ca2cd9a0758c27a639a2.zip |
Bump VTE to 0.12.0
Fixes #6845.
-rw-r--r-- | CHANGELOG.md | 1 | ||||
-rw-r--r-- | Cargo.lock | 6 | ||||
-rw-r--r-- | alacritty_terminal/Cargo.toml | 2 |
3 files changed, 6 insertions, 3 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index 40273970..df77b457 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -40,6 +40,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/). - OSC 52 paste ability is now **disabled by default**; use `terminal.osc52` to adjust it - Apply `colors.transparent_background_colors` for selections, hints, and search matches - Underline full hint during keyboard selection +- Synchronized updates now use `CSI 2026` instead of legacy `DCS` variant ### Fixed @@ -2178,10 +2178,12 @@ dependencies = [ [[package]] name = "vte" -version = "0.11.1" +version = "0.12.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f5022b5fbf9407086c180e9557be968742d839e68346af7792b8592489732197" +checksum = "401dc1020e10f74d38616c1f1ab92ccd85dc902705a29d0730e0fbea8534f91a" dependencies = [ + "bitflags 2.3.3", + "cursor-icon", "log", "serde", "utf8parse", diff --git a/alacritty_terminal/Cargo.toml b/alacritty_terminal/Cargo.toml index 3ecf66de..dc164413 100644 --- a/alacritty_terminal/Cargo.toml +++ b/alacritty_terminal/Cargo.toml @@ -31,7 +31,7 @@ serde = { version = "1", features = ["derive", "rc"] } serde_yaml = "0.8" toml = "0.7.1" unicode-width = "0.1" -vte = { version = "0.11.1", default-features = false, features = ["ansi", "serde"] } +vte = { version = "0.12.0", default-features = false, features = ["ansi", "serde"] } [target.'cfg(unix)'.dependencies] nix = { version = "0.26.2", default-features = false, features = ["term"] } |