Bump version to 1.5.0.4 and update changelog for mediaBarEnhanced.js and manifest.json; enhance keyboard navigation controls
All checks were successful
Auto Release Plugin / build-and-release (push) Successful in 53s

This commit is contained in:
CodeDevMLH
2026-02-08 02:31:49 +01:00
parent 9de268caa7
commit 45c780c018
3 changed files with 11 additions and 2 deletions

View File

@@ -12,7 +12,7 @@
<!-- <TreatWarningsAsErrors>false</TreatWarningsAsErrors> -->
<Title>Jellyfin Media Bar Enhanced Plugin</Title>
<Authors>CodeDevMLH</Authors>
<Version>1.5.0.3</Version>
<Version>1.5.0.4</Version>
<RepositoryUrl>https://github.com/CodeDevMLH/jellyfin-plugin-media-bar-enhanced</RepositoryUrl>
</PropertyGroup>

View File

@@ -2560,6 +2560,15 @@ const SlideshowManager = {
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();