A (forked) rust crate for using Ratatui in a Bevy application.
fork

Configure Feed

Select the types of activity you want to include in your feed.

chore: release (#4)

Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>

authored by

github-actions[bot]
github-actions[bot]
and committed by
GitHub
89e618b1 151b4ab1

+14 -2
+12
CHANGELOG.md
··· 4 4 5 5 ## [unreleased] 6 6 7 + ## [0.5.0](https://github.com/joshka/bevy_ratatui/compare/v0.4.0...v0.5.0) - 2024-06-05 8 + 9 + ### Added 10 + - add rest of crossterm events 11 + 12 + ### Other 13 + - Move mouse to separate plugin 14 + - Make kitty protocol configurable 15 + - added kitty protocol support. ([#5](https://github.com/joshka/bevy_ratatui/pull/5)) 16 + - add mouse event example 17 + - Add more docs 18 + 7 19 ## [0.4.0](https://github.com/joshka/bevy_ratatui/compare/v0.3.0...v0.4.0) - 2024-06-01 8 20 9 21 ### Other
+1 -1
Cargo.lock
··· 331 331 332 332 [[package]] 333 333 name = "bevy_ratatui" 334 - version = "0.4.0" 334 + version = "0.5.0" 335 335 dependencies = [ 336 336 "bevy", 337 337 "color-eyre",
+1 -1
Cargo.toml
··· 1 1 [package] 2 2 name = "bevy_ratatui" 3 3 description = "A Bevy plugin for building terminal user interfaces with Ratatui" 4 - version = "0.4.0" 4 + version = "0.5.0" 5 5 edition = "2021" 6 6 license = "MIT OR Apache-2.0" 7 7 repository = "https://github.com/joshka/bevy_ratatui"