From 6d32293127275c6f979e17a890206a5668d9def0 Mon Sep 17 00:00:00 2001 From: CodeDevMLH <145071728+CodeDevMLH@users.noreply.github.com> Date: Mon, 29 Dec 2025 23:06:18 +0100 Subject: [PATCH] feat: update manifest for version 1.4.1.0 and fix fireworks display issue on scroll --- .gitignore | 1 + Jellyfin.Plugin.Seasonals/Web/fireworks.js | 1 + manifest.json | 8 ++++++++ 3 files changed, 10 insertions(+) diff --git a/.gitignore b/.gitignore index f6133c3..9715da3 100644 --- a/.gitignore +++ b/.gitignore @@ -4,5 +4,6 @@ obj/ .idea/ artifacts +test-site.html build.yaml RELEASE_GUIDE.md \ No newline at end of file diff --git a/Jellyfin.Plugin.Seasonals/Web/fireworks.js b/Jellyfin.Plugin.Seasonals/Web/fireworks.js index 130b603..21423de 100644 --- a/Jellyfin.Plugin.Seasonals/Web/fireworks.js +++ b/Jellyfin.Plugin.Seasonals/Web/fireworks.js @@ -140,6 +140,7 @@ function startFireworks() { if (!document.querySelector('.fireworks')) { fireworkContainer.className = "fireworks"; fireworkContainer.setAttribute("aria-hidden", "true"); + fireworkContainer.style.position = scrollFireworks ? 'absolute' : 'fixed'; document.body.appendChild(fireworkContainer); } diff --git a/manifest.json b/manifest.json index a3bb0b8..81fbaee 100644 --- a/manifest.json +++ b/manifest.json @@ -8,6 +8,14 @@ "category": "General", "imageUrl": "https://git.mahom03-spacecloud.de/CodeDevMLH/Jellyfin-Seasonals-Plugin/raw/branch/main/logo.png", "versions": [ + { + "version": "1.4.1.0", + "changelog": "- fix fireworks display issue on scroll", + "targetAbi": "10.11.0.0", + "sourceUrl": "https://git.mahom03-spacecloud.de/CodeDevMLH/Jellyfin-Seasonals-Plugin/releases/download/v1.4.1.0/Jellyfin.Plugin.Seasonals.zip", + "checksum": "13fa16ff190da6acc537690d5ee99264", + "timestamp": "2025-12-29T22:05:02Z" + }, { "version": "1.4.0.0", "changelog": "- settings linked directly in the main menu\n- renamed main plugin script\n- added enable/disable toggle for the entire plugin",