0.19 (#527)
This commit is contained in:
parent
e46decc2f3
commit
e7ea585e7c
@ -1,3 +1,11 @@
|
|||||||
|
# Version 0.19
|
||||||
|
- Use single thread for async event reader.
|
||||||
|
- Patch timeout handling for event polling this was not working correctly.
|
||||||
|
- Add unix support for more key combinations mainly complex ones with ALT/SHIFT/CTRL.
|
||||||
|
- Derive `PartialEq` and `Eq` for ContentStyle
|
||||||
|
- Fix windows resize event size, this used to be the buffer size but is screen size now.
|
||||||
|
- Change `Command::ansi_code` to `Command::write_ansi`, this way the ansi code will be written to given formatter.
|
||||||
|
|
||||||
# Version 0.18.2
|
# Version 0.18.2
|
||||||
- Fix panic when only setting bold and redirecting stdout.
|
- Fix panic when only setting bold and redirecting stdout.
|
||||||
- Use `tty_fd` for set/get terminal attributes
|
- Use `tty_fd` for set/get terminal attributes
|
||||||
|
@ -36,6 +36,8 @@ event-stream = ["futures-core"]
|
|||||||
bitflags = "1.2"
|
bitflags = "1.2"
|
||||||
lazy_static = "1.4"
|
lazy_static = "1.4"
|
||||||
parking_lot = "0.11"
|
parking_lot = "0.11"
|
||||||
|
|
||||||
|
# optional deps only added when requested
|
||||||
futures-core = { version = "0.3", optional = true, default-features = false }
|
futures-core = { version = "0.3", optional = true, default-features = false }
|
||||||
serde = { version = "1.0", features = ["derive"], optional = true }
|
serde = { version = "1.0", features = ["derive"], optional = true }
|
||||||
|
|
||||||
@ -43,7 +45,7 @@ serde = { version = "1.0", features = ["derive"], optional = true }
|
|||||||
# Windows dependencies
|
# Windows dependencies
|
||||||
#
|
#
|
||||||
[target.'cfg(windows)'.dependencies.winapi]
|
[target.'cfg(windows)'.dependencies.winapi]
|
||||||
version = "0.3.8"
|
version = "0.3.9"
|
||||||
features = ["winuser"]
|
features = ["winuser"]
|
||||||
|
|
||||||
[target.'cfg(windows)'.dependencies]
|
[target.'cfg(windows)'.dependencies]
|
||||||
@ -61,7 +63,7 @@ signal-hook = { version = "0.1.15", features = ["mio-0_7-support"] }
|
|||||||
# Dev dependencies (examples, ...)
|
# Dev dependencies (examples, ...)
|
||||||
#
|
#
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
tokio = { version = "0.2.11", features = ["full"] }
|
tokio = { version = "1.0", features = ["full"] }
|
||||||
futures = "0.3"
|
futures = "0.3"
|
||||||
futures-timer = "3.0"
|
futures-timer = "3.0"
|
||||||
async-std = "1.4"
|
async-std = "1.4"
|
||||||
|
Loading…
Reference in New Issue
Block a user