From e717c07c54bc8d477bb537d041d2741af086ad10 Mon Sep 17 00:00:00 2001 From: CodeDevMLH <145071728+CodeDevMLH@users.noreply.github.com> Date: Mon, 9 Feb 2026 17:20:40 +0100 Subject: [PATCH] Bump version to 1.5.0.18 and update changelog for recent changes --- .../Jellyfin.Plugin.MediaBarEnhanced.csproj | 2 +- Jellyfin.Plugin.MediaBarEnhanced/Web/mediaBarEnhanced.js | 6 +++--- manifest.json | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Jellyfin.Plugin.MediaBarEnhanced/Jellyfin.Plugin.MediaBarEnhanced.csproj b/Jellyfin.Plugin.MediaBarEnhanced/Jellyfin.Plugin.MediaBarEnhanced.csproj index aa0837e..f541690 100644 --- a/Jellyfin.Plugin.MediaBarEnhanced/Jellyfin.Plugin.MediaBarEnhanced.csproj +++ b/Jellyfin.Plugin.MediaBarEnhanced/Jellyfin.Plugin.MediaBarEnhanced.csproj @@ -12,7 +12,7 @@ Jellyfin Media Bar Enhanced Plugin CodeDevMLH - 1.5.0.17 + 1.5.0.18 https://github.com/CodeDevMLH/jellyfin-plugin-media-bar-enhanced diff --git a/Jellyfin.Plugin.MediaBarEnhanced/Web/mediaBarEnhanced.js b/Jellyfin.Plugin.MediaBarEnhanced/Web/mediaBarEnhanced.js index 8aefc8c..164fd39 100644 --- a/Jellyfin.Plugin.MediaBarEnhanced/Web/mediaBarEnhanced.js +++ b/Jellyfin.Plugin.MediaBarEnhanced/Web/mediaBarEnhanced.js @@ -2656,9 +2656,9 @@ const SlideshowManager = { } const activeElement = document.activeElement; - const isSlideshowFocused = container.contains(activeElement) || activeElement === container || activeElement === document.body; - - if ((e.key === "ArrowRight" || e.key === "ArrowLeft") && !isSlideshowFocused) { + const isSlideshowFocused = container.contains(activeElement) || activeElement === container; + + if (!isSlideshowFocused) { return; } diff --git a/manifest.json b/manifest.json index ed608db..8c3988d 100644 --- a/manifest.json +++ b/manifest.json @@ -9,7 +9,7 @@ "imageUrl": "https://git.mahom03-spacecloud.de/CodeDevMLH/jellyfin-plugin-media-bar-enhanced/raw/branch/main/logo.png", "versions": [ { - "version": "1.5.0.17", + "version": "1.5.0.18", "changelog": "- fix: keyboard controls in TV mode\n- Add sorting options for content\n- Update mediaBarEnhanced.js and mediaBarEnhanced.css with version 4.0.1 from original repo", "targetAbi": "10.11.0.0", "sourceUrl": "https://git.mahom03-spacecloud.de/CodeDevMLH/jellyfin-plugin-media-bar-enhanced/releases/download/v1.5.0.17/Jellyfin.Plugin.MediaBarEnhanced.zip",