feat: Update version to 1.1.1 and add update checking functionality

This commit is contained in:
Andy
2025-07-30 23:12:13 +00:00
parent 67caf71295
commit 776d8f3df0
9 changed files with 166 additions and 4 deletions

View File

@@ -78,6 +78,7 @@ class Config:
self.set_terminal_bg: bool = kwargs.get("set_terminal_bg", False)
self.tag: str = kwargs.get("tag") or ""
self.tmdb_api_key: str = kwargs.get("tmdb_api_key") or ""
self.update_checks: bool = kwargs.get("update_checks", True)
@classmethod
def from_yaml(cls, path: Path) -> Config: