Skip to content

Commit

Permalink
Fix version in README and wrong labels in examples/common
Browse files Browse the repository at this point in the history
  • Loading branch information
Weasy666 committed Apr 11, 2023
1 parent 17a5eb2 commit 20308b4
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,12 +47,12 @@ Copy this to your `Cargo.toml`

```toml
# Stable
bevy_svg = "0.10.0-alpha1"
bevy_svg = "0.10.0"

# 2D and 3D are available on default, if you only want/need one, use the following
bevy_svg = { version = "0.10.0-alpha1", default-features = false, features = ["2d"] }
bevy_svg = { version = "0.10.0", default-features = false, features = ["2d"] }
# or
bevy_svg = { version = "0.10.0-alpha1", default-features = false, features = ["3d"] }
bevy_svg = { version = "0.10.0", default-features = false, features = ["3d"] }

# Living on the edge (at your own risk 😅)
bevy_svg = { git = "https://github.com/Weasy666/bevy_svg", branch = "main" }
Expand Down
4 changes: 2 additions & 2 deletions examples/common/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@ fn setup_fps_counter(mut commands: Commands, asset_server: Res<AssetServer>) {
color: Color::GOLD,
}),
TextSection::new(
"\n(max: ",
"\n(min: ",
TextStyle {
font: font_bold.clone(),
font_size: 20.0,
Expand All @@ -188,7 +188,7 @@ fn setup_fps_counter(mut commands: Commands, asset_server: Res<AssetServer>) {
color: Color::GOLD,
}),
TextSection::new(
" - min: ",
" - max: ",
TextStyle {
font: font_bold.clone(),
font_size: 20.0,
Expand Down

0 comments on commit 20308b4

Please sign in to comment.