push version

This commit is contained in:
Sebastian Hugentobler 2017-05-04 16:29:31 +02:00
parent 435e5ba314
commit b4630b7767
4 changed files with 5 additions and 11 deletions

View File

@ -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) ## 0.2.4 (2017-03-23)
- fix a bug in serial key parsing - fix a bug in serial key parsing

View File

@ -1,6 +1,6 @@
[package] [package]
name = "gog-sync" name = "gog-sync"
version = "0.2.4" version = "0.3.0"
authors = ["Sebastian Hugentobler <sebastian@vanwa.ch>"] authors = ["Sebastian Hugentobler <sebastian@vanwa.ch>"]
description = "Synchronizes a GOG library with a local folder." description = "Synchronizes a GOG library with a local folder."
documentation = "https://docs.rs/crate/gog-sync" documentation = "https://docs.rs/crate/gog-sync"

View File

@ -31,9 +31,6 @@ A bare configuration with default values before first use:
{ {
"gameStorage": ".", "gameStorage": ".",
"movieStorage": ".", "movieStorage": ".",
"content": {},
"data": {},
"extras": {},
"osFilters": [], "osFilters": [],
"languageFilters": [], "languageFilters": [],
"skipMovies": false, "skipMovies": false,
@ -43,9 +40,6 @@ A bare configuration with default values before first use:
- *gameStorage*: Where to save games - *gameStorage*: Where to save games
- *movieStorage*: Where to save movies - *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. - *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. - *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. - *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` - `1080p`
- `4k` - `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 # Usage
If you want to see the information log while running set `RUST_LOG=info`. If you want to see the information log while running set `RUST_LOG=info`.

View File

@ -28,7 +28,7 @@ fn main() {
env_logger::init().unwrap(); env_logger::init().unwrap();
let matches = App::new("Gog Synchronizer") let matches = App::new("Gog Synchronizer")
.version("0.2.4") .version("0.3.0")
.author("Sebastian Hugentobler <sebastian@vanwa.ch>") .author("Sebastian Hugentobler <sebastian@vanwa.ch>")
.about("Synchronizes your gog library to a local folder.") .about("Synchronizes your gog library to a local folder.")
.arg(Arg::with_name("game-storage") .arg(Arg::with_name("game-storage")