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
All checks were successful
Auto Release Plugin / build-and-release (push) Successful in 53s
This commit is contained in:
@@ -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>
|
||||
|
||||
|
||||
@@ -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();
|
||||
|
||||
Reference in New Issue
Block a user