dev: bump to 0.1.74-dev – BurningSeries entfernt, Paging-Fix Neuste Titel

This commit is contained in:
2026-03-10 10:41:37 +01:00
parent 6e7b4c3d39
commit 5564851d35
10 changed files with 109 additions and 213 deletions

View File

@@ -525,7 +525,7 @@ class FilmpalastPlugin(BasisPlugin):
return max_page
def capabilities(self) -> set[str]:
return {"genres", "alpha", "series_catalog", "popular_series", "latest_titles"}
return {"genres", "alpha", "series_catalog", "popular_series", "new_titles"}
def _parse_alpha_links(self, soup: BeautifulSoupT) -> Dict[str, str]:
alpha: Dict[str, str] = {}
@@ -1057,7 +1057,7 @@ class FilmpalastPlugin(BasisPlugin):
except Exception:
return []
def latest_titles(self, page: int = 1) -> List[str]:
def new_titles_page(self, page: int = 1) -> List[str]:
"""Liefert neu hinzugefuegte Titel von /movies/new."""
if not self._requests_available:
return []
@@ -1071,6 +1071,9 @@ class FilmpalastPlugin(BasisPlugin):
except Exception:
return []
def new_titles(self) -> List[str]:
return self.new_titles_page(1)
def resolve_stream_link(self, link: str) -> Optional[str]:
if not link:
return None