enhanced list modal and fixes

This commit is contained in:
2025-12-27 20:35:57 +01:00
parent 4bca41f6a2
commit 295cab93f3
25 changed files with 191 additions and 761 deletions

View File

@@ -63,7 +63,7 @@ async function loadAnime() {
}
animeData = data;
animeData.entry_type = 'ANIME';
const metadata = MediaMetadataUtils.formatAnimeData(data, !!extensionName);
updatePageTitle(metadata.title);

View File

@@ -92,6 +92,7 @@ function startHeroCycle() {
async function updateHeroUI(anime) {
if(!anime) return;
anime.entry_type = 'ANIME';
const title = anime.title.english || anime.title.romaji || "Unknown Title";
const score = anime.averageScore ? anime.averageScore + '% Match' : 'N/A';