1
0
Fork 0
mirror of https://github.com/alacritty/alacritty.git synced 2024-11-18 13:55:23 -05:00

Fix OSCs terminated by \x9c byte in unicode

Fixes #3591.
This commit is contained in:
Christian Duerr 2020-05-13 09:58:34 +00:00
parent 508b9cd118
commit 39c7f5dfc9
3 changed files with 191 additions and 178 deletions

View file

@ -42,6 +42,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Increased input latency due to vsync behavior on X11 - Increased input latency due to vsync behavior on X11
- Freeze when application is invisible on Wayland - Freeze when application is invisible on Wayland
- Emoji colors blending with terminal background - Emoji colors blending with terminal background
- Fix escapes prematurely terminated by terminators in unicode glyphs
## 0.4.2 ## 0.4.2
### Fixed ### Fixed

366
Cargo.lock generated

File diff suppressed because it is too large Load diff

View file

@ -16,7 +16,7 @@ font = { path = "../font" }
parking_lot = "0.10.2" parking_lot = "0.10.2"
serde = { version = "1", features = ["derive"] } serde = { version = "1", features = ["derive"] }
serde_yaml = "0.8" serde_yaml = "0.8"
vte = { version = "0.7.0", default-features = false } vte = { version = "0.8.0", default-features = false }
mio = "0.6.20" mio = "0.6.20"
mio-extras = "2" mio-extras = "2"
log = "0.4" log = "0.4"