0.14.2
This commit is contained in:
parent
17442caee2
commit
f8f76dc2e1
@ -1,3 +1,6 @@
|
|||||||
|
# Version 0.14.2
|
||||||
|
- Fix TIOCGWINSZ for FreeBSD
|
||||||
|
|
||||||
# Version 0.14.1
|
# Version 0.14.1
|
||||||
- Made windows cursor position relative to the window instead absolute to the screen buffer windows.
|
- Made windows cursor position relative to the window instead absolute to the screen buffer windows.
|
||||||
- Fix windows bug with `queue` macro were it consumed a type and required an type to be `Copy`.
|
- Fix windows bug with `queue` macro were it consumed a type and required an type to be `Copy`.
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "crossterm"
|
name = "crossterm"
|
||||||
version = "0.14.0"
|
version = "0.14.2"
|
||||||
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"
|
||||||
@ -34,9 +34,9 @@ event-stream = ["futures"]
|
|||||||
#
|
#
|
||||||
[dependencies]
|
[dependencies]
|
||||||
bitflags = "1.2"
|
bitflags = "1.2"
|
||||||
futures = { version = "0.3", optional = true }
|
|
||||||
lazy_static = "1.4"
|
lazy_static = "1.4"
|
||||||
parking_lot = "0.10"
|
parking_lot = "0.10"
|
||||||
|
futures = { version = "0.3", optional = true }
|
||||||
serde = { version = "1.0.0", features = ["derive"], optional = true }
|
serde = { version = "1.0.0", features = ["derive"], optional = true }
|
||||||
|
|
||||||
#
|
#
|
||||||
|
15
README.md
15
README.md
@ -14,21 +14,6 @@ worry about the platform you are working with.
|
|||||||
This crate supports all UNIX and Windows terminals down to Windows 7 (not all terminals are tested,
|
This crate supports all UNIX and Windows terminals down to Windows 7 (not all terminals are tested,
|
||||||
see [Tested Terminals](#tested-terminals) for more info).
|
see [Tested Terminals](#tested-terminals) for more info).
|
||||||
|
|
||||||
## Note on Migration
|
|
||||||
|
|
||||||
You may have noticed that Crossterm has been
|
|
||||||
[changing](https://github.com/crossterm-rs/crossterm/blob/master/CHANGELOG.md) very quickly with the latest versions.
|
|
||||||
We have done a lot of API-breaking changes by renaming functions, commands, changing the exports,
|
|
||||||
improving the encapsulation, etc. However, all of this happens to improve the library and make it better
|
|
||||||
and ready for a possible [1.0 release](#287). We want to stick to the
|
|
||||||
[Command API](https://docs.rs/crossterm/#command-api) and remove all other ways to use crossterm.
|
|
||||||
Try to use this API and change your code accordingly.
|
|
||||||
This way you will survive or overcome major migration problems ;).
|
|
||||||
|
|
||||||
We hope you can understand this, feel free to ask around in [discord](https://discord.gg/K4nyTDB) if you have
|
|
||||||
questions. For up-to-date examples, have a look at the [examples](https://github.com/crossterm-rs/examples/tree/master)
|
|
||||||
repository. Sorry for the inconvenience.
|
|
||||||
|
|
||||||
> It's highly recommended to read the
|
> It's highly recommended to read the
|
||||||
> [Upgrade from 0.13 to 0.14](https://github.com/crossterm-rs/crossterm/wiki/Upgrade-from-0.13-to-0.14)
|
> [Upgrade from 0.13 to 0.14](https://github.com/crossterm-rs/crossterm/wiki/Upgrade-from-0.13-to-0.14)
|
||||||
> documentation, which explains everything you need to know.
|
> documentation, which explains everything you need to know.
|
||||||
|
Loading…
Reference in New Issue
Block a user