-
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.
- Add option to allow custom song format when parsing collection on startup - Add options to specify website and websocket ports - Add options to customize the look of both native and web players. - Player can be scaled or set to fullscreen and have the background coloring disabled
- 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.8.1" | ||
version = "0.9.0" | ||
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.8.1 | ||
karoake-rs 0.9.0 | ||
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.8.1") | ||
.version("0.9.0") | ||
.author("tarkah <[email protected]>") | ||
.about("A simple, network enabled karaoke player in Rust") | ||
.arg( | ||
|