feat(config): Add series_year option to control year inclusion in titles and YAML configuration

This commit is contained in:
Andy
2025-08-13 15:00:30 +00:00
parent eac2ff4cee
commit 06687b51fb
3 changed files with 10 additions and 4 deletions

View File

@@ -91,6 +91,7 @@ class Config:
self.update_checks: bool = kwargs.get("update_checks", True)
self.update_check_interval: int = kwargs.get("update_check_interval", 24)
self.scene_naming: bool = kwargs.get("scene_naming", True)
self.series_year: bool = kwargs.get("series_year", True)
self.title_cache_time: int = kwargs.get("title_cache_time", 1800) # 30 minutes default
self.title_cache_max_retention: int = kwargs.get("title_cache_max_retention", 86400) # 24 hours default