ratatui/CHANGELOG.md
2023-08-28 11:46:03 +00:00

70 KiB

Changelog

All notable changes to this project will be documented in this file.

v0.23.0 - 2023-08-28

We are thrilled to release the new version of ratatui 🐭, the official successor* of tui-rs.

In this version, we improved the existing widgets such as Barchart and Scrollbar. We also made improvmements in the testing/internal APIs to provide a smoother testing/development experience. Additionally, we have addressed various bugs and implemented enhancements.

Here is a blog post that highlights the new features and breaking changes along with a retrospective about the project: https://blog.orhun.dev/ratatui-0-23-0

Features

  • (barchart) Add direction attribute. (horizontal bars support) (#325) (0dca6a6)

    * feat(barchart): Add direction attribute
    
    Enable rendering the bars horizontally. In some cases this allow us to
    make more efficient use of the available space.
    
  • (cell) Add voluntary skipping capability for sixel (#215) (e4bcf78)

    > Sixel is a bitmap graphics format supported by terminals.
    > "Sixel mode" is entered by sending the sequence ESC+Pq.
    > The "String Terminator" sequence ESC+\ exits the mode.
    
    The graphics are then rendered with the top left positioned at the
    cursor position.
    
    It is actually possible to render sixels in ratatui with just
    `buf.get_mut(x, y).set_symbol("^[Pq ... ^[\")`. But any buffer covering
    the "image area" will overwrite the graphics. This is most likely the same
    buffer, even though it consists of empty characters `' '`, except for
    the top-left character that starts the sequence.
    
    Thus, either the buffer or cells must be specialized to avoid drawing
    over the graphics. This patch specializes the `Cell` with a
    `set_skip(bool)` method, based on James' patch:
    https://github.com/TurtleTheSeaHobo/tui-rs/tree/sixel-support
    I unsuccessfully tried specializing the `Buffer`, but as far as I can tell
    buffers get merged all the way "up" and thus skipping must be set on the
    Cells. Otherwise some kind of "skipping area" state would be required,
    which I think is too complicated.
    
    Having access to the buffer now it is possible to skip all cells but the
    first one which can then `set_symbol(sixel)`. It is up to the user to
    deal with the graphics size and buffer area size. It is possible to get
    the terminal's font size in pixels with a syscall.
    
    An image widget for ratatui that uses this `skip` flag is available at
    https://github.com/benjajaja/ratatu-image.
    
  • (list) Add option to always allocate the "selection" column width (#394) (4d70169)

    * feat(list): add option to always allocate the "selection" column width
    
    Before this option was available, selecting a item in a list when nothing was selected
    previously made the row layout change (the same applies to unselecting) by adding the width
    of the "highlight symbol" in the front of the list, this option allows to configure this
    behavior.
    
    * style: change "highlight_spacing" doc comment to use inline code-block for reference
    
  • (release) Add automated nightly releases (#359) (aad164a)

    * feat(release): add automated nightly releases
    
    * refactor(release): rename the alpha workflow
    
    * refactor(release): simplify the release calculation
    
  • (scrollbar) Add optional track symbol (#360) (1727fa5) [breaking]

    The track symbol is now optional, simplifying composition with other
    widgets.
    
  • (table) Add support for line alignment in the table widget (#392) (7748720)

    * feat(table): enforce line alignment in table render
    
    * test(table): add table alignment render test
    
  • (widgets::table) Add option to always allocate the "selection" constraint (#375) (f63ac72)

    * feat(table): add option to configure selection layout changes
    
    Before this option was available, selecting a row in the table when no row was selected
    previously made the tables layout change (the same applies to unselecting) by adding the width
    of the "highlight symbol" in the front of the first column, this option allows to configure this
    behavior.
    
    * refactor(table): refactor "get_columns_widths" to return (x, width)
    
    and "render" to make use of that
    
    * refactor(table): refactor "get_columns_widths" to take in a selection_width instead of a boolean
    
    also refactor "render" to make use of this change
    
    * fix(table): rename "highlight_set_selection_space" to "highlight_spacing"
    
    * style(table): apply doc-comment suggestions from code review
    
  • (uncategorized) Expand serde attributes for TestBuffer (#389) (57ea871)

  • (uncategorized) Add weak constraints to make rects closer to each other in size (#395) (6153371)

    Also make `Max` and `Min` constraints MEDIUM strength for higher priority over equal chunks
    
  • (uncategorized) Simplify split function (#411) (b090101)

Bug Fixes

  • (barchart) Empty groups causes panic (#333) (9c95673)

    This unlikely to happen, since nobody wants to add an empty group.
    Even we fix the panic, things will not render correctly.
    So it is better to just not add them to the BarChart.
    
  • (block) Fixed title_style not rendered (#349) (#363) (49a82e0)

  • (cargo) Adjust minimum paste version (#348) (8db9fb4)

    ratatui is using features that are currently only available in paste 1.0.2; specifying the minimum version to be 1.0 will consequently cause a compilation error if cargo is only able to use a version less than 1.0.2.
    
  • (example) Fix typo (#337) (daf5890)

    the existential feels
    
  • (layout) Don't leave gaps between chunks (#408) (56455e0)

    Previously the layout used the floor of the calculated start and width
    as the value to use for the split Rects. This resulted in gaps between
    the split rects.
    
    This change modifies the layout to round to the nearest column instead
    of taking the floor of the start and width. This results in the start
    and end of each rect being rounded the same way and being strictly
    adjacent without gaps.
    
    Because there is a required constraint that ensures that the last end is
    equal to the area end, there is no longer the need to fixup the last
    item width when the fill (as e.g. width = x.99 now rounds to x+1 not x).
    
    The colors example has been updated to use Ratio(1, 8) instead of
    Percentage(13), as this now renders without gaps for all possible sizes,
    whereas previously it would have left odd gaps between columns.
    
  • (layout) Ensure left <= right (#410) (f4ed3b7)

    The recent refactor missed the positive width constraint
    
  • (readme) Fix typo in readme (#344) (d05ab6f)

  • (readme) Fix incorrect template link (#338) (b9290b3)

  • (readme) Fix typo in readme (#336) (7e37a96)

  • (release) Fix the last tag retrieval for alpha releases (#416) (b6b2da5)

  • (release) Set the correct permissions for creating alpha releases (#400) (778c320)

  • (scrollbar) Move symbols to symbols module (#330) (7539f77) [breaking]

    The symbols and sets are moved from `widgets::scrollbar` to
    `symbols::scrollbar`. This makes it consistent with the other symbol
    sets and allows us to make the scrollbar module private rather than
    re-exporting it.
    
  • (table) Fix unit tests broken due to rounding (#419) (dc55211)

    The merge of the table unit tests after the rounding layout fix was not
    rebased correctly, this addresses the broken tests, makes them more
    concise while adding comments to help clarify that the rounding behavior
    is working as expected.
    
  • (uncategorized) Correct minor typos in documentation (#331) (13fb11a)

Refactor

  • (barchart) Reduce some calculations (#430) (fc727df)

    Calculating the label_offset is unnecessary, if we just render the
    group label after rendering the bars. We can just reuse bar_y.
    
  • (layout) Simplify and doc split() (#405) (de25de0)

    * test(layout): add tests for split()
    
    * refactor(layout): simplify and doc split()
    
    This is mainly a reduction in density of the code with a goal of
    improving mainatainability so that the algorithm is clear.
    
  • (layout) Simplify split() function (#396) (5195099)

    Removes some unnecessary code and makes the function more readable.
    Instead of creating a temporary result and mutating it, we just create
    the result directly from the list of changes.
    

Documentation

  • (examples) Fix the instructions for generating demo GIF (#442) (7a70602)

  • (examples) Show layout constraints (#393) (10dbd6f)

    Shows the way that layout constraints interact visually
    
    ![example](https://vhs.charm.sh/vhs-1ZNoNLNlLtkJXpgg9nCV5e.gif)
    
  • (examples) Add color and modifiers examples (#345) (6ad4bd4)

    The intent of these examples is to show the available colors and
    modifiers.
    
    - added impl Display for Color
    
    ![colors](https://vhs.charm.sh/vhs-2ZCqYbTbXAaASncUeWkt1z.gif)
    ![modifiers](https://vhs.charm.sh/vhs-2ovGBz5l3tfRGdZ7FCw0am.gif)
    
  • (examples) Regen block.gif in readme (#365) (e82521e)

  • (examples) Update block example (#351) (554805d)

    ![Block example](https://vhs.charm.sh/vhs-5X6hpReuDBKjD6hLxmDQ6F.gif)
    
  • (examples) Add examples readme with gifs (#303) (add578a)

    This commit adds a readme to the examples directory with gifs of each
    example. This should make it easier to see what each example does
    without having to run it.
    
    I modified the examples to fit better in the gifs. Mostly this was just
    removing the margins, but for the block example I cleaned up the code a
    bit to make it more readable and changed it so the background bug is not
    triggered.
    
    For the table example, the combination of Min, Length, and Percent
    constraints was causing the table to panic when the terminal was too
    small. I changed the example to use the Max constraint instead of the
    Length constraint.
    
    The layout example now shows information about how the layout is
    constrained on each block (which is now a paragraph with a block).
    
  • (layout) Add doc comments (#403) (418ed20)

  • (layout::Constraint) Add doc-comments for all variants (#371) (c8ddc16)

  • (lib) Extract feature documentation from Cargo.toml (#438) (8b36683)

    * docs(lib): extract feature documentation from Cargo.toml
    
    * chore(deps): make `document-features` optional dependency
    
    * docs(lib): document the serde feature from features section
    
  • (paragraph) Add more docs (#428) (6d6ecee)

  • (project) Make the project description cooler (#441) (47fe4ad)

    * docs(project): make the project description cooler
    
    * docs(lib): simplify description
    
  • (readme) Use the correct version for MSRV (#369) (3a37d2f)

  • (readme) Fix widget docs links (#346) (2920e04)

    Add scrollbar, clear. Fix Block link. Sort
    
  • (span) Update docs and tests for Span (#427) (d0ee04a)

  • (uncategorized) Improve scrollbar doc comment (#329) (c3f87f2)

Performance

  • (bench) Used iter_batched to clone widgets in setup function (#383) (149d489)

    Replaced `Bencher::iter` by `Bencher::iter_batched` to clone the widget in the setup function instead of in the benchmark timing.
    

Styling

  • (paragraph) Add documentation for "scroll"'s "offset" (#355) (ab5e616)

    * style(paragraph): add documentation for "scroll"'s "offset"
    
    * style(paragraph): add more text to the scroll doc-comment
    

Testing

  • (block) Test all block methods (#431) (a890f2a)

  • (block) Add benchmarks (#368) (e18393d)

    Added benchmarks to the block widget to uncover eventual performance issues
    
  • (canvas) Add unit tests for line (#437) (ad3413e)

    Also add constructor to simplify creating lines
    
  • (canvas) Add tests for rectangle (#429) (ad4d6e7)

  • (clear) Test Clear rendering (#432) (e9bd736)

  • (list) Added benchmarks (#377) (664fb4c)

    Added benchmarks for the list widget (render and render half scrolled)
    
  • (map) Add unit tests (#436) (f0716ed)

  • (sparkline) Added benchmark (#384) (3293c6b)

    Added benchmark for the `sparkline` widget testing a basic render with different amount of data
    
  • (styled_grapheme) Test StyledGrapheme methods (#433) (292a11d)

  • (table) Add test for consistent table-column-width (#404) (4cd843e)

  • (tabs) Add unit tests (#439) (14eb6b6)

  • (test_backend) Add tests for TestBackend coverage (#434) (b35f19e)

    These are mostly to catch any future bugs introduced in the test backend
    
  • (text) Add unit tests (#435) (fc9f637)

Miscellaneous Tasks

  • (changelog) Ignore alpha tags (#440) (6009844)

  • (changelog) Show full commit message (#423) (a937500)

    This allows someone reading the changelog to search for information
    about breaking changes or implementation of new functionality.
    
    - refactored the commit template part to a macro instead of repeating it
    - added a link to the commit and to the release
    - updated the current changelog for the alpha and unreleased changes
    - Automatically changed the existing * lists to - lists
    
  • (ci) Update the name of the CI workflow (#417) (89ef0e2)

  • (codecov) Fix yaml syntax (#407) (ea48af1)

    a yaml file cannot contain tabs outside of strings
    
  • (docs) Add doc comment bump to release documentation (#382) (8b28672)

  • (github) Add kdheepak as a maintainer (#343) (60a4131)

  • (github) Rename tui-rs-revival references to ratatui-org (#340) (964190a)

  • (make) Add task descriptions to Makefile.toml (#398) (268bbed)

  • (toolchain) Bump msrv to 1.67 (#361) (8cd3205) [breaking]

    * chore(toolchain)!: bump msrv to 1.67
    
  • (traits) Add Display and FromStr traits (#425) (98155dc)

    Use strum for most of these, with a couple of manual implementations,
    and related tests
    
  • (uncategorized) Create rust-toolchain.toml (#415) (d2429bc)

  • (uncategorized) Use vhs to create demo.gif (#390) (8c55158)

    The bug that prevented braille rendering is fixed, so switch to VHS for
    rendering the demo gif
    
    ![Demo of Ratatui](https://vhs.charm.sh/vhs-tF0QbuPbtHgUeG0sTVgFr.gif)
    
  • (uncategorized) Implement Hash common traits (#381) (8c4a2e0)

    Reorder the derive fields to be more consistent:
    
        Debug, Default, Clone, Copy, Eq, PartialEq, Ord, PartialOrd, Hash
    
    Hash trait won't be impl in this PR due to rust std design.
    If we need hash trait for f64 related structs in the future,
    we should consider wrap f64 into a new type.
    
  • (uncategorized) Implement Eq & PartialEq common traits (#357) (181706c)

    Reorder the derive fields to be more consistent:
    
        Debug, Default, Clone, Copy, Eq, PartialEq, Ord, PartialOrd, Hash
    
  • (uncategorized) Implement Clone & Copy common traits (#350) (440f62f)

    Implement `Clone & Copy` common traits for most structs in src.
    
    Only implement `Copy` for structs that are simple and trivial to copy.
    
    Reorder the derive fields to be more consistent:
    
        Debug, Default, Clone, Copy, Eq, PartialEq, Ord, PartialOrd, Hash
    
  • (uncategorized) Implement Debug & Default common traits (#339) (bf49446)

    Implement `Debug & Default` common traits for most structs in src.
    
    Reorder the derive fields to be more consistent:
    
        Debug, Default, Clone, Copy, Eq, PartialEq, Ord, PartialOrd, Hash
    

Build

  • (deps) Upgrade crossterm to 0.27 (#380) (37fa6ab)

  • (examples) Fix cargo make run-examples (#327) (e2cb11c)

    Enables the all-widgets feature so that the calendar example runs correctly
    
  • (uncategorized) Forbid unsafe code (#332) (0fb1ed8)

    This indicates good (high level) code and is used by tools like cargo-geiger.
    

Continuous Integration

  • (coverage) Exclude examples directory from coverage (#373) (de9f52f)

  • (uncategorized) Don't fail fast (#364) (9191ad6)

    Run all the tests rather than canceling when one test fails. This allows
    us to see all the failures, rather than just the first one if there are
    multiple. Specifically this is useful when we have an issue in one
    toolchain or backend.
    
  • (uncategorized) Add coverage token (#352) (6f659cf)

Contributors

Thank you so much to everyone that contributed to this release!

Here is the list of contributors who have contributed to ratatui for the first time!

v0.22.0 - 2023-07-17

Features

  • (barchart) Set custom text value in the bar (#309)
  • (barchart) Enable barchart groups (#288)
  • (block) Support for having more than one title (#232)
  • (examples) User_input example cursor movement (#302)
  • (misc) Make builder fn const (#275) (#275)
  • (prelude) Add a prelude (#304)
  • (style) Enable setting the underline color for crossterm (#308) (#310)
  • (style) Allow Modifiers add/remove in const (#287)
  • (stylize) Allow all widgets to be styled (#289)
  • (terminal) Expose 'swap_buffers' method
  • (uncategorized) Stylization shorthands (#283)
  • (uncategorized) Add scrollbar widget (#228)

Bug Fixes

  • (clippy) Unused_mut lint for layout (#285)
  • (examples) Correct progress label in gague example (#263)
  • (layout) Cap Constraint::apply to 100% length (#264)
  • (lint) Suspicious_double_ref_op is new in 1.71 (#311)
  • (prelude) Remove widgets module from prelude (#317)
  • (title) Remove default alignment and position (#323)
  • (typos) Configure typos linter (#233)
  • (uncategorized) Rust-tui-template became a revival project (#320)
  • (uncategorized) Revert removal of WTFPL from deny.toml (#266)

Refactor

  • (ci) Simplify cargo-make installation (#240)
  • (text) Simplify reflow implementation (#290)

Documentation

  • (color) Parse more color formats and add docs (#306)
  • (lib) Add tui-term a pseudoterminal library (#268)
  • (lib) Fixup tui refs in widgets/mod.rs (#216)
  • (lib) Add backend docs (#213)
  • (readme) Remove duplicated mention of tui-rs-tree-widgets (#223)
  • (uncategorized) Improve CONTRIBUTING.md (#277)
  • (uncategorized) Fix scrollbar ascii illustrations and calendar doc paths (#272)
  • (uncategorized) README tweaks (#225)
  • (uncategorized) Add CODEOWNERS file (#212)
  • (uncategorized) Update README.md and add hello_world example (#204)

Styling

  • (comments) Set comment length to wrap at 100 chars (#218)
  • (config) Apply formatting to config files (#238)
  • (manifest) Apply formatting to Cargo.toml (#237)
  • (readme) Update the style of badges in README.md (#299)
  • (widget) Inline format arguments (#279)
  • (uncategorized) Fix formatting (#292)
  • (uncategorized) Reformat imports (#219)

Testing

  • (barchart) Add unit tests (#301)
  • (paragraph) Simplify paragraph benchmarks (#282)
  • (uncategorized) Add benchmarks for paragraph (#262)

Miscellaneous Tasks

  • (ci) Bump cargo-make version (#239)
  • (ci) Enable merge queue for builds (#235)
  • (ci) Integrate cargo-deny for linting dependencies (#221)
  • (commitizen) Add commitizen config (#222)
  • (demo) Update demo gif (#234)
  • (demo) Update demo gif with a fixed unicode gauge (#227)
  • (features) Enable building with all-features (#286)
  • (github) Add EditorConfig config (#300)
  • (github) Simplify the CODEOWNERS file (#271)
  • (github) Add pull request template (#269)
  • (github) Fix the syntax in CODEOWNERS file (#236)
  • (license) Add Ratatui developers to license (#297)
  • (tests) Add coverage job to bacon (#312)
  • (uncategorized) Lint and doc cleanup (#191)

Build

  • (deps) Upgrade bitflags to 2.3 (#205) [breaking]
  • (uncategorized) Add git pre-push hooks using cargo-husky (#274)

Continuous Integration

  • (makefile) Split CI jobs (#278)
  • (uncategorized) Parallelize CI jobs (#318)
  • (uncategorized) Add feat-wrapping on push and on pull request ci triggers (#267)
  • (uncategorized) Add code coverage action (#209)

Contributors

Thank you so much to everyone that contributed to this release!

Here is the list of contributors who have contributed to ratatui for the first time!

v0.21.0 - 2023-05-28

Features

  • (backend) Add termwiz backend and example (#5)
  • (block) Support placing the title on bottom (#36)
  • (border) Add border! macro for easy bitflag manipulation (#11)
  • (calendar) Add calendar widget (#138)
  • (color) Add FromStr implementation for Color (#180)
  • (list) Add len() to List (#24)
  • (paragraph) Allow Lines to be individually aligned (#149)
  • (sparkline) Finish #1 Sparkline directions PR (#134)
  • (terminal) Add inline viewport (#114) [breaking]
  • (test) Expose test buffer (#160)
  • (text) Add Masked to display secure data (#168) [breaking]
  • (widget) Add circle widget (#159)
  • (widget) Add style methods to Span, Spans, Text (#148)
  • (widget) Support adding padding to Block (#20)
  • (widget) Add offset() and offset_mut() for table and list state (#12)

Bug Fixes

  • (canvas) Use full block for Marker::Block (#133) [breaking]
  • (example) Update input in examples to only use press events (#129)
  • (uncategorized) Cleanup doc example (#145)
  • (reflow) Remove debug macro call (#198)

Refactor

  • (example) Remove redundant vec![] in user_input example (#26)
  • (example) Refactor paragraph example (#152)
  • (style) Mark some Style fns const so they can be defined globally (#115)
  • (text) Replace Spans with Line (#178)

Documentation

  • (apps) Fix rsadsb/adsb_deku radar link (#140)
  • (apps) Add tenere (#141)
  • (apps) Add twitch-tui (#124)
  • (apps) Add oxycards (#113)
  • (apps) Re-add trippy to APPS.md (#117)
  • (block) Add example for block.inner (#158)
  • (changelog) Update the empty profile link in contributors (#112)
  • (readme) Fix small typo in readme (#186)
  • (readme) Add termwiz demo to examples (#183)
  • (readme) Add acknowledgement section (#154)
  • (readme) Update project description (#127)
  • (uncategorized) Scrape example code from examples/* (#195)

Styling

  • (apps) Update the style of application list (#184)
  • (readme) Update project introduction in README.md (#153)
  • (uncategorized) Clippy's variable inlining in format macros

Testing

  • (buffer) Add assert_buffer_eq! and Debug implementation (#161)
  • (list) Add characterization tests for list (#167)
  • (widget) Add unit tests for Paragraph (#156)

Miscellaneous Tasks

  • (uncategorized) Inline format args (#190)
  • (uncategorized) Minor lints, making Clippy happier (#189)

Build

  • (uncategorized) Bump MSRV to 1.65.0 (#171)

Continuous Integration

  • (uncategorized) Add ci, build, and revert to allowed commit types

Contributors

Thank you so much to everyone that contributed to this release!

Here is the list of contributors who have contributed to ratatui for the first time!

v0.20.1 - 2023-03-19

Bug Fixes

  • (style) Bold needs a bit (#104)

Documentation

  • (apps) Add "logss" to apps (#105)
  • (uncategorized) Fixup remaining tui references (#106)

Contributors

Thank you so much to everyone that contributed to this release!

v0.20.0 - 2023-03-19

This marks the first release of ratatui, a community-maintained fork of tui.

The purpose of this release is to include bug fixes and small changes into the repository thus no new features are added. We have transferred all the pull requests from the original repository and worked on the low hanging ones to incorporate them in this "maintenance" release.

Here is a list of changes:

Features

  • (cd) Add continuous deployment workflow (#93)
  • (ci) Add MacOS to CI (#60)
  • (widget) Add offset() to TableState (#10)
  • (widget) Add width() to ListItem (#17)

Bug Fixes

  • (ci) Test MSRV compatibility on CI (#85)
  • (ci) Bump Rust version to 1.63.0 (#80)
  • (ci) Use env for the cargo-make version (#76)
  • (ci) Fix deprecation warnings on CI (#58)
  • (doc) Add 3rd party libraries accidentally removed at #21 (#61)
  • (widget) List should not ignore empty string items (#42) [breaking]
  • (uncategorized) Cassowary/layouts: add extra constraints for fixing Min(v)/Max(v) combination. (#31)
  • (uncategorized) Fix user_input example double key press registered on windows
  • (uncategorized) Ignore zero-width symbol on rendering Paragraph
  • (uncategorized) Fix typos (#45)
  • (uncategorized) Fix typos (#47)

Refactor

  • (style) Make bitflags smaller (#13)

Documentation

  • (apps) Move 'apps using ratatui' to dedicated file (#98) (#99)
  • (canvas) Add documentation for x_bounds, y_bounds (#35)
  • (contributing) Specify the use of unsafe for optimization (#67)
  • (github) Remove pull request template (#68)
  • (readme) Update crate status badge (#102)
  • (readme) Small edits before first release (#101)
  • (readme) Add install instruction and update title (#100)
  • (readme) Add systeroid to application list (#92)
  • (readme) Add glicol-cli to showcase list (#95)
  • (readme) Add oxker to application list (#74)
  • (readme) Add app kubectl-watch which uses tui (#73)
  • (readme) Add poketex to 'apps using tui' in README (#64)
  • (readme) Update README.md (#39)
  • (readme) Update README.md (#40)
  • (readme) Clarify README.md fork status update
  • (uncategorized) Fix: fix typos (#90)
  • (uncategorized) Update to build more backends (#81)
  • (uncategorized) Expand "Apps" and "Third-party" sections (#21)
  • (uncategorized) Add tui-input and update xplr in README.md
  • (uncategorized) Add hncli to list of applications made with tui-rs (#41)
  • (uncategorized) Updated readme and contributing guide with updates about the fork (#46)

Performance

  • (layout) Better safe shared layout cache (#62)

Miscellaneous Tasks

  • (cargo) Update project metadata (#94)
  • (ci) Integrate typos for checking typos (#91)
  • (ci) Change the target branch to main (#79)
  • (ci) Re-enable clippy on CI (#59)
  • (uncategorized) Integrate committed for checking conventional commits (#77)
  • (uncategorized) Update rust-version to 1.59 in Cargo.toml (#57)
  • (uncategorized) Update deps (#51)
  • (uncategorized) Fix typo in layout.rs (#619)
  • (uncategorized) Add apps using tui

Contributors

Thank you so much to everyone that contributed to this release!

And most importantly, special thanks to Florian Dehau for creating this awesome library 💖 We look forward to building on the strong foundations that the original crate laid out.

v0.19.0 - 2022-08-14

Features

  • Bump crossterm to 0.25

v0.18.0 - 2022-04-24

Features

  • Update crossterm to 0.23

v0.17.0 - 2022-01-22

Features

  • Add option to widgets::List to repeat the highlight symbol for each line of multi-line items (#533).
  • Add option to control the alignment of Axis labels in the Chart widget (#568).

Breaking changes

  • The minimum supported rust version is now 1.56.1.

New default backend and consolidated backend options (#553)

  • crossterm is now the default backend. If you are already using the crossterm backend, you can simplify your dependency specification in Cargo.toml:
- tui = { version = "0.16", default-features = false, features = ["crossterm"] }
+ tui = "0.17"

If you are using the termion backend, your Cargo is now a bit more verbose:

- tui = "0.16"
+ tui = { version = "0.17", default-features = false, features = ["termion"] }

crossterm has also been bumped to version 0.22.

Because of their apparent low usage, curses and rustbox backends have been removed. If you are using one of them, you can import their last implementation in your own project:

Canvas labels (#543)

  • Labels of the Canvas widget are now text::Spans. The signature of widgets::canvas::Context::print has thus been updated:
- ctx.print(x, y, "Some text", Color::Yellow);
+ ctx.print(x, y, Span::styled("Some text", Style::default().fg(Color::Yellow)))

v0.16.0 - 2021-08-01

Features

  • Update crossterm to 0.20.
  • Add From<Cow<str>> implementation for text::Text (#471).
  • Add option to right or center align the title of a widgets::Block (#462).

Fixes

  • Apply label style in widgets::Gauge and avoid panics because of overflows with long labels (#494).
  • Avoid panics because of overflows with long axis labels in widgets::Chart (#512).
  • Fix computation of column widths in widgets::Table (#514).
  • Fix panics because of invalid offset when input changes between two frames in widgets::List and widgets::Chart (#516).

v0.15.0 - 2021-05-02

Features

  • Update crossterm to 0.19.
  • Update rand to 0.8.
  • Add a read-only view of the terminal state after the draw call (#440).

Fixes

  • Remove compile warning in TestBackend::assert_buffer (#466).

v0.14.0 - 2021-01-01

Breaking changes

New API for the Table widget

The Table widget got a lot of improvements that should make it easier to work with:

  • It should not longer panic when rendered on small areas.
  • Rows are now a collection of Cells, themselves wrapping a Text. This means you can style the entire Table, an entire Row, an entire Cell and rely on the styling capabilities of Text to get full control over the look of your Table.
  • Rows can have multiple lines.
  • The header is now optional and is just another Row always visible at the top.
  • Rows can have a bottom margin.
  • The header alignment is no longer off when an item is selected.

Taking the example of the code in examples/demo/ui.rs, this is what you may have to change:

     let failure_style = Style::default()
         .fg(Color::Red)
         .add_modifier(Modifier::RAPID_BLINK | Modifier::CROSSED_OUT);
-    let header = ["Server", "Location", "Status"];
     let rows = app.servers.iter().map(|s| {
         let style = if s.status == "Up" {
             up_style
         } else {
             failure_style
         };
-        Row::StyledData(vec![s.name, s.location, s.status].into_iter(), style)
+        Row::new(vec![s.name, s.location, s.status]).style(style)
     });
-    let table = Table::new(header.iter(), rows)
+    let table = Table::new(rows)
+        .header(
+            Row::new(vec!["Server", "Location", "Status"])
+                .style(Style::default().fg(Color::Yellow))
+                .bottom_margin(1),
+        )
         .block(Block::default().title("Servers").borders(Borders::ALL))
-        .header_style(Style::default().fg(Color::Yellow))
         .widths(&[
             Constraint::Length(15),
             Constraint::Length(15),

Here, we had to:

  • Change the way we construct Row which is no longer an enum but a struct. It accepts anything that can be converted to an iterator of things that can be converted to a Cell
  • The header is no longer a required parameter so we use Table::header to set it. Table::header_style has been removed since the style can be directly set using Row::style. In addition, we want to preserve the old margin between the header and the rest of the rows so we add a bottom margin to the header using Row::bottom_margin.

You may want to look at the documentation of the different types to get a better understanding:

Fixes

  • Fix handling of Non Breaking Space (NBSP) in wrapped text in Paragraph widget.

Features

  • Add Style::reset to create a Style resetting all styling properties when applied.
  • Add an option to render the Gauge widget with unicode blocks.
  • Manage common project tasks with cargo-make rather than make for easier on-boarding.

v0.13.0 - 2020-11-14

Features

  • Add LineGauge widget which is a more compact variant of the existing Gauge.
  • Bump crossterm to 0.18

Fixes

  • Take into account the borders of the Table widget when the widths of columns is controlled by Percentage and Ratio constraints.

v0.12.0 - 2020-09-27

Features

  • Make it easier to work with string with multiple lines in Text (#361).

Fixes

  • Fix a style leak in Graph so components drawn on top of the plotted data (i.e legend and axis titles) are not affected by the style of the Datasets (#388).
  • Make sure BarChart shows bars with the max height only when the plotted data is actually equal to the max (#383).

v0.11.0 - 2020-09-20

Features

  • Add the dot character as a new type of canvas marker (#350).
  • Support more style modifiers on Windows (#368).

Fixes

  • Clearing the terminal through Terminal::clear will cause the whole UI to be redrawn (#380).
  • Fix incorrect output when the first diff to draw is on the second cell of the terminal (#347).

v0.10.0 - 2020-07-17

Breaking changes

Easier cursor management

A new method has been added to Frame called set_cursor. It lets you specify where the cursor should be placed after the draw call. Furthermore like any other widgets, if you do not set a cursor position during a draw call, the cursor is automatically hidden.

For example:

fn draw_input(f: &mut Frame, app: &App) {
  if app.editing {
    let input_width = app.input.width() as u16;
    // The cursor will be placed just after the last character of the input
    f.set_cursor((input_width + 1, 0));
  } else {
    // We are no longer editing, the cursor does not have to be shown, set_cursor is not called and
    // thus automatically hidden.
  }
}

In order to make this possible, the draw closure takes in input &mut Frame instead of mut Frame.

Advanced text styling

It has been reported several times that the text styling capabilities were somewhat limited in many places of the crate. To solve the issue, this release includes a new set of text primitives that are now used by a majority of widgets to provide flexible text styling.

Text is replaced by the following types:

  • Span: a string with a unique style.
  • Spans: a string with multiple styles.
  • Text: a multi-lines string with multiple styles.

However, you do not always need this complexity so the crate provides From implementations to let you use simple strings as a default and switch to the previous primitives when you need additional styling capabilities.

For example, the title of a Block can be set in the following ways:

// A title with no styling
Block::default().title("My title");
// A yellow title
Block::default().title(Span::styled("My title", Style::default().fg(Color::Yellow)));
// A title where "My" is bold and "title" is a simple string
Block::default().title(vec![
    Span::styled("My", Style::default().add_modifier(Modifier::BOLD)),
    Span::from("title")
]);
  • Buffer::set_spans and Buffer::set_span were added.
  • Paragraph::new expects an input that can be converted to a Text.
  • Block::title_style is deprecated.
  • Block::title expects a Spans.
  • Tabs expects a list of Spans.
  • Gauge custom label is now a Span.
  • Axis title and labels are Spans (as a consequence Chart no longer has generic bounds).

Incremental styling

Previously Style was used to represent an exhaustive set of style rules to be applied to an UI element. It implied that whenever you wanted to change even only one property you had to provide the complete style. For example, if you had a Block where you wanted to have a green background and a title in bold, you had to do the following:

let style = Style::default().bg(Color::Green);
Block::default()
  .style(style)
  .title("My title")
  // Here we reused the style otherwise the background color would have been reset
  .title_style(style.modifier(Modifier::BOLD));

In this new release, you may now write this as:

Block::default()
    .style(Style::default().bg(Color::Green))
    // The style is not overridden anymore, we simply add new style rule for the title.
    .title(Span::styled("My title", Style::default().add_modifier(Modifier::BOLD)))

In addition, the crate now provides a method patch to combine two styles into a new set of style rules:

let style = Style::default().modifier(Modifier::BOLD);
let style = style.patch(Style::default().add_modifier(Modifier::ITALIC));
// style.modifier == Modifier::BOLD | Modifier::ITALIC, the modifier has been enriched not overridden
  • Style::modifier has been removed in favor of Style::add_modifier and Style::remove_modifier.
  • Buffer::set_style has been added. Buffer::set_background is deprecated.
  • BarChart::style no longer set the style of the bars. Use BarChart::bar_style in replacement.
  • Gauge::style no longer set the style of the gauge. Use Gauge::gauge_style in replacement.

List with item on multiple lines

The List widget has been refactored once again to support items with variable heights and complex styling.

  • List::new expects an input that can be converted to a Vec<ListItem> where ListItem is a wrapper around the item content to provide additional styling capabilities. ListItem contains a Text.
  • List::items has been removed.
// Before
let items = vec![
  "Item1",
  "Item2",
  "Item3"
];
List::default().items(items.iters());

// After
let items = vec![
  ListItem::new("Item1"),
  ListItem::new("Item2"),
  ListItem::new("Item3"),
];
List::new(items);

See the examples for more advanced usages.

More wrapping options

Paragraph::wrap expects Wrap instead of bool to let users decided whether they want to trim whitespaces when the text is wrapped.

// before
Paragraph::new(text).wrap(true)
// after
Paragraph::new(text).wrap(Wrap { trim: true }) // to have the same behavior
Paragraph::new(text).wrap(Wrap { trim: false }) // to use the new behavior

Horizontal scrolling in paragraph

You can now scroll horizontally in Paragraph. The argument of Paragraph::scroll has thus be changed from u16 to (u16, u16).

Features

Serialization of style

You can now serialize and de-serialize Style using the optional serde feature.

v0.9.5 - 2020-05-21

Bug Fixes

  • Fix out of bounds panic in widgets::Tabs when the widget is rendered on small areas.

v0.9.4 - 2020-05-12

Bug Fixes

  • Ignore zero-width graphemes in Buffer::set_stringn.

v0.9.3 - 2020-05-11

Bug Fixes

  • Fix usize overflows in widgets::Chart when a dataset is empty.

v0.9.2 - 2020-05-10

Bug Fixes

  • Fix usize overflows in widgets::canvas::Line drawing algorithm.

v0.9.1 - 2020-04-16

Bug Fixes

  • The List widget now takes into account the width of the highlight_symbol when calculating the total width of its items. It prevents items to overflow outside of the widget area.

v0.9.0 - 2020-04-14

Features

  • Introduce stateful widgets, i.e widgets that can take advantage of keeping some state around between two draw calls (#210 goes a bit more into the details).
  • Allow a Table row to be selected.
// State initialization
let mut state = TableState::default();

// In the terminal.draw closure
let header = ["Col1", "Col2", "Col"];
let rows = [
  Row::Data(["Row11", "Row12", "Row13"].into_iter())
];
let table = Table::new(header.into_iter(), rows.into_iter());
f.render_stateful_widget(table, area, &mut state);

// In response to some event:
state.select(Some(1));
  • Add a way to choose the type of border used to draw a block. You can now choose from plain, rounded, double and thick lines.

  • Add a graph_type property on the Dataset of a Chart widget. By default it will be Scatter where the points are drawn as is. An other option is Line where a line will be draw between each consecutive points of the dataset.

  • Style methods are now const, allowing you to initialize const Style objects.

  • Improve control over whether the legend in the Chart widget is shown or not. You can now set custom constraints using Chart::hidden_legend_constraints.

  • Add Table::header_gap to add some space between the header and the first row.

  • Remove log from the dependencies

  • Add a way to use a restricted set of unicode symbols in several widgets to improve portability in exchange of a degraded output. (see BarChart::bar_set, Sparkline::bar_set and Canvas::marker). You can check how the --enhanced-graphics flag is used in the demos.

Breaking Changes

  • Widget::render has been deleted. You should now use Frame::render_widget to render a widget on the corresponding Frame. This makes the Widget implementation totally decoupled from the Frame.
// Before
Block::default().render(&mut f, size);

// After
let block = Block::default();
f.render_widget(block, size);
  • Widget::draw has been renamed to Widget::render and the signature has been updated to reflect that widgets are consumable objects. Thus the method takes self instead of &mut self.
// Before
impl Widget for MyWidget {
  fn draw(&mut self, area: Rect, buf: &mut Buffer) {
  }
}

/// After
impl Widget for MyWidget {
  fn render(self, arera: Rect, buf: &mut Buffer) {
  }
}
  • Widget::background has been replaced by Buffer::set_background
// Before
impl Widget for MyWidget {
  fn render(self, arera: Rect, buf: &mut Buffer) {
    self.background(area, buf, self.style.bg);
  }
}

// After
impl Widget for MyWidget {
  fn render(self, arera: Rect, buf: &mut Buffer) {
    buf.set_background(area, self.style.bg);
  }
}
  • Update the Shape trait for objects that can be draw on a Canvas widgets. Instead of returning an iterator over its points, a Shape is given a Painter object that provides a paint as well as a get_point method. This gives the Shape more information about the surface it will be drawn to. In particular, this change allows the Line shape to use a more precise and efficient drawing algorithm (Bresenham's line algorithm).

  • SelectableList has been deleted. You can now take advantage of the associated ListState of the List widget to select an item.

// Before
List::new(&["Item1", "Item2", "Item3"])
  .select(Some(1))
  .render(&mut f, area);

// After

// State initialization
let mut state = ListState::default();

// In the terminal.draw closure
let list = List::new(&["Item1", "Item2", "Item3"]);
f.render_stateful_widget(list, area, &mut state);

// In response to some events
state.select(Some(1));
  • widgets::Marker has been moved to symbols::Marker

v0.8.0 - 2019-12-15

Breaking Changes

  • Bump crossterm to 0.14.
  • Add cross symbol to the symbols list.

Bug Fixes

  • Use the value of title_style to style the title of Axis.

v0.7.0 - 2019-11-29

Breaking Changes

  • Use Constraint instead of integers to specify the widths of the Table widget's columns. This will allow more responsive tables.
Table::new(header, row)
  .widths(&[15, 15, 10])
  .render(f, chunk);

becomes:

Table::new(header, row)
  .widths(&[
    Constraint::Length(15),
    Constraint::Length(15),
    Constraint::Length(10),
  ])
  .render(f, chunk);
  • Bump crossterm to 0.13.
  • Use Github Actions for CI (Travis and Azure Pipelines integrations have been deleted).

Features

  • Add support for horizontal and vertical margins in Layout.

v0.6.2 - 2019-07-16

Features

  • Text implements PartialEq

Bug Fixes

  • Avoid overflow errors in canvas

v0.6.1 - 2019-06-16

Bug Fixes

  • Avoid a division by zero when all values in a barchart are equal to 0.
  • Fix the inverted cursor position in the curses backend.
  • Ensure that the correct terminal size is returned when using the crossterm backend.
  • Avoid highlighting the separator after the selected item in the Tabs widget.

v0.6.0 - 2019-05-18

Breaking Changes

  • Update crossterm backend

v0.5.1 - 2019-04-14

Bug Fixes

  • Fix a panic in the Sparkline widget

v0.5.0 - 2019-03-10

Features

  • Add a new curses backend (with Windows support thanks to pancurses).
  • Add Backend::get_cursor and Backend::set_cursor methods to query and set the position of the cursor.
  • Add more constructors to the Crossterm backend.
  • Add a demo for all backends using a shared UI and application state.
  • Add Ratio as a new variant of layout Constraint. It can be used to define exact ratios constraints.

Breaking Changes

  • Add support for multiple modifiers on the same Style by changing Modifier from an enum to a bitflags struct.

So instead of writing:

let style = Style::default().add_modifier(Modifier::Italic);

one should use:

let style = Style::default().add_modifier(Modifier::ITALIC);
// or
let style = Style::default().add_modifier(Modifier::ITALIC | Modifier::BOLD);

Bug Fixes

  • Ensure correct behavior of the alternate screens with the Crossterm backend.
  • Fix out of bounds panic when two Buffer are merged.

v0.4.0 - 2019-02-03

Features

  • Add a new canvas shape: Rectangle.
  • Official support of Crossterm backend.
  • Make it possible to choose the divider between Tabs.
  • Add word wrapping on Paragraph.
  • The gauge widget accepts a ratio (f64 between 0 and 1) in addition of a percentage.

Breaking Changes

  • Upgrade to Rust 2018 edition.

Bug Fixes

  • Fix rendering of double-width characters.
  • Fix race condition on the size of the terminal and expose a size that is safe to use when drawing through Frame::size.
  • Prevent unsigned int overflow on large screens.

v0.3.0 - 2018-11-04

Features

  • Add experimental test backend

v0.3.0-beta.3 - 2018-09-24

Features

  • show_cursor is called when Terminal is dropped if the cursor is hidden.

v0.3.0-beta.2 - 2018-09-23

Breaking Changes

  • Remove custom termion backends. This is motivated by the fact that termion structs are meant to be combined/wrapped to provide additional functionalities to the terminal (e.g AlternateScreen, Mouse support, ...). Thus providing exclusive types do not make a lot of sense and give a false hint that additional features cannot be used together. The recommended approach is now to create your own version of stdout:
let stdout = io::stdout().into_raw_mode()?;
let stdout = MouseTerminal::from(stdout);
let stdout = AlternateScreen::from(stdout);

and then to create the corresponding termion backend:

let backend = TermionBackend::new(stdout);

The resulting code is more verbose but it works with all combinations of additional termion features.

v0.3.0-beta.1 - 2018-09-08

Breaking Changes

  • Replace Item by a generic and flexible Text that can be used in both Paragraph and List widgets.
  • Remove unnecessary borrows on Style.

v0.3.0-beta.0 - 2018-09-04

Features

  • Add a basic Crossterm backend

Breaking Changes

  • Remove Group and introduce Layout in its place
    • Terminal is no longer required to compute a layout
    • Size has been renamed Constraint
  • Widgets are rendered on a Frame instead of a Terminal in order to avoid mixing draw and render calls
  • draw on Terminal expects a closure where the UI is built by rendering widgets on the given Frame
  • Update Widget trait
    • draw takes area by value
    • render takes a Frame instead of a Terminal
  • All widgets use the consumable builder pattern
  • SelectableList can have no selected item and the highlight symbol is hidden in this case
  • Remove markup language inside Paragraph. Paragraph now expects an iterator of Text items

v0.2.3 - 2018-06-09

Features

  • Add start_corner option for List
  • Add more text alignment options for Paragraph

v0.2.2 - 2018-05-06

Features

  • Terminal implements Debug

Breaking Changes

  • Use FnOnce instead of FnMut in Group::render

v0.2.1 - 2018-04-01

Features

  • Add AlternateScreenBackend in termion backend
  • Add TermionBackend::with_stdout in order to let an user of the library provides its own termion struct
  • Add tests and documentation for Buffer::pos_of
  • Remove leading whitespaces when wrapping text

Bug Fixes

  • Fix debug_assert in Buffer::pos_of
  • Pass the style of SelectableList to the underlying List
  • Fix missing character when wrapping text
  • Fix panic when specifying layout constraints

v0.2.0 - 2017-12-26

Features

  • Add MouseBackend in termion backend to handle scroll and mouse events
  • Add generic Item for items in a List
  • Drop log4rs as a dev-dependencies in favor of stderrlog

Breaking Changes

  • 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