Skip to content

Commit

Permalink
Documentation and CHANGELOG
Browse files Browse the repository at this point in the history
  • Loading branch information
blaind committed Nov 19, 2023
1 parent 79ea45c commit b123183
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 1 deletion.
17 changes: 17 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,23 @@

[git_tag_comparison]: https://github.com/blaind/bevy_text_mesh/compare/v0.6.0...main

## Version 0.8.0 (2023-11-19)

[Compare changelog](https://github.com/blaind/bevy_text_mesh/compare/v0.7.0...v0.8.0)

### Changed

- Upgrade bevy to 0.12.0
- Breaking: font must no longer be loaded with `#mesh` suffix

## Version 0.7.0 (2023-03-21)

[Compare changelog](https://github.com/blaind/bevy_text_mesh/compare/v0.6.0...v0.7.0)

### Changed

- Upgrade bevy to 0.11.0

## Version 0.6.0 (2023-03-21)

[Compare changelog](https://github.com/blaind/bevy_text_mesh/compare/v0.5.0...v0.6.0)
Expand Down
2 changes: 1 addition & 1 deletion src/mesh_system.rs
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ pub(crate) fn text_mesh(
state.warning_trigger_count += 1;

if state.warning_trigger_count > 5 {
warn!("font mesh not found - did you load the font using #mesh label (`asset_server.load('font.ttf#mesh'))`");
warn!("font mesh not found - did you load the font? (`asset_server.load('font.ttf'))`");
state.warning_shown = true;
}
}
Expand Down

0 comments on commit b123183

Please sign in to comment.