This commit is contained in:
Timon_Post 2019-06-15 21:51:53 +02:00
parent 216105aa06
commit cdb393ef71
4 changed files with 11 additions and 5 deletions

View File

@ -1,6 +1,6 @@
[package] [package]
name = "crossterm" name = "crossterm"
version = "0.9.5" version = "0.9.6"
authors = ["T. Post"] authors = ["T. Post"]
description = "An crossplatform terminal library for manipulating terminals." description = "An crossplatform terminal library for manipulating terminals."
repository = "https://github.com/TimonPost/crossterm" repository = "https://github.com/TimonPost/crossterm"
@ -33,10 +33,10 @@ members = [
[dependencies] [dependencies]
crossterm_screen = { optional = true, version = "0.2.3" } crossterm_screen = { optional = true, version = "0.2.3" }
crossterm_cursor = { optional = true, version = "0.2.3" } crossterm_cursor = { optional = true, version = "0.2.4" }
crossterm_terminal = { optional = true, version = "0.2.4" } crossterm_terminal = { optional = true, version = "0.2.4" }
crossterm_style = { optional = true, version = "0.3.3" } crossterm_style = { optional = true, version = "0.3.3" }
crossterm_input = { optional = true, version = "0.3.5" } crossterm_input = { optional = true, version = "0.3.6" }
crossterm_utils = { optional = false, version = "0.2.3" } crossterm_utils = { optional = false, version = "0.2.3" }
[lib] [lib]

View File

@ -1,6 +1,6 @@
[package] [package]
name = "crossterm_cursor" name = "crossterm_cursor"
version = "0.2.3" version = "0.2.4"
authors = ["T. Post"] authors = ["T. Post"]
description = "A cross-platform library for moving the terminal cursor." description = "A cross-platform library for moving the terminal cursor."
repository = "https://github.com/TimonPost/crossterm" repository = "https://github.com/TimonPost/crossterm"

View File

@ -1,6 +1,6 @@
[package] [package]
name = "crossterm_input" name = "crossterm_input"
version = "0.3.5" version = "0.3.6"
authors = ["T. Post"] authors = ["T. Post"]
description = "A cross-platform library for reading userinput." description = "A cross-platform library for reading userinput."
repository = "https://github.com/TimonPost/crossterm" repository = "https://github.com/TimonPost/crossterm"

View File

@ -1,3 +1,9 @@
# Changes crossterm 0.9.6
- Copy for KeyEvent
- CTRL + Left, Down, Up, Right key support
- SHIFT + Left, Down, Up, Right key support
- Fixed UNIX cursor position bug [issue](https://github.com/TimonPost/crossterm/issues/140), [PR](https://github.com/TimonPost/crossterm/pull/152)
# Changes crossterm 0.9.5 # Changes crossterm 0.9.5
- Prefetching buffer size for more efficient windows input reads. [PR](https://github.com/TimonPost/crossterm/pull/144) - Prefetching buffer size for more efficient windows input reads. [PR](https://github.com/TimonPost/crossterm/pull/144)