feat: Add scene naming option to configuration and update naming logic in titles

This commit is contained in:
Andy
2025-08-01 18:40:40 +00:00
parent 058bb60502
commit d61bec4a8c
5 changed files with 166 additions and 134 deletions

View File

@@ -80,6 +80,7 @@ class Config:
self.tmdb_api_key: str = kwargs.get("tmdb_api_key") or ""
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)
@classmethod
def from_yaml(cls, path: Path) -> Config: