From 463e9ef424bb3550d1a55f400480f4287b920648 Mon Sep 17 00:00:00 2001 From: CodeDevMLH <145071728+CodeDevMLH@users.noreply.github.com> Date: Sun, 8 Feb 2026 03:19:12 +0100 Subject: [PATCH] Bump version to 1.5.0.5; update keyboard controls and changelog --- .../Jellyfin.Plugin.MediaBarEnhanced.csproj | 2 +- .../Web/mediaBarEnhanced.js | 16 ++++------------ manifest.json | 2 +- 3 files changed, 6 insertions(+), 14 deletions(-) diff --git a/Jellyfin.Plugin.MediaBarEnhanced/Jellyfin.Plugin.MediaBarEnhanced.csproj b/Jellyfin.Plugin.MediaBarEnhanced/Jellyfin.Plugin.MediaBarEnhanced.csproj index 88b522b..498ea88 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.4 + 1.5.0.5 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 94ac5a1..423d1c0 100644 --- a/Jellyfin.Plugin.MediaBarEnhanced/Web/mediaBarEnhanced.js +++ b/Jellyfin.Plugin.MediaBarEnhanced/Web/mediaBarEnhanced.js @@ -2550,26 +2550,18 @@ const SlideshowManager = { const focusElement = document.activeElement; switch (e.key) { - case "ArrowRight": + case "d": + case "D": SlideshowManager.nextSlide(); e.preventDefault(); break; - case "ArrowLeft": + case "a": + case "A": SlideshowManager.prevSlide(); e.preventDefault(); break; - case "ArrowUp": - case "ArrowDown": - setTimeout(() => { - const active = document.activeElement; - if (active && active !== document.body && active.id !== "slides-container") { - active.scrollIntoView({behavior: 'smooth', block: 'center'}); - } - }, 100); - break; - case " ": // Space bar this.togglePause(); e.preventDefault(); diff --git a/manifest.json b/manifest.json index 92cdaa5..14c7fff 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.4", + "version": "1.5.0.5", "changelog": "- fix: keyboard controls in TV mode \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.4/Jellyfin.Plugin.MediaBarEnhanced.zip",