Compare commits
3 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
ebb2af9d24 | ||
|
|
743af20b8e | ||
|
|
9844b186d7 |
@@ -12,7 +12,7 @@
|
|||||||
<!-- <TreatWarningsAsErrors>false</TreatWarningsAsErrors> -->
|
<!-- <TreatWarningsAsErrors>false</TreatWarningsAsErrors> -->
|
||||||
<Title>Jellyfin Media Bar Enhanced Plugin</Title>
|
<Title>Jellyfin Media Bar Enhanced Plugin</Title>
|
||||||
<Authors>CodeDevMLH</Authors>
|
<Authors>CodeDevMLH</Authors>
|
||||||
<Version>1.6.1.5</Version>
|
<Version>1.6.1.6</Version>
|
||||||
<RepositoryUrl>https://github.com/CodeDevMLH/jellyfin-plugin-media-bar-enhanced</RepositoryUrl>
|
<RepositoryUrl>https://github.com/CodeDevMLH/jellyfin-plugin-media-bar-enhanced</RepositoryUrl>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
|
||||||
|
|||||||
@@ -611,7 +611,8 @@ const SlideUtils = {
|
|||||||
if (!container) {
|
if (!container) {
|
||||||
container = this.createElement("div", {
|
container = this.createElement("div", {
|
||||||
id: "slides-container",
|
id: "slides-container",
|
||||||
className: "noautofocus"
|
className: "noautofocus",
|
||||||
|
tabIndex: "-1"
|
||||||
});
|
});
|
||||||
document.body.appendChild(container);
|
document.body.appendChild(container);
|
||||||
}
|
}
|
||||||
@@ -2516,10 +2517,13 @@ const SlideshowManager = {
|
|||||||
document.documentElement.classList.contains('layout-tv') ||
|
document.documentElement.classList.contains('layout-tv') ||
|
||||||
document.body.classList.contains('layout-tv');
|
document.body.classList.contains('layout-tv');
|
||||||
if (isTvMode) {
|
if (isTvMode) {
|
||||||
const container = document.getElementById("slides-container");
|
// Use setTimeout to execute AFTER Jellyfin's focus manager processes the iframe removal
|
||||||
if (container) {
|
setTimeout(() => {
|
||||||
container.focus({ preventScroll: true });
|
const container = document.getElementById("slides-container");
|
||||||
}
|
if (container && container.style.display !== 'none') {
|
||||||
|
container.focus({ preventScroll: true });
|
||||||
|
}
|
||||||
|
}, 0);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -9,12 +9,12 @@
|
|||||||
"imageUrl": "https://git.mahom03-spacecloud.de/CodeDevMLH/jellyfin-plugin-media-bar-enhanced/raw/branch/main/logo.png",
|
"imageUrl": "https://git.mahom03-spacecloud.de/CodeDevMLH/jellyfin-plugin-media-bar-enhanced/raw/branch/main/logo.png",
|
||||||
"versions": [
|
"versions": [
|
||||||
{
|
{
|
||||||
"version": "1.6.1.5",
|
"version": "1.6.1.6",
|
||||||
"changelog": "- fix tv mode issue\n- refactor video playback management",
|
"changelog": "- fix tv mode issue\n- refactor video playback management",
|
||||||
"targetAbi": "10.11.0.0",
|
"targetAbi": "10.11.0.0",
|
||||||
"sourceUrl": "https://git.mahom03-spacecloud.de/CodeDevMLH/jellyfin-plugin-media-bar-enhanced/releases/download/v1.6.1.5/Jellyfin.Plugin.MediaBarEnhanced.zip",
|
"sourceUrl": "https://git.mahom03-spacecloud.de/CodeDevMLH/jellyfin-plugin-media-bar-enhanced/releases/download/v1.6.1.6/Jellyfin.Plugin.MediaBarEnhanced.zip",
|
||||||
"checksum": "f5d4a593c0f498fab61bb17b588d1b3f",
|
"checksum": "7cebae52060938493b5dd6bec894f3d1",
|
||||||
"timestamp": "2026-02-12T01:51:52Z"
|
"timestamp": "2026-02-12T02:03:09Z"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"version": "1.6.0.2",
|
"version": "1.6.0.2",
|
||||||
|
|||||||
Reference in New Issue
Block a user