-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Fix bug with website config not loading properly and defaulting to wrong websocket port for `player` page - Fix bug where audio resources weren't cleaned up properly when navigating away from `player` page - Upgrade yew and yew_router dependencies to use web-sys. Fixes bug causing wasm panic when navigating away from `player` page. Going back from player page now works properly.
- Loading branch information
Showing
3 changed files
with
3 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "karaoke-rs" | ||
version = "0.9.0" | ||
version = "0.9.1" | ||
authors = ["tarkah <[email protected]>"] | ||
edition = "2018" | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -51,7 +51,7 @@ cargo build --release | |
|
||
# CLI Arguments | ||
``` | ||
karoake-rs 0.9.0 | ||
karoake-rs 0.9.1 | ||
tarkah <[email protected]> | ||
A simple, network enabled karaoke player in Rust | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -56,7 +56,7 @@ fn run() -> Result<(), Error> { | |
|
||
fn get_config() -> Result<Config, failure::Error> { | ||
let matches = App::new("karoake-rs") | ||
.version("0.9.0") | ||
.version("0.9.1") | ||
.author("tarkah <[email protected]>") | ||
.about("A simple, network enabled karaoke player in Rust") | ||
.arg( | ||
|