Compare commits

..

26 Commits

Author SHA1 Message Date
CodeDevMLH
a296caf70d Update manifest.json for release v1.8.1.0 [skip ci] 2026-03-23 16:28:17 +00:00
CodeDevMLH
86e9968243 bump version 1.8.1.0
All checks were successful
Auto Release Plugin / build-and-release (push) Successful in 55s
2026-03-23 17:27:08 +01:00
CodeDevMLH
e9fe356cee Enhance slideshow responsiveness by adjusting dot display for small screens 2026-03-23 17:25:48 +01:00
CodeDevMLH
e25a99439a Update manifest.json for release v1.8.0.0 [skip ci] 2026-03-11 01:38:44 +00:00
CodeDevMLH
ba2ad8f2cc Bump version to 1.8.0.0 in project files and manifest
All checks were successful
Auto Release Plugin / build-and-release (push) Successful in 45s
2026-03-11 02:37:57 +01:00
CodeDevMLH
5274e61204 Update manifest.json for release v1.7.2.16 [skip ci] 2026-03-11 00:46:03 +00:00
CodeDevMLH
93919c08ef Bump version to 1.7.2.16 in project files and manifest
All checks were successful
Auto Release Plugin / build-and-release (push) Successful in 46s
2026-03-11 01:45:14 +01:00
CodeDevMLH
c80de82a76 Refactor clear image button styling in configPage.html for improved usability 2026-03-11 01:44:59 +01:00
CodeDevMLH
c541e1e543 Update manifest.json for release v1.7.2.15 [skip ci] 2026-03-11 00:31:08 +00:00
CodeDevMLH
2c7dae4d6d Bump version to 1.7.2.15 in project files and manifest
All checks were successful
Auto Release Plugin / build-and-release (push) Successful in 47s
2026-03-11 01:30:19 +01:00
CodeDevMLH
3869a089a1 Improve styling for clear image button in configPage.html 2026-03-11 01:30:06 +01:00
CodeDevMLH
014c908a1e Update manifest.json for release v1.7.2.14 [skip ci] 2026-03-11 00:20:42 +00:00
CodeDevMLH
f6cecf6a9e Bump version to 1.7.2.14 in project files and manifest
All checks were successful
Auto Release Plugin / build-and-release (push) Successful in 45s
2026-03-11 01:19:56 +01:00
CodeDevMLH
81e4643652 Improve styling for clear image buttons in configPage.html 2026-03-11 01:19:43 +01:00
CodeDevMLH
1b65843b20 Update manifest.json for release v1.7.2.13 [skip ci] 2026-03-11 00:13:26 +00:00
CodeDevMLH
a70690c0de Bump version to 1.7.2.13 in project files and manifest
All checks were successful
Auto Release Plugin / build-and-release (push) Successful in 44s
2026-03-11 01:12:40 +01:00
CodeDevMLH
1e21286a66 Refactor seasonal image clear button styling in configPage.html 2026-03-11 01:12:28 +01:00
CodeDevMLH
90a64d49ed Update manifest.json for release v1.7.2.12 [skip ci] 2026-03-11 00:05:56 +00:00
CodeDevMLH
009798ea06 Bump version to 1.7.2.12 in project files and manifest
All checks were successful
Auto Release Plugin / build-and-release (push) Successful in 51s
2026-03-11 01:05:03 +01:00
CodeDevMLH
53f0f3c401 Refactor seasonal image clear button visibility and styling in configPage.html 2026-03-11 01:04:50 +01:00
CodeDevMLH
81dad8c6c6 Update manifest.json for release v1.7.2.11 [skip ci] 2026-03-10 23:58:38 +00:00
CodeDevMLH
66fe4dc3cb Bump version to 1.7.2.11 in project files and manifest
All checks were successful
Auto Release Plugin / build-and-release (push) Successful in 52s
2026-03-11 00:57:45 +01:00
CodeDevMLH
7be968d1c6 test 2026-03-11 00:57:31 +01:00
CodeDevMLH
2d492f3fed Update manifest.json for release v1.7.2.10 [skip ci] 2026-03-10 23:50:23 +00:00
CodeDevMLH
2160e2963c Bump version to 1.7.2.10 in project files and manifest
All checks were successful
Auto Release Plugin / build-and-release (push) Successful in 44s
2026-03-11 00:49:37 +01:00
CodeDevMLH
dc64bbe345 Improve styling and positioning of the clear image button in configPage.html 2026-03-11 00:49:25 +01:00
5 changed files with 36 additions and 11 deletions

