Compare commits
34 Commits
v1.7.0.5
...
da718a0e57
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
da718a0e57 | ||
|
|
95a8907496 | ||
|
|
0498756529 | ||
|
|
f1d92080b2 | ||
|
|
586b57d23e | ||
|
|
47b05a82ba | ||
|
|
cb45e0cb43 | ||
|
|
19246c3a19 | ||
|
|
99b4b09306 | ||
|
|
563a1e5484 | ||
|
|
788708370d | ||
|
|
4bb0de11da | ||
|
|
d2abfc6b46 | ||
|
|
8ba14d4df0 | ||
|
|
538138fcf3 | ||
|
|
08efb11d95 | ||
|
|
de62c794f9 | ||
|
|
fc2491a4ef | ||
|
|
03276d7722 | ||
|
|
8676160e7b | ||
|
|
c562560bc0 | ||
|
|
98474d4ff6 | ||
|
|
14c0eb43ed | ||
|
|
c4cbeda2b8 | ||
|
|
53ad568be4 | ||
|
|
fba64bd0f6 | ||
|
|
3da16c4c5c | ||
|
|
c7cd7be3ee | ||
|
|
6d90523eef | ||
|
|
2a3e8057a1 | ||
|
|
42026b0ee8 | ||
|
|
64dbc3cfd3 | ||
|
|
c998266dd7 | ||
|
|
9b941e5a77 |
@@ -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.7.0.5</Version>
|
<Version>1.7.1.1</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>
|
||||||
|
|
||||||
|
|||||||
@@ -766,9 +766,41 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
.button-container {
|
.button-container {
|
||||||
top: calc(50% + 25vh);
|
top: calc(50% + 24vh) !important;
|
||||||
left: 50%;
|
left: 50% !important;
|
||||||
transform: translateX(-50%) scale(0.95);
|
transform: translateX(-50%) !important;
|
||||||
|
width: 100vw !important;
|
||||||
|
flex-wrap: nowrap !important;
|
||||||
|
justify-content: center !important;
|
||||||
|
gap: 12px !important;
|
||||||
|
padding: 0 10px !important;
|
||||||
|
box-sizing: border-box !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
.button-container button {
|
||||||
|
min-width: unset !important;
|
||||||
|
margin: 0 !important;
|
||||||
|
flex-shrink: 1 !important;
|
||||||
|
height: 45px !important;
|
||||||
|
max-width: fit-content !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
.button-container .play-button,
|
||||||
|
.button-container .trailer-button {
|
||||||
|
padding: 8px 14px !important;
|
||||||
|
border-radius: 8px !important;
|
||||||
|
font-size: 16px !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
.button-container .detail-button,
|
||||||
|
.button-container .favorite-button {
|
||||||
|
width: 45px !important;
|
||||||
|
padding: 0 !important;
|
||||||
|
display: flex !important;
|
||||||
|
align-items: center !important;
|
||||||
|
justify-content: center !important;
|
||||||
|
flex-shrink: 0 !important;
|
||||||
|
border-radius: 50% !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
.logo {
|
.logo {
|
||||||
@@ -798,36 +830,23 @@
|
|||||||
|
|
||||||
@media (max-width: 400px) {
|
@media (max-width: 400px) {
|
||||||
.button-container {
|
.button-container {
|
||||||
gap: 10px;
|
gap: 6px !important;
|
||||||
|
top: calc(50% + 26.5vh) !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
.play-button,
|
.button-container .play-button,
|
||||||
.trailer-button {
|
.button-container .trailer-button {
|
||||||
padding: 8px 14px;
|
padding: 6px 10px !important;
|
||||||
|
font-size: 14px !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
.misc-info {
|
.button-container button {
|
||||||
flex-wrap: wrap;
|
height: 40px !important;
|
||||||
justify-content: center;
|
|
||||||
gap: 0px 10px;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.runTime {
|
.button-container .detail-button,
|
||||||
width: 100%;
|
.button-container .favorite-button {
|
||||||
justify-content: center;
|
width: 40px !important;
|
||||||
margin-top: 0.5vh;
|
|
||||||
}
|
|
||||||
|
|
||||||
.misc-info .separator-icon:last-of-type {
|
|
||||||
display: none;
|
|
||||||
}
|
|
||||||
|
|
||||||
.genre {
|
|
||||||
top: calc(50% + 16vh);
|
|
||||||
}
|
|
||||||
|
|
||||||
.button-container {
|
|
||||||
top: calc(50% + 27vh);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -1000,3 +1019,19 @@
|
|||||||
.layout-tv .backdrop-container{
|
.layout-tv .backdrop-container{
|
||||||
top: -5%;
|
top: -5%;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@media screen and (min-width: 960px) and (-webkit-device-pixel-ratio: 1) {
|
||||||
|
.layout-tv .backdrop.animate {
|
||||||
|
animation: none !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
.layout-tv .logo.animate {
|
||||||
|
animation: none !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
.layout-tv .slide-counter,
|
||||||
|
.layout-tv .dots-container {
|
||||||
|
backdrop-filter: none;
|
||||||
|
-webkit-backdrop-filter: none;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|||||||
File diff suppressed because it is too large
Load Diff
@@ -9,12 +9,20 @@
|
|||||||
"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.7.0.5",
|
"version": "1.7.1.1",
|
||||||
"changelog": "- Add YouTube no-cookie host and referrer policy for iframe security to fix playback issues on iOS/MacOS",
|
"changelog": "- fix button issue on mobile when using ElegantFin Theme",
|
||||||
"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.7.0.5/Jellyfin.Plugin.MediaBarEnhanced.zip",
|
"sourceUrl": "https://git.mahom03-spacecloud.de/CodeDevMLH/jellyfin-plugin-media-bar-enhanced/releases/download/v1.7.1.0/Jellyfin.Plugin.MediaBarEnhanced.zip",
|
||||||
"checksum": "2d7e4d747c610e853b375726162febee",
|
"checksum": "5fadac5032c236f05219dacc5648a79d",
|
||||||
"timestamp": "2026-03-05T23:59:05Z"
|
"timestamp": "2026-03-08T14:32:39Z"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"version": "1.7.0.14",
|
||||||
|
"changelog": "- Switched to YouTube no-cookie host and referrer policy for iframe security\n- fix playback issues on iOS/MacOS \n- Disable animations and backdrop filters for TV layout\n- removed list.txt functionality to clean up, use the web ui instead\n- Enhance logging with contextual messages, in order to be able to clearly assign logs to this plugin",
|
||||||
|
"targetAbi": "10.11.0.0",
|
||||||
|
"sourceUrl": "https://git.mahom03-spacecloud.de/CodeDevMLH/jellyfin-plugin-media-bar-enhanced/releases/download/v1.7.0.14/Jellyfin.Plugin.MediaBarEnhanced.zip",
|
||||||
|
"checksum": "07875c74aab766657be3b8033be6d53f",
|
||||||
|
"timestamp": "2026-03-06T03:13:48Z"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"version": "1.6.6.4",
|
"version": "1.6.6.4",
|
||||||
|
|||||||
Reference in New Issue
Block a user