Skip to content

Commit

Permalink
0.19
Browse files Browse the repository at this point in the history
  • Loading branch information
TimonPost committed Dec 28, 2020
1 parent e46decc commit 9033a48
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 2 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
- Fix panic when only setting bold and redirecting stdout.
- Use `tty_fd` for set/get terminal attributes
Expand Down
6 changes: 4 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -36,14 +36,16 @@ event-stream = ["futures-core"]
bitflags = "1.2"
lazy_static = "1.4"
parking_lot = "0.11"

# optional deps only added when requested
futures-core = { version = "0.3", optional = true, default-features = false }
serde = { version = "1.0", features = ["derive"], optional = true }

#
# Windows dependencies
#
[target.'cfg(windows)'.dependencies.winapi]
version = "0.3.8"
version = "0.3.9"
features = ["winuser"]

[target.'cfg(windows)'.dependencies]
Expand All @@ -61,7 +63,7 @@ signal-hook = { version = "0.1.15", features = ["mio-0_7-support"] }
# Dev dependencies (examples, ...)
#
[dev-dependencies]
tokio = { version = "0.2.11", features = ["full"] }
tokio = { version = "1.0", features = ["full"] }
futures = "0.3"
futures-timer = "3.0"
async-std = "1.4"
Expand Down

0 comments on commit 9033a48

Please sign in to comment.