Skip to content

Commit

Permalink
Update to Bevy 0.15.0-rc.2 (#17)
Browse files Browse the repository at this point in the history
* Update Bevy to 0.15.0-rc.2

* Update to Bevy text rework and required components

* Require BbcodeSettings with the Bbcode component

* Update examples to Bevy 0.15-rc.2 and the resulting Bbcode updates

* Bump version to 0.3.0-rc.1 and update README to new version

* Update changelog for v0.3.0-rc.1
  • Loading branch information
TimJentzsch authored Nov 9, 2024
1 parent 7b70e08 commit c20b6e0
Show file tree
Hide file tree
Showing 11 changed files with 1,143 additions and 475 deletions.
15 changes: 15 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,20 @@
# Changelog

## v0.3.0-rc.1

This release updates to Bevy 0.15, which reworks text and introduces required components.

### No More Bundles

With required components, we no longer need the `BbcodeBundle`.
Instead, just spawn the `Bbcode` and `BbcodeSettings` components.
All other needed components will be inserted automatically.

### Query for `TextSpan`

When you wanted to update text dynamically via marker components inserted via BBcode, you used to query for the marker component and `Text`.
Now, query for `TextSpan` instead, which is what the BBcode markup gets parsed into now.

## v0.2.0

This release simplifies font handling, adds named colors and adds support for efficiently changing text dynamically.
Expand Down
Loading

0 comments on commit c20b6e0

Please sign in to comment.