Compare commits
21 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
5274e61204 | ||
|
|
93919c08ef | ||
|
|
c80de82a76 | ||
|
|
c541e1e543 | ||
|
|
2c7dae4d6d | ||
|
|
3869a089a1 | ||
|
|
014c908a1e | ||
|
|
f6cecf6a9e | ||
|
|
81e4643652 | ||
|
|
1b65843b20 | ||
|
|
a70690c0de | ||
|
|
1e21286a66 | ||
|
|
90a64d49ed | ||
|
|
009798ea06 | ||
|
|
53f0f3c401 | ||
|
|
81dad8c6c6 | ||
|
|
66fe4dc3cb | ||
|
|
7be968d1c6 | ||
|
|
2d492f3fed | ||
|
|
2160e2963c | ||
|
|
dc64bbe345 |
@@ -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';
|
||||||
|
|||||||
@@ -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.7.2.16</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>
|
||||||
|
|
||||||
|
|||||||
@@ -9,12 +9,12 @@
|
|||||||
"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.7.2.16",
|
||||||
"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.7.2.16/Jellyfin.Plugin.MediaBarEnhanced.zip",
|
||||||
"checksum": "7e70de12804aba803fdbe060c9ca5ae0",
|
"checksum": "7cee3461f232a361fc9167a0a43fc023",
|
||||||
"timestamp": "2026-03-10T23:38:06Z"
|
"timestamp": "2026-03-11T00:46:02Z"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"version": "1.7.0.14",
|
"version": "1.7.0.14",
|
||||||
|
|||||||
Reference in New Issue
Block a user