From b4630b7767a673a352443bb64aac5914f1e808ad Mon Sep 17 00:00:00 2001 From: Sebastian Hugentobler Date: Thu, 4 May 2017 16:29:31 +0200 Subject: [PATCH] push version --- CHANGELOG.md | 3 +++ Cargo.toml | 2 +- README.md | 9 --------- src/main.rs | 2 +- 4 files changed, 5 insertions(+), 11 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8563eb1..dae0940 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,6 @@ +## 0.3.0 (2017-05-04) +- move hashes and content info into seperate files as to not clutter up the main config file. + ## 0.2.4 (2017-03-23) - fix a bug in serial key parsing diff --git a/Cargo.toml b/Cargo.toml index fba5b70..451cb3a 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "gog-sync" -version = "0.2.4" +version = "0.3.0" authors = ["Sebastian Hugentobler "] description = "Synchronizes a GOG library with a local folder." documentation = "https://docs.rs/crate/gog-sync" diff --git a/README.md b/README.md index 44c1aab..56227a4 100644 --- a/README.md +++ b/README.md @@ -31,9 +31,6 @@ A bare configuration with default values before first use: { "gameStorage": ".", "movieStorage": ".", - "content": {}, - "data": {}, - "extras": {}, "osFilters": [], "languageFilters": [], "skipMovies": false, @@ -43,9 +40,6 @@ A bare configuration with default values before first use: - *gameStorage*: Where to save games - *movieStorage*: Where to save movies -- *content*: A map, content id => hash -- *data*: A map, data url => hash -- *extras*: A map, extra url => hash - *osFilters*: An array of operating systems. If it is not empty, game data is limited to the ones in the list. - *languageFilters*: An array of languages. If it is not empty, game data is limited to the ones in the list. - *resolutionFilters*: An array of resolutions. If it is not empty, movie data is limited to the ones in the list. @@ -66,9 +60,6 @@ An incomplete list of resolutions on gog: - `1080p` - `4k` -You should have no need of changing `content`, `data` or `extras`, as these are -used to determine whether specific content is up to date. - # Usage If you want to see the information log while running set `RUST_LOG=info`. diff --git a/src/main.rs b/src/main.rs index 6cf428b..8fb6eb6 100644 --- a/src/main.rs +++ b/src/main.rs @@ -28,7 +28,7 @@ fn main() { env_logger::init().unwrap(); let matches = App::new("Gog Synchronizer") - .version("0.2.4") + .version("0.3.0") .author("Sebastian Hugentobler ") .about("Synchronizes your gog library to a local folder.") .arg(Arg::with_name("game-storage")