Compare commits

...

4 Commits

Author SHA1 Message Date
CodeDevMLH
de62c794f9 Update manifest.json for release v1.7.0.11 [skip ci] 2026-03-06 02:19:18 +00:00
CodeDevMLH
fc2491a4ef Bump version to 1.7.0.11
All checks were successful
Auto Release Plugin / build-and-release (push) Successful in 52s
2026-03-06 03:18:26 +01:00
CodeDevMLH
03276d7722 Enhance YouTube player integration with fullscreen and picture-in-picture support 2026-03-06 03:18:13 +01:00
CodeDevMLH
8676160e7b Update manifest.json for release v1.7.0.10 [skip ci] 2026-03-06 02:02:52 +00:00
3 changed files with 11 additions and 9 deletions

View File

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

View File

@@ -745,10 +745,11 @@ const SlideUtils = {
const ytIframe = this.createElement('iframe', {
id: 'modal-yt-player',
src: `https://www.youtube-nocookie.com/embed/${videoId}?enablejsapi=1&origin=${encodeURIComponent(window.location.origin)}`,
allow: 'autoplay; encrypted-media',
allow: 'autoplay; encrypted-media; fullscreen; picture-in-picture',
style: 'width: 100%; height: 100%; border: none;',
referrerpolicy: 'strict-origin-when-cross-origin',
allowfullscreen: 'true'
});
ytIframe.setAttribute('referrerpolicy', 'strict-origin-when-cross-origin');
contentContainer.appendChild(ytIframe);
overlay.append(closeButton, contentContainer);
@@ -1750,8 +1751,9 @@ const SlideCreator = {
id: `youtube-player-${itemId}`,
src: `https://www.youtube-nocookie.com/embed/${videoId}?enablejsapi=1&origin=${encodeURIComponent(window.location.origin)}`,
style: "width: 100%; height: 100%; border: none;",
allow: "autoplay; encrypted-media",
referrerpolicy: "strict-origin-when-cross-origin"
allow: "autoplay; encrypted-media; fullscreen; picture-in-picture",
referrerpolicy: "strict-origin-when-cross-origin",
allowfullscreen: "true"
});
videoBackdrop.appendChild(ytPlayerIframe);

View File

@@ -9,12 +9,12 @@
"imageUrl": "https://git.mahom03-spacecloud.de/CodeDevMLH/jellyfin-plugin-media-bar-enhanced/raw/branch/main/logo.png",
"versions": [
{
"version": "1.7.0.10",
"version": "1.7.0.11",
"changelog": "- Add YouTube no-cookie host and referrer policy for iframe security to fix playback issues on iOS/MacOS",
"targetAbi": "10.11.0.0",
"sourceUrl": "https://git.mahom03-spacecloud.de/CodeDevMLH/jellyfin-plugin-media-bar-enhanced/releases/download/v1.7.0.9/Jellyfin.Plugin.MediaBarEnhanced.zip",
"checksum": "c483335bb07d9b76fb2512e811871c61",
"timestamp": "2026-03-06T01:24:40Z"
"sourceUrl": "https://git.mahom03-spacecloud.de/CodeDevMLH/jellyfin-plugin-media-bar-enhanced/releases/download/v1.7.0.11/Jellyfin.Plugin.MediaBarEnhanced.zip",
"checksum": "8c2aba88a7abe379657604b3114da089",
"timestamp": "2026-03-06T02:19:18Z"
},
{
"version": "1.6.6.4",