diff --git a/CHANGELOG.md b/CHANGELOG.md index df8828e..a2e0667 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -15,6 +15,14 @@ You can find its changes [documented below](#051---2024-07-04). This release supports Bevy version 0.14 and has an [MSRV][] of 1.80. +## [0.6.1] - 2024-08-14 + +This release supports Bevy version 0.14 and has an [MSRV][] of 1.80. + +### Fixed + +- Text is now properly skipped when a `SkipEncoding` component is present. + ## [0.6.0] - 2024-08-09 This release supports Bevy version 0.14 and has an [MSRV][] of 1.80. diff --git a/Cargo.toml b/Cargo.toml index 907addd..94b695c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -15,7 +15,7 @@ members = [ [workspace.package] edition = "2021" -version = "0.6.0" +version = "0.6.1" license = "(MIT OR Apache-2.0) AND OFL-1.1" repository = "https://github.com/linebender/bevy_vello" diff --git a/src/render/extract.rs b/src/render/extract.rs index 3baded3..68fd37d 100644 --- a/src/render/extract.rs +++ b/src/render/extract.rs @@ -199,15 +199,18 @@ pub struct ExtractedRenderText { pub fn extract_text( mut commands: Commands, query_scenes: Extract< - Query<( - &VelloTextSection, - &VelloTextAnchor, - &GlobalTransform, - &ViewVisibility, - &InheritedVisibility, - &CoordinateSpace, - Option<&RenderLayers>, - )>, + Query< + ( + &VelloTextSection, + &VelloTextAnchor, + &GlobalTransform, + &ViewVisibility, + &InheritedVisibility, + &CoordinateSpace, + Option<&RenderLayers>, + ), + Without, + >, >, ) { for (