Skip to content

Commit

Permalink
Bump to version 0.7.0
Browse files Browse the repository at this point in the history
- Move frontend to yew, along with restyling
  • Loading branch information
tarkah committed Jan 14, 2020
1 parent d50a4de commit 7654c04
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 11 deletions.
2 changes: 1 addition & 1 deletion Cargo.lock

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

4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "karaoke-rs"
version = "0.6.1"
authors = ["Cory Forsstrom <[email protected]>"]
version = "0.7.0"
authors = ["tarkah <[email protected]>"]
edition = "2018"

[dependencies]
Expand Down
6 changes: 0 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,12 +47,6 @@ cargo build --release
```
- Binary located at `target/release/karaoke-rs`

# TODO
- [x] Finish setting up configuration file, allow specifying song directory and data directory (for collection db file)
- [x] Allow passing config file location as argument
- [x] Bundle website template / static files into build binary, unload them to data path on run, update Rocket to load templates / static files from that path
- [ ] Setup proper logging and error handling


# Screenshots

Expand Down
4 changes: 2 additions & 2 deletions src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,8 @@ fn main() -> Result<(), failure::Error> {

fn get_config() -> Result<Config, failure::Error> {
let matches = App::new("karoake-rs")
.version("0.6.1")
.author("Cory F. <[email protected]>")
.version("0.7.0")
.author("tarkah <[email protected]>")
.about("A simple, network enabled karaoke player in Rust")
.arg(
Arg::with_name("config")
Expand Down

0 comments on commit 7654c04

Please sign in to comment.