Compare commits
4 Commits
c562560bc0
...
v1.7.0.11
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
de62c794f9 | ||
|
|
fc2491a4ef | ||
|
|
03276d7722 | ||
|
|
8676160e7b |
@@ -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>
|
||||
|
||||
|
||||
@@ -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);
|
||||
|
||||
@@ -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",
|
||||
|
||||
Reference in New Issue
Block a user