Skip to content

Commit

Permalink
Bump version to v1.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
cedruszhang committed Jul 18, 2022
1 parent 2621e1f commit 47e7f1d
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 17 deletions.
14 changes: 1 addition & 13 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 1 addition & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "bounce-up"
version = "1.3.3"
version = "1.4.0"
edition = "2021"

[lib]
Expand All @@ -12,7 +12,6 @@ dot = []
[dependencies]
fastrand = "1.7"
itertools = "0.10"
derive-new = "0.5"
wasm-bindgen = "0.2"
bevy = { version = "0.7", default-features = false, features = [
"bevy_winit",
Expand Down
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ Run the following command to compile:
$ wasm-pack build --release --target web
```

And add the `index.html`:
Then add the `index.html` into the `pkg` folder:
```html
<html>

Expand All @@ -33,3 +33,5 @@ And add the `index.html`:

</html>
```

Finally copy the `assets` folder into the `pkg` folder, pack and release.
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ pub struct TextColor {
impl TextColor {
pub fn new(colors: Vec<Color>, duration: f32) -> Self {
Self {
timer: Timer::from_seconds(duration, false),
timer: Timer::from_seconds(duration, true),
colors,
index: 0,
}
Expand Down

0 comments on commit 47e7f1d

Please sign in to comment.