ratatui/CHANGELOG.md

31 lines
786 B
Markdown
Raw Normal View History

2017-12-26 20:11:55 +00:00
# Changelog
2018-01-27 08:40:42 +00:00
## v0.2.1 - now
## Added
* Add `AlternateScreenBackend` in `termion` backend
* Add `TermionBackend::with_stdout` in order to let an user of the library
provides its own termion struct
2017-12-26 21:16:24 +00:00
## v0.2.0 - 2017-12-26
2017-12-26 20:11:55 +00:00
### Added
* Add `MouseBackend` in `termion` backend to handle scroll and mouse events
* Add generic `Item` for items in a `List`
### Changed
* Rename `TermionBackend` to `RawBackend` (to distinguish it from the `MouseBackend`)
* Generic parameters for `List` to allow passing iterators as items
* Generic parameters for `Table` to allow using iterators as rows and header
* Generic parameters for `Tabs`
2017-12-26 20:34:05 +00:00
* Rename `border` bitflags to `Borders`
2017-12-26 20:11:55 +00:00
* Run latest `rustfmt` on all sources
### Removed
* Drop `log4rs` as a dev-dependencies in favor of `stderrlog`