feat: add update_check_interval_hours config field

Adds `update_check_interval_hours: u64` (serde default 24, 0 = disabled)
to Config struct, enabling periodic update check control via config file.
This commit is contained in:
2026-03-01 04:07:31 -03:00
parent 2b1773375a
commit da6311bc53
2 changed files with 10 additions and 0 deletions
+1
View File
@@ -10,6 +10,7 @@ fn make_config(max_depth: usize) -> Config {
max_depth,
cache_enabled: true,
cache_ttl_hours: 24,
update_check_interval_hours: 24,
default_session: SessionConfig { windows: vec![] },
}
}