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