View File

@@ -259,7 +259,7 @@
<input type="file" id="overlayImageInput" accept="image/png, image/jpeg, image/gif, image/webp" style="display: none;"> <input type="file" id="overlayImageInput" accept="image/png, image/jpeg, image/gif, image/webp" style="display: none;">
<img id="overlayImagePreview" style="display: none; max-width: 100%; max-height: 150px; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); border-radius: 4px; z-index: 2;" /> <img id="overlayImagePreview" style="display: none; max-width: 100%; max-height: 150px; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); border-radius: 4px; z-index: 2;" />
<!-- A semi-transparent overlay to clear the image --> <!-- A semi-transparent overlay to clear the image -->
<button type="button" id="clearOverlayImageBtn" is="paper-icon-button-light" style="display: none; position: absolute; top: 10px; right: 10px; z-index: 3; color: #a94442;" title="Clear Image"> <button type="button" id="clearOverlayImageBtn" class="clear-btn" is="paper-icon-button-light" style="display: none; position: absolute; top: 10px; right: 10px; z-index: 3; color: #a94442;" title="Clear Image">
<i class="material-icons">delete</i> <i class="material-icons">delete</i>
</button> </button>
</div> </div>
@@ -756,7 +756,7 @@
if (urlInput.value && urlInput.value.trim() !== '') { if (urlInput.value && urlInput.value.trim() !== '') {
previewImg.src = urlInput.value; previewImg.src = urlInput.value;
previewImg.style.display = 'block'; previewImg.style.display = 'block';
clearBtn.style.display = 'block'; clearBtn.style.display = 'inline-flex';
if(icon) icon.style.display = 'none'; if(icon) icon.style.display = 'none';
if(text) { if(text) {
text.textContent = 'Drag and drop a new image here, or click to select'; text.textContent = 'Drag and drop a new image here, or click to select';
@@ -1026,7 +1026,7 @@
' <span style="font-size: 0.85em; color: rgba(255,255,255,0.7);">Upload seasonal image</span>' + ' <span style="font-size: 0.85em; color: rgba(255,255,255,0.7);">Upload seasonal image</span>' +
' <input type="file" class="seasonal-file-input" accept="image/png, image/jpeg, image/gif, image/webp" style="display: none;">' + ' <input type="file" class="seasonal-file-input" accept="image/png, image/jpeg, image/gif, image/webp" style="display: none;">' +
' <img class="seasonal-preview-img" style="display: none; max-width: 100%; max-height: 100%; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); border-radius: 4px; z-index: 2; object-fit: contain;" />' + ' <img class="seasonal-preview-img" style="display: none; max-width: 100%; max-height: 100%; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); border-radius: 4px; z-index: 2; object-fit: contain;" />' +
' <button type="button" is="paper-icon-button-light" class="seasonal-clear-btn" title="Clear Image" style="display: none; position: absolute; top: 0px; right: 0px; z-index: 3; color: #a94442;"><i class="material-icons">delete</i></button>' + ' <button type="button" is="paper-icon-button-light" class="seasonal-clear-btn remove-img" title="Clear Image" style="background: transparent; border: none; padding: 0; cursor: pointer; display: none; position: absolute; top: 10px; right: 10px; z-index: 3; color: #a94442;"><i class="material-icons">delete</i></button>' +
' </div>' + ' </div>' +
' </div>' + ' </div>' +
'</div>'; '</div>';
@@ -1098,7 +1098,7 @@
if (val) { if (val) {
previewImg.src = val; previewImg.src = val;
previewImg.style.display = 'block'; previewImg.style.display = 'block';
clearBtn.style.display = 'block'; clearBtn.style.display = 'inline-flex';
if(icon) icon.style.display = 'none'; if(icon) icon.style.display = 'none';
if(text) { if(text) {
text.textContent = 'Drag and drop a new image here, or click to select'; text.textContent = 'Drag and drop a new image here, or click to select';

View File

@@ -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.2.9</Version> <Version>1.8.1.0</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>

View File

@@ -749,6 +749,14 @@
left: 50%; left: 50%;
transform: translateX(-50%) scale(0.8); transform: translateX(-50%) scale(0.8);
background-color: #ffffff00; background-color: #ffffff00;
width: max-content;
max-width: 90vw;
flex-wrap: nowrap;
overflow: hidden;
}
.dot {
flex-shrink: 0;
} }
.dot.active { .dot.active {

View File

@@ -1,4 +1,4 @@
/* /*
* Jellyfin Slideshow by M0RPH3US v4.0.1 * Jellyfin Slideshow by M0RPH3US v4.0.1
* Modified by CodeDevMLH * Modified by CodeDevMLH
* *
@@ -2363,8 +2363,17 @@ const SlideshowManager = {
const totalItems = STATE.slideshow.totalItems || 0; const totalItems = STATE.slideshow.totalItems || 0;
// dynamically lower the max dots threshold on small screens
let effectiveMaxDots = CONFIG.maxPaginationDots;
if (window.matchMedia("(max-width: 767px) and (orientation: portrait)").matches) {
const availableWidth = window.innerWidth * 0.9;
const dotWidth = 18; // approximate width per dot
const fittingDots = Math.floor(availableWidth / dotWidth) - 1;
effectiveMaxDots = Math.min(effectiveMaxDots, fittingDots);
}
// Switch to counter style if too many items // Switch to counter style if too many items
if (totalItems > CONFIG.maxPaginationDots) { if (totalItems > effectiveMaxDots) {
const counter = document.createElement("span"); const counter = document.createElement("span");
counter.className = "slide-counter"; counter.className = "slide-counter";
counter.id = "slide-counter"; counter.id = "slide-counter";

View File

@@ -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.2.9", "version": "1.8.1.0",
"changelog": "fix pagination dot issue on mobile when showing more than 10 dots (should now dynamically adjust the max dots threshold based on screen size)",
"targetAbi": "10.11.0.0",
"sourceUrl": "https://git.mahom03-spacecloud.de/CodeDevMLH/jellyfin-plugin-media-bar-enhanced/releases/download/v1.8.1.0/Jellyfin.Plugin.MediaBarEnhanced.zip",
"checksum": "11bb618ca99a55403216effe3b1d2416",
"timestamp": "2026-03-23T16:28:16Z"
},
{
"version": "1.8.0.0",
"changelog": "feat: add custom text/image overlay option\n- 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", "changelog": "feat: add custom text/image overlay option\n- 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", "targetAbi": "10.11.0.0",
"sourceUrl": "https://git.mahom03-spacecloud.de/CodeDevMLH/jellyfin-plugin-media-bar-enhanced/releases/download/v1.7.2.9/Jellyfin.Plugin.MediaBarEnhanced.zip", "sourceUrl": "https://git.mahom03-spacecloud.de/CodeDevMLH/jellyfin-plugin-media-bar-enhanced/releases/download/v1.8.0.0/Jellyfin.Plugin.MediaBarEnhanced.zip",
"checksum": "7e70de12804aba803fdbe060c9ca5ae0", "checksum": "0aac723796d41fc15987c94ac0476584",
"timestamp": "2026-03-10T23:38:06Z" "timestamp": "2026-03-11T01:38:43Z"
}, },
{ {
"version": "1.7.0.14", "version": "1.7.0.14",