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

This commit is contained in:
CodeDevMLH
2026-02-08 01:09:38 +01:00
parent 18474d4537
commit 1f140fd3c1
3 changed files with 15 additions and 3 deletions

View File

@@ -2581,8 +2581,20 @@ const SlideshowManager = {
break;
case "Enter":
if (focusElement) {
if (focusElement && focusElement.tagName !== "BODY" && focusElement.id !== "slides-container") {
focusElement.click();
} else {
// If no specific element is focused (Remote/TV mode default), open details for current item
const currentItemId = STATE.slideshow.itemIds[STATE.slideshow.currentSlideIndex];
if (currentItemId) {
if (window.Emby && window.Emby.Page) {
Emby.Page.show(
`/details?id=${currentItemId}&serverId=${STATE.jellyfinData.serverId}`
);
} else {
window.location.href = `#/details?id=${currentItemId}&serverId=${STATE.jellyfinData.serverId}`;
}
}
}
e.preventDefault();
break;