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 committed by GitHub
parent 73c7f0c48d
commit b656fba35e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 208 additions and 195 deletions

View File

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

400
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"
serde = { version = "1", features = ["derive"] }
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-extras = "2"
log = "0.4"