Open
Conversation
- Bumped ratatui to 0.28.1, crossterm to 0.28.1, lazy_static to 1.5.0, and time to 0.3.36. - ratatui's Frame is no longer generic over the backend, fixed this. The deprecated .size() was also replaced with .area(). - ratatui::text::Spans was renamed to Line. Updated this in the code. Further more, it is no longer a tuple struct, updated code to use constructors and new methods - List demo example: Fixed a bug on windows where keys would double press - Updated documentation to use correct versions and package names - Fixed capitalization and broken links in docs - Other minor changes due to ratatui updates
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This repo hasn't been updated in a long time and I wanted to use it in one of my own projects. It also doesn't seem like this is getting merged into another project anytime soon, ratatui/ratatui#118 is tagged as "Status: On Hold", and in preiter93/tui-widget-list#20 the project owner mentioned not having enough time.
So I took it upon myself to update this project to keep it maintained until something happens with it.
I'll leave it up to you, but you may want to bump the package version in Cargo.toml since this is a pretty big update.
Changes
ratatuito 0.28.1,crosstermto 0.28.1, lazy_static to1.5.0, and time to0.3.36.Frameis no longer generic over the backend, and.size()was deprecated and replaced with.area().ratatui::text::Spanswas renamed toLine, and is no longer a tuple struct.