-
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 where web player would panic if incorrect audio data was attempted to decode. Player won't panic, but user will still need to remove song from queue since it can't be played. - Update dependencies, remove default features from some to reduce dependency tree. - Remove frontend from Cargo workspace to get working better with RLS for multi-folder workspace in VSCode
- Loading branch information
Showing
4 changed files
with
4 additions
and
4 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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.1" | ||
version = "0.9.2" | ||
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.1 | ||
karoake-rs 0.9.2 | ||
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.1") | ||
.version("0.9.2") | ||
.author("tarkah <[email protected]>") | ||
.about("A simple, network enabled karaoke player in Rust") | ||
.arg( | ||
|