Compare commits
3 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
b2dbd6df45 | ||
|
|
60c72a01b1 | ||
|
|
9f7ef3c96b |
@@ -12,7 +12,7 @@
|
||||
<!-- <TreatWarningsAsErrors>false</TreatWarningsAsErrors> -->
|
||||
<Title>Jellyfin Media Bar Enhanced Plugin</Title>
|
||||
<Authors>CodeDevMLH</Authors>
|
||||
<Version>1.7.1.12</Version>
|
||||
<Version>1.7.1.13</Version>
|
||||
<RepositoryUrl>https://github.com/CodeDevMLH/jellyfin-plugin-media-bar-enhanced</RepositoryUrl>
|
||||
</PropertyGroup>
|
||||
|
||||
|
||||
@@ -501,7 +501,7 @@
|
||||
font-family: "Archivo Narrow", sans-serif;
|
||||
font-size: 18px;
|
||||
white-space: nowrap;
|
||||
background-color: rgba(255, 255, 255, 0.9);
|
||||
background-color: rgb(255, 255, 255);
|
||||
color: rgb(0, 0, 0);
|
||||
cursor: pointer;
|
||||
transition: all 0.3s ease;
|
||||
@@ -515,7 +515,7 @@
|
||||
|
||||
.detail-button {
|
||||
font-size: 18px;
|
||||
background-color: rgba(255, 255, 255, 0.9);
|
||||
background-color: rgb(255, 255, 255);
|
||||
color: rgb(0, 0, 0);
|
||||
border-radius: 50%;
|
||||
height: 50px;
|
||||
@@ -530,7 +530,7 @@
|
||||
|
||||
.favorite-button {
|
||||
font-size: 18px;
|
||||
background-color: rgba(255, 255, 255, 0.9);
|
||||
background-color: rgb(255, 255, 255);
|
||||
color: red;
|
||||
border-radius: 50%;
|
||||
height: 50px;
|
||||
|
||||
@@ -749,7 +749,7 @@ const SlideUtils = {
|
||||
if (isYoutube && videoId) {
|
||||
const ytIframe = this.createElement('iframe', {
|
||||
id: 'modal-yt-player',
|
||||
src: `https://www.youtube-nocookie.com/embed/${videoId}?enablejsapi=1&origin=${encodeURIComponent(window.location.origin)}`,
|
||||
src: `https://www.youtube-nocookie.com/embed/${videoId}?autoplay=1&controls=1&iv_load_policy=3&rel=0&playsinline=1`,
|
||||
allow: 'autoplay; encrypted-media',
|
||||
style: 'width: 100%; height: 100%; border: none;',
|
||||
referrerpolicy: 'strict-origin-when-cross-origin',
|
||||
@@ -759,20 +759,6 @@ const SlideUtils = {
|
||||
contentContainer.appendChild(ytIframe);
|
||||
overlay.append(closeButton, contentContainer);
|
||||
document.body.appendChild(overlay);
|
||||
|
||||
this.loadYouTubeIframeAPI().then(() => {
|
||||
new YT.Player(ytIframe, {
|
||||
playerVars: {
|
||||
autoplay: 1,
|
||||
controls: 1,
|
||||
iv_load_policy: 3,
|
||||
rel: 0,
|
||||
playsinline: 1,
|
||||
origin: window.location.origin,
|
||||
enablejsapi: 1
|
||||
}
|
||||
});
|
||||
});
|
||||
} else {
|
||||
const video = this.createElement('video', {
|
||||
src: url,
|
||||
@@ -780,6 +766,7 @@ const SlideUtils = {
|
||||
autoplay: true,
|
||||
className: 'video-modal-player'
|
||||
});
|
||||
video.setAttribute('playsinline', '');
|
||||
contentContainer.appendChild(video);
|
||||
overlay.append(closeButton, contentContainer);
|
||||
document.body.appendChild(overlay);
|
||||
@@ -1949,6 +1936,7 @@ const SlideCreator = {
|
||||
};
|
||||
|
||||
videoAttributes.muted = "";
|
||||
videoAttributes.playsinline = "";
|
||||
|
||||
videoBackdrop = SlideUtils.createElement("video", videoAttributes);
|
||||
videoBackdrop.volume = 0.4;
|
||||
|
||||
@@ -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.1.12",
|
||||
"version": "1.7.1.13",
|
||||
"changelog": "- feat: add option to disable pagination dots/counter\n- feat: add exclude seasonal content from random fetching option\n- Add hide arrows on mobile option \n- fix button issue on mobile when using ElegantFin Theme",
|
||||
"targetAbi": "10.11.0.0",
|
||||
"sourceUrl": "https://git.mahom03-spacecloud.de/CodeDevMLH/jellyfin-plugin-media-bar-enhanced/releases/download/v1.7.1.12/Jellyfin.Plugin.MediaBarEnhanced.zip",
|
||||
"checksum": "f00a5abf5a2bfd7d6ca3adf20d75b110",
|
||||
"timestamp": "2026-03-08T22:15:28Z"
|
||||
"sourceUrl": "https://git.mahom03-spacecloud.de/CodeDevMLH/jellyfin-plugin-media-bar-enhanced/releases/download/v1.7.1.13/Jellyfin.Plugin.MediaBarEnhanced.zip",
|
||||
"checksum": "3eda8e65484a1a75e4f2c0f3da89b182",
|
||||
"timestamp": "2026-03-08T22:50:48Z"
|
||||
},
|
||||
{
|
||||
"version": "1.7.0.14",
|
||||
|
||||
Reference in New Issue
Block a user