mirror of
https://github.com/wez/wezterm.git
synced 2024-12-22 21:01:36 +03:00
termwiz: release 0.19
This commit is contained in:
parent
4df6d2a477
commit
a6fc9323e2
2
Cargo.lock
generated
2
Cargo.lock
generated
@ -4652,7 +4652,7 @@ checksum = "507e9898683b6c43a9aa55b64259b721b52ba226e0f3779137e50ad114a4c90b"
|
||||
|
||||
[[package]]
|
||||
name = "termwiz"
|
||||
version = "0.18.0"
|
||||
version = "0.19.0"
|
||||
dependencies = [
|
||||
"anyhow",
|
||||
"base64",
|
||||
|
@ -9,4 +9,4 @@ license = "MIT"
|
||||
documentation = "https://docs.rs/tabout"
|
||||
|
||||
[dependencies]
|
||||
termwiz = { path = "../termwiz", version="0.18"}
|
||||
termwiz = { path = "../termwiz", version="0.19"}
|
||||
|
@ -38,6 +38,6 @@ env_logger = "0.9"
|
||||
k9 = "0.11.0"
|
||||
|
||||
[dependencies.termwiz]
|
||||
version = "0.18"
|
||||
version = "0.19"
|
||||
path = "../termwiz"
|
||||
features = ["use_image"]
|
||||
|
@ -1,6 +1,12 @@
|
||||
|
||||
main:
|
||||
## termwiz-0.19.0:
|
||||
|
||||
* Added `Action::PrintString` to more efficiently accumulate sequences of
|
||||
printed characters.
|
||||
* Fixed build on 32-bit platforms
|
||||
* Fixed build on Android systems
|
||||
* Updates for Unicode 15
|
||||
* Widgets can now control cursor visibility
|
||||
* BREAKING: We now request modifyOtherKeys when setting up the unix terminal.
|
||||
As a consequence, CTRL keys like `CTRL-C` are now reported as
|
||||
`CTRL-lower-case-c` rather than `CTRL-upper-case-C`. We do this even when
|
||||
|
@ -1,7 +1,7 @@
|
||||
[package]
|
||||
authors = ["Wez Furlong"]
|
||||
name = "termwiz"
|
||||
version = "0.18.0"
|
||||
version = "0.19.0"
|
||||
edition = "2018"
|
||||
repository = "https://github.com/wez/wezterm"
|
||||
description = "Terminal Wizardry for Unix and Windows"
|
||||
|
@ -48,5 +48,5 @@ env_logger = "0.9"
|
||||
rstest = "0.15"
|
||||
shell-words = "1.1"
|
||||
smol-potat = "1.1.2"
|
||||
termwiz = { version = "0.18", path = "../termwiz" }
|
||||
termwiz = { version = "0.19", path = "../termwiz" }
|
||||
whoami = "1.1"
|
||||
|
Loading…
Reference in New Issue
Block a user