From 47d500770a7fe306d710ca2cd9a0758c27a639a2 Mon Sep 17 00:00:00 2001 From: Kirill Chibisov Date: Tue, 26 Sep 2023 20:48:19 +0400 Subject: [PATCH] Bump VTE to 0.12.0 Fixes #6845. --- CHANGELOG.md | 1 + Cargo.lock | 6 ++++-- alacritty_terminal/Cargo.toml | 2 +- 3 files changed, 6 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 40273970ad..df77b457cf 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 diff --git a/Cargo.lock b/Cargo.lock index fe3be443b0..2a90cf5c57 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -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 3ecf66de05..dc16441387 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"] }