mirror of
https://github.com/alacritty/alacritty.git
synced 2024-11-11 13:51:01 -05:00
parent
a58fb39b68
commit
47d500770a
3 changed files with 6 additions and 3 deletions
|
@ -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
|
- 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
|
- Apply `colors.transparent_background_colors` for selections, hints, and search matches
|
||||||
- Underline full hint during keyboard selection
|
- Underline full hint during keyboard selection
|
||||||
|
- Synchronized updates now use `CSI 2026` instead of legacy `DCS` variant
|
||||||
|
|
||||||
### Fixed
|
### Fixed
|
||||||
|
|
||||||
|
|
6
Cargo.lock
generated
6
Cargo.lock
generated
|
@ -2178,10 +2178,12 @@ dependencies = [
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "vte"
|
name = "vte"
|
||||||
version = "0.11.1"
|
version = "0.12.0"
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
checksum = "f5022b5fbf9407086c180e9557be968742d839e68346af7792b8592489732197"
|
checksum = "401dc1020e10f74d38616c1f1ab92ccd85dc902705a29d0730e0fbea8534f91a"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
|
"bitflags 2.3.3",
|
||||||
|
"cursor-icon",
|
||||||
"log",
|
"log",
|
||||||
"serde",
|
"serde",
|
||||||
"utf8parse",
|
"utf8parse",
|
||||||
|
|
|
@ -31,7 +31,7 @@ serde = { version = "1", features = ["derive", "rc"] }
|
||||||
serde_yaml = "0.8"
|
serde_yaml = "0.8"
|
||||||
toml = "0.7.1"
|
toml = "0.7.1"
|
||||||
unicode-width = "0.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]
|
[target.'cfg(unix)'.dependencies]
|
||||||
nix = { version = "0.26.2", default-features = false, features = ["term"] }
|
nix = { version = "0.26.2", default-features = false, features = ["term"] }
|
||||||
|
|
Loading…
Reference in a new issue