From 7654c0429596ef52f68d0ca01e5f768a552b693b Mon Sep 17 00:00:00 2001 From: Cory Forsstrom Date: Tue, 14 Jan 2020 11:48:48 -0800 Subject: [PATCH] Bump to version 0.7.0 - Move frontend to yew, along with restyling --- Cargo.lock | 2 +- Cargo.toml | 4 ++-- README.md | 6 ------ src/main.rs | 4 ++-- 4 files changed, 5 insertions(+), 11 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index fe58adf..b0a83ca 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1357,7 +1357,7 @@ dependencies = [ [[package]] name = "karaoke-rs" -version = "0.6.1" +version = "0.7.0" dependencies = [ "actix-files 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)", "actix-web 1.0.9 (registry+https://github.com/rust-lang/crates.io-index)", diff --git a/Cargo.toml b/Cargo.toml index f8a294d..6b90320 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "karaoke-rs" -version = "0.6.1" -authors = ["Cory Forsstrom "] +version = "0.7.0" +authors = ["tarkah "] edition = "2018" [dependencies] diff --git a/README.md b/README.md index c49873b..2d1e021 100644 --- a/README.md +++ b/README.md @@ -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 diff --git a/src/main.rs b/src/main.rs index b405f7c..5d7dc10 100644 --- a/src/main.rs +++ b/src/main.rs @@ -39,8 +39,8 @@ fn main() -> Result<(), failure::Error> { fn get_config() -> Result { let matches = App::new("karoake-rs") - .version("0.6.1") - .author("Cory F. ") + .version("0.7.0") + .author("tarkah ") .about("A simple, network enabled karaoke player in Rust") .arg( Arg::with_name("config")