Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(deps): bump ratatui to 0.26.2 and crossterm to 0.27.0 #515

Merged
merged 3 commits into from
May 16, 2024

Commits on May 11, 2024

  1. chore(deps): bump ratatui to 0.26.2 and crossterm to 0.27.0

    Bumps MSRV to 1.74.0
    
    This necessitated 3 changes to the codebase:
    - `Spans` was renamed to the more ergonomic `Line` type.
    - `Frame` no longer requires a backend type parameter.
    - `Table::new` requires a widths parameter, so we use
      `Table::default().rows(rows)` instead of `Table::new(rows)`.
    
    Crossterm on Windows triggers events for key press as well as release
    and repeat, which causes duplicate key presses. This change filters out
    those events.
    joshka authored and Rustin170506 committed May 11, 2024
    Configuration menu
    Copy the full SHA
    57f7f69 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    2f3d58e View commit details
    Browse the repository at this point in the history
  3. style: cleanup imports

    joshka authored and Rustin170506 committed May 11, 2024
    Configuration menu
    Copy the full SHA
    2b11d29 View commit details
    Browse the repository at this point in the history