2017-12-26 20:11:55 +00:00
|
|
|
# Changelog
|
|
|
|
|
2018-04-15 19:44:45 +00:00
|
|
|
## To be released
|
|
|
|
|
|
|
|
### Added
|
|
|
|
|
|
|
|
* `Terminal` implements `Debug`
|
|
|
|
|
2018-04-01 17:42:50 +00:00
|
|
|
## v0.2.1 - 2018-04-01
|
2018-01-27 08:40:42 +00:00
|
|
|
|
2018-04-01 08:44:30 +00:00
|
|
|
### Added
|
2018-01-27 08:40:42 +00:00
|
|
|
|
|
|
|
* Add `AlternateScreenBackend` in `termion` backend
|
|
|
|
* Add `TermionBackend::with_stdout` in order to let an user of the library
|
|
|
|
provides its own termion struct
|
2018-04-01 10:39:17 +00:00
|
|
|
* Add tests and documentation for `Buffer::pos_of`
|
2018-04-01 16:58:53 +00:00
|
|
|
* Remove leading whitespaces when wrapping text
|
2018-01-27 08:40:42 +00:00
|
|
|
|
2018-04-01 08:44:30 +00:00
|
|
|
### Fixed
|
|
|
|
|
2018-04-01 10:39:17 +00:00
|
|
|
* Fix `debug_assert` in `Buffer::pos_of`
|
2018-04-01 08:44:30 +00:00
|
|
|
* Pass the style of `SelectableList` to the underlying `List`
|
2018-04-01 16:58:53 +00:00
|
|
|
* Fix missing character when wrapping text
|
|
|
|
* Fix panic when specifying layout constraints
|
2018-04-01 08:44:30 +00:00
|
|
|
|
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`
|