You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
tui-rs/CHANGELOG.md

52 lines
1.2 KiB
Markdown

6 years ago
# Changelog
## To be released
6 years ago
## v0.2.2 - 2018-05-06
### Added
* `Terminal` implements `Debug`
6 years ago
### Changed
* Use `FnOnce` instead of `FnMut` in Group::render
6 years ago
## v0.2.1 - 2018-04-01
6 years ago
6 years ago
### Added
6 years ago
* Add `AlternateScreenBackend` in `termion` backend
* Add `TermionBackend::with_stdout` in order to let an user of the library
provides its own termion struct
6 years ago
* Add tests and documentation for `Buffer::pos_of`
6 years ago
* Remove leading whitespaces when wrapping text
6 years ago
6 years ago
### Fixed
6 years ago
* Fix `debug_assert` in `Buffer::pos_of`
6 years ago
* Pass the style of `SelectableList` to the underlying `List`
6 years ago
* Fix missing character when wrapping text
* Fix panic when specifying layout constraints
6 years ago
## v0.2.0 - 2017-12-26
6 years ago
### 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`
* Rename `border` bitflags to `Borders`
6 years ago
* Run latest `rustfmt` on all sources
### Removed
* Drop `log4rs` as a dev-dependencies in favor of `stderrlog`