0.17.6
This commit is contained in:
parent
13e0d012ce
commit
5e1c214f8c
10
CHANGELOG.md
10
CHANGELOG.md
@ -1,3 +1,13 @@
|
|||||||
|
# Version 0.17.6
|
||||||
|
- Add functionality to retrieve color based on passed ansi code.
|
||||||
|
- Switch from 'futures' to 'futures-util' crate to reduce dependency count
|
||||||
|
- Mio 0.7 update
|
||||||
|
- signal-hook update
|
||||||
|
- Make windows raw_mode act on CONIN$
|
||||||
|
- Added From<(u8, u8, u8)> Trait to Color::Rgb Enum
|
||||||
|
- Implement Color::try_from()
|
||||||
|
- Implement styler traits for `&'a str`
|
||||||
|
|
||||||
# Version 0.17.5
|
# Version 0.17.5
|
||||||
- Improved support of keymodifier for linux, arrow keys, function keys, home keys etc.
|
- Improved support of keymodifier for linux, arrow keys, function keys, home keys etc.
|
||||||
- Add `SetTitle` command to change the terminal title.
|
- Add `SetTitle` command to change the terminal title.
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "crossterm"
|
name = "crossterm"
|
||||||
version = "0.17.5"
|
version = "0.17.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/crossterm-rs/crossterm"
|
repository = "https://github.com/crossterm-rs/crossterm"
|
||||||
|
@ -54,7 +54,7 @@
|
|||||||
//! - Module `style`
|
//! - Module `style`
|
||||||
//! - Colors - [`SetForegroundColor`](style/struct.SetForegroundColor.html),
|
//! - Colors - [`SetForegroundColor`](style/struct.SetForegroundColor.html),
|
||||||
//! [`SetBackgroundColor`](style/struct.SetBackgroundColor.html),
|
//! [`SetBackgroundColor`](style/struct.SetBackgroundColor.html),
|
||||||
//! [`ResetColor`](style/struct.ResetColor.html)
|
//! [`ResetColor`](style/struct.ResetColor.html), [`SetColors`](style/struct.SetColors.html)
|
||||||
//! - Attributes - [`SetAttribute`](style/struct.SetAttribute.html), [`SetAttributes`](style/struct.SetAttributes.html),
|
//! - Attributes - [`SetAttribute`](style/struct.SetAttribute.html), [`SetAttributes`](style/struct.SetAttributes.html),
|
||||||
//! [`PrintStyledContent`](style/struct.PrintStyledContent.html)
|
//! [`PrintStyledContent`](style/struct.PrintStyledContent.html)
|
||||||
//! - Module `terminal`
|
//! - Module `terminal`
|
||||||
|
Loading…
Reference in New Issue
Block a user