store file hashes; added "force" arg

close #28
This commit is contained in:
2023-09-12 21:28:53 +02:00
parent f23acb6788
commit 26bb7567de
3 changed files with 67 additions and 15 deletions

View File

@@ -20,6 +20,7 @@ pub struct Config {
pub skip_self_update: bool,
pub download_bonus_content: bool,
pub ask_bonus_content: bool,
pub force_update: bool,
}
impl Default for Config {
@@ -29,6 +30,7 @@ impl Default for Config {
skip_self_update: false,
download_bonus_content: false,
ask_bonus_content: true,
force_update: false,
}
}
}