Skip to content
This repository has been archived by the owner on Aug 6, 2023. It is now read-only.

v0.7.0

Compare
Choose a tag to compare
@fdehau fdehau released this 29 Nov 09:07
· 211 commits to master since this release

Changed

  • 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).

Added

  • Add support for horizontal and vertical margins in Layout.