Compare commits
26 Commits
59fe6f7083
...
v1.7.2.1
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
0a8ba042db | ||
|
|
f9b8722259 | ||
|
|
66f6f7b434 | ||
|
|
22c873d686 | ||
|
|
c3a73cc28b | ||
|
|
fc3a5f1e66 | ||
|
|
cd490cf0f3 | ||
|
|
bb6310381a | ||
|
|
518fd5640e | ||
|
|
a57f3db009 | ||
|
|
8ff4f081f3 | ||
|
|
4a07c22091 | ||
|
|
4d1d442746 | ||
|
|
1df2b341e5 | ||
|
|
b2dbd6df45 | ||
|
|
60c72a01b1 | ||
|
|
9f7ef3c96b | ||
|
|
7ffcfa68c1 | ||
|
|
aaf21d3c33 | ||
|
|
9758ecd417 | ||
|
|
a4547d80b1 | ||
|
|
671e38ff32 | ||
|
|
0e9d0f9d09 | ||
|
|
5f296f3c88 | ||
|
|
a14b3ca8b5 | ||
|
|
4d12e34d01 |
167
Jellyfin.Plugin.MediaBarEnhanced/Api/OverlayImageController.cs
Normal file
167
Jellyfin.Plugin.MediaBarEnhanced/Api/OverlayImageController.cs
Normal file
@@ -0,0 +1,167 @@
|
|||||||
|
using System;
|
||||||
|
using System.IO;
|
||||||
|
using System.Threading.Tasks;
|
||||||
|
using Microsoft.AspNetCore.Http;
|
||||||
|
using Microsoft.AspNetCore.Mvc;
|
||||||
|
using MediaBrowser.Common.Configuration;
|
||||||
|
|
||||||
|
namespace Jellyfin.Plugin.MediaBarEnhanced.Api
|
||||||
|
{
|
||||||
|
/// <summary>
|
||||||
|
/// Controller for handling custom overlay image uploads and retrieval.
|
||||||
|
/// </summary>
|
||||||
|
[ApiController]
|
||||||
|
[Route("MediaBarEnhanced")]
|
||||||
|
public class OverlayImageController : ControllerBase
|
||||||
|
{
|
||||||
|
private readonly IApplicationPaths _applicationPaths;
|
||||||
|
private readonly string _imageDirectory;
|
||||||
|
|
||||||
|
public OverlayImageController(IApplicationPaths applicationPaths)
|
||||||
|
{
|
||||||
|
_applicationPaths = applicationPaths;
|
||||||
|
|
||||||
|
// We use the plugin's data folder to store the image
|
||||||
|
_imageDirectory = MediaBarEnhancedPlugin.Instance?.DataFolderPath ?? Path.Combine(applicationPaths.DataPath, "plugins", "MediaBarEnhanced");
|
||||||
|
|
||||||
|
// We no longer define the exact path here, just the directory
|
||||||
|
// The filename is determined per request
|
||||||
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Uploads a new custom overlay image.
|
||||||
|
/// </summary>
|
||||||
|
[HttpPost("OverlayImage")]
|
||||||
|
[Consumes("multipart/form-data")]
|
||||||
|
public async Task<IActionResult> UploadImage([FromForm] IFormFile file, [FromQuery] string? filename = null)
|
||||||
|
{
|
||||||
|
if (file == null || file.Length == 0)
|
||||||
|
{
|
||||||
|
return BadRequest("No file uploaded.");
|
||||||
|
}
|
||||||
|
|
||||||
|
string targetFileName = string.IsNullOrWhiteSpace(filename)
|
||||||
|
? "custom_overlay_image.dat"
|
||||||
|
: $"custom_overlay_image_{filename}.dat";
|
||||||
|
string targetPath = Path.Combine(_imageDirectory, targetFileName);
|
||||||
|
|
||||||
|
try
|
||||||
|
{
|
||||||
|
if (!Directory.Exists(_imageDirectory))
|
||||||
|
{
|
||||||
|
Directory.CreateDirectory(_imageDirectory);
|
||||||
|
}
|
||||||
|
|
||||||
|
// Delete is not strictly necessary and can cause locking issues if someone is currently reading it.
|
||||||
|
// FileMode.Create will truncate the file if it exists, effectively overwriting it.
|
||||||
|
// We use FileShare.None to ensure we have exclusive write access, but handle potential IOExceptions gracefully.
|
||||||
|
using (var stream = new FileStream(targetPath, FileMode.Create, FileAccess.Write, FileShare.None))
|
||||||
|
{
|
||||||
|
await file.CopyToAsync(stream).ConfigureAwait(false);
|
||||||
|
}
|
||||||
|
|
||||||
|
// Return the GET URL that the frontend can use
|
||||||
|
var qs = string.IsNullOrWhiteSpace(filename) ? "" : $"?filename={Uri.EscapeDataString(filename)}&";
|
||||||
|
var getUrl = $"/MediaBarEnhanced/OverlayImage{qs}{(qs == "" ? "?" : "")}t={DateTimeOffset.UtcNow.ToUnixTimeMilliseconds()}";
|
||||||
|
return Ok(new { url = getUrl });
|
||||||
|
}
|
||||||
|
catch (Exception ex)
|
||||||
|
{
|
||||||
|
return StatusCode(500, $"Internal server error: {ex.Message}");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Retrieves the custom overlay image.
|
||||||
|
/// </summary>
|
||||||
|
[HttpGet("OverlayImage")]
|
||||||
|
public IActionResult GetImage([FromQuery] string? filename = null)
|
||||||
|
{
|
||||||
|
string targetFileName = string.IsNullOrWhiteSpace(filename)
|
||||||
|
? "custom_overlay_image.dat"
|
||||||
|
: $"custom_overlay_image_{filename}.dat";
|
||||||
|
string targetPath = Path.Combine(_imageDirectory, targetFileName);
|
||||||
|
|
||||||
|
if (!System.IO.File.Exists(targetPath))
|
||||||
|
{
|
||||||
|
return NotFound();
|
||||||
|
}
|
||||||
|
|
||||||
|
// Read the file and return as a generic octet stream.
|
||||||
|
// We use FileShare.ReadWrite so that if someone is currently overwriting the file (uploading), we don't block them,
|
||||||
|
// and we also don't get blocked by other readers.
|
||||||
|
var stream = new FileStream(targetPath, FileMode.Open, FileAccess.Read, FileShare.ReadWrite);
|
||||||
|
|
||||||
|
// "image/*" works reliably as browsers will sniff the exact image mime type (jpeg, png, webp).
|
||||||
|
return File(stream, "image/*");
|
||||||
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Deletes a custom overlay image.
|
||||||
|
/// </summary>
|
||||||
|
[HttpDelete("OverlayImage")]
|
||||||
|
public IActionResult DeleteImage([FromQuery] string? filename = null)
|
||||||
|
{
|
||||||
|
string targetFileName = string.IsNullOrWhiteSpace(filename)
|
||||||
|
? "custom_overlay_image.dat"
|
||||||
|
: $"custom_overlay_image_{filename}.dat";
|
||||||
|
string targetPath = Path.Combine(_imageDirectory, targetFileName);
|
||||||
|
|
||||||
|
if (System.IO.File.Exists(targetPath))
|
||||||
|
{
|
||||||
|
try
|
||||||
|
{
|
||||||
|
System.IO.File.Delete(targetPath);
|
||||||
|
return Ok();
|
||||||
|
}
|
||||||
|
catch (Exception ex)
|
||||||
|
{
|
||||||
|
return StatusCode(500, $"Error deleting file: {ex.Message}");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return NotFound();
|
||||||
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Renames a custom overlay image (used when a seasonal section is renamed).
|
||||||
|
/// </summary>
|
||||||
|
[HttpPut("OverlayImage/Rename")]
|
||||||
|
public IActionResult RenameImage([FromQuery] string oldName, [FromQuery] string newName)
|
||||||
|
{
|
||||||
|
if (string.IsNullOrWhiteSpace(oldName) || string.IsNullOrWhiteSpace(newName))
|
||||||
|
{
|
||||||
|
return BadRequest("Both oldName and newName must be provided.");
|
||||||
|
}
|
||||||
|
|
||||||
|
string oldPath = Path.Combine(_imageDirectory, $"custom_overlay_image_{oldName}.dat");
|
||||||
|
string newPath = Path.Combine(_imageDirectory, $"custom_overlay_image_{newName}.dat");
|
||||||
|
|
||||||
|
if (!System.IO.File.Exists(oldPath))
|
||||||
|
{
|
||||||
|
// If it doesn't exist, there is nothing to rename, but we still consider it a success
|
||||||
|
// since the end state (file with oldName is gone, file with newName doesn't exist yet) is acceptable.
|
||||||
|
return Ok();
|
||||||
|
}
|
||||||
|
|
||||||
|
try
|
||||||
|
{
|
||||||
|
// If a file with the new name already exists, delete it first to avoid conflicts
|
||||||
|
if (System.IO.File.Exists(newPath))
|
||||||
|
{
|
||||||
|
System.IO.File.Delete(newPath);
|
||||||
|
}
|
||||||
|
|
||||||
|
System.IO.File.Move(oldPath, newPath);
|
||||||
|
|
||||||
|
var qs = $"?filename={Uri.EscapeDataString(newName)}&";
|
||||||
|
var getUrl = $"/MediaBarEnhanced/OverlayImage{qs}t={DateTimeOffset.UtcNow.ToUnixTimeMilliseconds()}";
|
||||||
|
return Ok(new { url = getUrl });
|
||||||
|
}
|
||||||
|
catch (Exception ex)
|
||||||
|
{
|
||||||
|
return StatusCode(500, $"Error renaming file: {ex.Message}");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -49,5 +49,10 @@ namespace Jellyfin.Plugin.MediaBarEnhanced.Configuration
|
|||||||
public bool IncludeWatchedContent { get; set; } = false;
|
public bool IncludeWatchedContent { get; set; } = false;
|
||||||
public string SortBy { get; set; } = "Random";
|
public string SortBy { get; set; } = "Random";
|
||||||
public string SortOrder { get; set; } = "Ascending";
|
public string SortOrder { get; set; } = "Ascending";
|
||||||
|
|
||||||
|
public bool EnableCustomOverlay { get; set; } = false;
|
||||||
|
public string CustomOverlayText { get; set; } = "";
|
||||||
|
public string CustomOverlayImageUrl { get; set; } = "";
|
||||||
|
public string CustomOverlayStyle { get; set; } = "Shadowed";
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -34,6 +34,10 @@
|
|||||||
style="background: none; border: none; color: #ccc; cursor: pointer; transition: color 0.3s, border-bottom 0.3s; padding: 0.5em 1em; border-bottom: 2px solid transparent;">
|
style="background: none; border: none; color: #ccc; cursor: pointer; transition: color 0.3s, border-bottom 0.3s; padding: 0.5em 1em; border-bottom: 2px solid transparent;">
|
||||||
<h3>Advanced Settings</h3>
|
<h3>Advanced Settings</h3>
|
||||||
</button>
|
</button>
|
||||||
|
<button class="jellyfin-tab-button" onclick="showTab('media-bar-enhanced-overlay', this)"
|
||||||
|
style="background: none; border: none; color: #ccc; cursor: pointer; transition: color 0.3s, border-bottom 0.3s; padding: 0.5em 1em; border-bottom: 2px solid transparent;">
|
||||||
|
<h3>Custom Overlay</h3>
|
||||||
|
</button>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<form id="mediaBarEnhancedConfigForm">
|
<form id="mediaBarEnhancedConfigForm">
|
||||||
@@ -210,6 +214,66 @@
|
|||||||
<input type="hidden" id="SeasonalSections" name="SeasonalSections" value="[]" />
|
<input type="hidden" id="SeasonalSections" name="SeasonalSections" value="[]" />
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
<!-- CUSTOM OVERLAY TAB -->
|
||||||
|
<div id="media-bar-enhanced-overlay" class="tab-content" style="display:none;">
|
||||||
|
<h2 class="sectionTitle">Custom Slideshow Overlay</h2>
|
||||||
|
<p>Inject a custom text or floating image over the slideshow. This can be overridden by specific Seasonal Sections in the Custom Filters tab.</p>
|
||||||
|
|
||||||
|
<div class="checkboxContainer checkboxContainer-withDescription">
|
||||||
|
<label>
|
||||||
|
<input is="emby-checkbox" type="checkbox" id="EnableCustomOverlay" name="EnableCustomOverlay" />
|
||||||
|
<span>Enable Custom Overlay</span>
|
||||||
|
</label>
|
||||||
|
<div class="fieldDescription">If enabled, the text or image below will hover over the slideshow globally.</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="selectContainer">
|
||||||
|
<label class="selectLabel" for="CustomOverlayStyle">Overlay Style</label>
|
||||||
|
<select is="emby-select" id="CustomOverlayStyle" name="CustomOverlayStyle"
|
||||||
|
class="selectLayout emby-select-withcolor emby-select"
|
||||||
|
style="width: 100%; -webkit-appearance: menulist; appearance: menulist;">
|
||||||
|
<option value="Shadowed">Classic Shadowed</option>
|
||||||
|
<option value="Frosted">Frosted Glass Pill</option>
|
||||||
|
<option value="Cinematic">Cinematic Golden Glow</option>
|
||||||
|
<option value="Pulse">Animated Pulse</option>
|
||||||
|
<option value="Neon">Neon Cyberpunk</option>
|
||||||
|
<option value="Typewriter">Typewriter Pop</option>
|
||||||
|
<option value="Bubble">Floating Bubble</option>
|
||||||
|
<option value="SlideIn">Cinematic Slide-In</option>
|
||||||
|
</select>
|
||||||
|
<div class="fieldDescription">Choose the visual styling animation for your custom text.</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="inputContainer">
|
||||||
|
<label class="inputLabel inputLabelUnfocused" for="CustomOverlayText">Global Overlay Text</label>
|
||||||
|
<input is="emby-input" type="text" id="CustomOverlayText" name="CustomOverlayText" />
|
||||||
|
<div class="fieldDescription">Text to display on the overlay (e.g. "Movie Night!"). Leave blank to use an image instead.</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<h3 class="inputLabel" style="margin-top: 2em;">Global Overlay Image</h3>
|
||||||
|
<div class="inputContainer">
|
||||||
|
<label class="inputLabel inputLabelUnfocused" for="CustomOverlayImageUrl">Global Overlay Image URL</label>
|
||||||
|
<input is="emby-input" type="text" id="CustomOverlayImageUrl" name="CustomOverlayImageUrl" />
|
||||||
|
<div class="fieldDescription">Absolute URL to an image to display on the overlay. If provided, this overrides the text above.</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<!-- Image Upload Dropzone -->
|
||||||
|
<div class="inputContainer" style="margin-top: 1em;">
|
||||||
|
<label class="inputLabel">Or Upload Local Image</label>
|
||||||
|
<div id="overlayImageDropzone" style="border: 2px dashed rgba(255,255,255,0.2); border-radius: 8px; padding: 2em; text-align: center; cursor: pointer; background: rgba(0,0,0,0.2); transition: all 0.2s ease; position: relative; min-height: 120px; display: flex; flex-direction: column; align-items: center; justify-content: center;">
|
||||||
|
<i class="material-icons" style="font-size: 40px; color: rgba(255,255,255,0.4); margin-bottom: 10px;">cloud_upload</i>
|
||||||
|
<span style="font-size: 1.1em; color: rgba(255,255,255,0.7);">Drag and drop an image here, or click to select</span>
|
||||||
|
<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;" />
|
||||||
|
<!-- 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; background: rgba(0,0,0,0.6); border-radius: 50%; padding: 5px;" title="Clear Image">
|
||||||
|
<i class="material-icons" style="color: #a94442;">delete</i>
|
||||||
|
</button>
|
||||||
|
</div>
|
||||||
|
<div class="fieldDescription">Uploading an image will securely save it to the server and automatically update the URL field above.</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
<!-- ADVANCED TAB -->
|
<!-- ADVANCED TAB -->
|
||||||
<div id="media-bar-enhanced-advanced" class="tab-content" style="display:none;">
|
<div id="media-bar-enhanced-advanced" class="tab-content" style="display:none;">
|
||||||
<h2 class="sectionTitle">Features</h2>
|
<h2 class="sectionTitle">Features</h2>
|
||||||
@@ -534,7 +598,9 @@
|
|||||||
'PreferLocalTrailers', 'ApplyLimitsToCustomIds', 'SeasonalSections',
|
'PreferLocalTrailers', 'ApplyLimitsToCustomIds', 'SeasonalSections',
|
||||||
'PreferLocalBackdrops', 'RandomizeThemeVideos', 'RandomizeLocalTrailers',
|
'PreferLocalBackdrops', 'RandomizeThemeVideos', 'RandomizeLocalTrailers',
|
||||||
'IncludeWatchedContent', 'ShowPaginationDots', 'MaxParentalRating',
|
'IncludeWatchedContent', 'ShowPaginationDots', 'MaxParentalRating',
|
||||||
'MaxDaysRecent', 'ExcludeSeasonalContent', 'HideArrowsOnMobile'
|
'MaxDaysRecent', 'ExcludeSeasonalContent', 'HideArrowsOnMobile',
|
||||||
|
'EnableCustomOverlay', 'CustomOverlayText', 'CustomOverlayImageUrl',
|
||||||
|
'CustomOverlayStyle'
|
||||||
];
|
];
|
||||||
|
|
||||||
// Manual mapping for MediaBarIsEnabled -> IsEnabled, to avoid conflicts with other plugins
|
// Manual mapping for MediaBarIsEnabled -> IsEnabled, to avoid conflicts with other plugins
|
||||||
@@ -614,6 +680,117 @@
|
|||||||
updatePreferLocalVisibility();
|
updatePreferLocalVisibility();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Overlay Image Upload Logic
|
||||||
|
var dropzone = page.querySelector('#overlayImageDropzone');
|
||||||
|
var fileInput = page.querySelector('#overlayImageInput');
|
||||||
|
var urlInput = page.querySelector('#CustomOverlayImageUrl');
|
||||||
|
var previewImg = page.querySelector('#overlayImagePreview');
|
||||||
|
var clearBtn = page.querySelector('#clearOverlayImageBtn');
|
||||||
|
|
||||||
|
function updatePreview() {
|
||||||
|
if (urlInput.value && urlInput.value.trim() !== '') {
|
||||||
|
previewImg.src = urlInput.value;
|
||||||
|
previewImg.style.display = 'block';
|
||||||
|
clearBtn.style.display = 'block';
|
||||||
|
} else {
|
||||||
|
previewImg.style.display = 'none';
|
||||||
|
clearBtn.style.display = 'none';
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Initial check
|
||||||
|
updatePreview();
|
||||||
|
|
||||||
|
// Listen to manual URL input changes
|
||||||
|
urlInput.addEventListener('input', updatePreview);
|
||||||
|
|
||||||
|
clearBtn.addEventListener('click', function(e) {
|
||||||
|
e.stopPropagation(); // prevent triggering file dialog
|
||||||
|
|
||||||
|
// Call DELETE API to remove global image
|
||||||
|
fetch(ApiClient.serverAddress() + '/MediaBarEnhanced/OverlayImage', {
|
||||||
|
method: 'DELETE',
|
||||||
|
headers: {
|
||||||
|
'Authorization': 'MediaBrowser Client="' + ApiClient.appName() + '", Device="' + ApiClient.deviceName() + '", DeviceId="' + ApiClient.deviceId() + '", Version="' + ApiClient.appVersion() + '", Token="' + ApiClient.accessToken() + '"'
|
||||||
|
}
|
||||||
|
}).catch(console.error);
|
||||||
|
|
||||||
|
urlInput.value = '';
|
||||||
|
fileInput.value = '';
|
||||||
|
updatePreview();
|
||||||
|
});
|
||||||
|
|
||||||
|
dropzone.addEventListener('click', function() {
|
||||||
|
fileInput.click();
|
||||||
|
});
|
||||||
|
|
||||||
|
dropzone.addEventListener('dragover', function(e) {
|
||||||
|
e.preventDefault();
|
||||||
|
dropzone.style.borderColor = '#00a4dc';
|
||||||
|
dropzone.style.background = 'rgba(0, 164, 220, 0.2)';
|
||||||
|
});
|
||||||
|
|
||||||
|
dropzone.addEventListener('dragleave', function(e) {
|
||||||
|
e.preventDefault();
|
||||||
|
dropzone.style.borderColor = 'rgba(255,255,255,0.2)';
|
||||||
|
dropzone.style.background = 'rgba(0,0,0,0.2)';
|
||||||
|
});
|
||||||
|
|
||||||
|
dropzone.addEventListener('drop', function(e) {
|
||||||
|
e.preventDefault();
|
||||||
|
dropzone.style.borderColor = 'rgba(255,255,255,0.2)';
|
||||||
|
dropzone.style.background = 'rgba(0,0,0,0.2)';
|
||||||
|
|
||||||
|
if (e.dataTransfer.files && e.dataTransfer.files.length > 0) {
|
||||||
|
fileInput.files = e.dataTransfer.files;
|
||||||
|
uploadImage(e.dataTransfer.files[0]);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
fileInput.addEventListener('change', function() {
|
||||||
|
if (this.files && this.files.length > 0) {
|
||||||
|
uploadImage(this.files[0]);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
function uploadImage(file) {
|
||||||
|
// Validate it's an image
|
||||||
|
if (!file.type.match('image.*')) {
|
||||||
|
Dashboard.alert('Please select a valid image file.');
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
Dashboard.showLoadingMsg();
|
||||||
|
|
||||||
|
var formData = new FormData();
|
||||||
|
formData.append('file', file);
|
||||||
|
|
||||||
|
// The Endpoint we created in C#
|
||||||
|
fetch(ApiClient.serverAddress() + '/MediaBarEnhanced/OverlayImage', {
|
||||||
|
method: 'POST',
|
||||||
|
body: formData,
|
||||||
|
headers: {
|
||||||
|
'Authorization': 'MediaBrowser Client="' + ApiClient.appName() + '", Device="' + ApiClient.deviceName() + '", DeviceId="' + ApiClient.deviceId() + '", Version="' + ApiClient.appVersion() + '", Token="' + ApiClient.accessToken() + '"'
|
||||||
|
}
|
||||||
|
})
|
||||||
|
.then(response => {
|
||||||
|
if (response.ok) return response.json();
|
||||||
|
throw new Error('Network response was not ok.');
|
||||||
|
})
|
||||||
|
.then(data => {
|
||||||
|
// Update URL input
|
||||||
|
urlInput.value = ApiClient.serverAddress() + data.url;
|
||||||
|
updatePreview();
|
||||||
|
Dashboard.hideLoadingMsg();
|
||||||
|
})
|
||||||
|
.catch(error => {
|
||||||
|
console.error('Upload error:', error);
|
||||||
|
Dashboard.alert('Image upload failed. Please verify API controller is active.');
|
||||||
|
Dashboard.hideLoadingMsg();
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
Dashboard.hideLoadingMsg();
|
Dashboard.hideLoadingMsg();
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
@@ -645,7 +822,9 @@
|
|||||||
'PreferLocalTrailers', 'ApplyLimitsToCustomIds', 'SeasonalSections',
|
'PreferLocalTrailers', 'ApplyLimitsToCustomIds', 'SeasonalSections',
|
||||||
'PreferLocalBackdrops', 'RandomizeThemeVideos', 'RandomizeLocalTrailers',
|
'PreferLocalBackdrops', 'RandomizeThemeVideos', 'RandomizeLocalTrailers',
|
||||||
'IncludeWatchedContent', 'ShowPaginationDots', 'MaxParentalRating',
|
'IncludeWatchedContent', 'ShowPaginationDots', 'MaxParentalRating',
|
||||||
'MaxDaysRecent', 'ExcludeSeasonalContent', 'HideArrowsOnMobile'
|
'MaxDaysRecent', 'ExcludeSeasonalContent', 'HideArrowsOnMobile',
|
||||||
|
'EnableCustomOverlay', 'CustomOverlayText', 'CustomOverlayImageUrl',
|
||||||
|
'CustomOverlayStyle'
|
||||||
];
|
];
|
||||||
|
|
||||||
keys.forEach(function (key) {
|
keys.forEach(function (key) {
|
||||||
@@ -681,7 +860,9 @@
|
|||||||
Name: 'New Season',
|
Name: 'New Season',
|
||||||
StartDay: 1, StartMonth: 1,
|
StartDay: 1, StartMonth: 1,
|
||||||
EndDay: 1, EndMonth: 1,
|
EndDay: 1, EndMonth: 1,
|
||||||
MediaIds: ''
|
MediaIds: '',
|
||||||
|
OverlayText: '',
|
||||||
|
OverlayImageUrl: ''
|
||||||
}, index);
|
}, index);
|
||||||
},
|
},
|
||||||
|
|
||||||
@@ -742,6 +923,25 @@
|
|||||||
' <label class="inputLabel" style="margin-bottom:0.5em; display:block;">Media IDs</label>' +
|
' <label class="inputLabel" style="margin-bottom:0.5em; display:block;">Media IDs</label>' +
|
||||||
' <textarea is="emby-textarea" class="emby-textarea section-ids" style="width: 100%; height: 80px; font-family: monospace;">' + (data.MediaIds || '') + '</textarea>' +
|
' <textarea is="emby-textarea" class="emby-textarea section-ids" style="width: 100%; height: 80px; font-family: monospace;">' + (data.MediaIds || '') + '</textarea>' +
|
||||||
' <div class="fieldDescription">Comma-separated or Newline separated list of Movie/Series/Collection IDs to show during this season.<br>Same options available as for the default media IDs.</div>' +
|
' <div class="fieldDescription">Comma-separated or Newline separated list of Movie/Series/Collection IDs to show during this season.<br>Same options available as for the default media IDs.</div>' +
|
||||||
|
'</div>' +
|
||||||
|
'<div class="inputContainer" style="margin-top: 1em;">' +
|
||||||
|
' <input is="emby-input" type="text" class="emby-input section-overlay-text" style="width: 100%;" value="' + (data.OverlayText ? data.OverlayText.replace(/"/g, '"') : '') + '" placeholder="Seasonal Custom Overlay Text (e.g. Oscars Time!)" />' +
|
||||||
|
' <div class="fieldDescription">Optional: Override the global custom overlay text during this season.</div>' +
|
||||||
|
'</div>' +
|
||||||
|
'<div class="inputContainer">' +
|
||||||
|
' <input is="emby-input" type="text" class="emby-input section-overlay-image" style="width: 100%;" value="' + (data.OverlayImageUrl ? data.OverlayImageUrl.replace(/"/g, '"') : '') + '" placeholder="Seasonal Custom Overlay Image URL" />' +
|
||||||
|
' <div class="fieldDescription">Optional: Override the global custom overlay image during this season. Overrides the text if provided.</div>' +
|
||||||
|
'</div>' +
|
||||||
|
'<div class="inputContainer" style="margin-top: 1em; margin-bottom: 0;">' +
|
||||||
|
' <div class="seasonal-dropzone" style="border: 2px dashed rgba(255,255,255,0.2); border-radius: 8px; padding: 1.5em; text-align: center; cursor: pointer; background: rgba(0,0,0,0.2); transition: all 0.2s ease; position: relative; min-height: 100px; display: flex; flex-direction: column; align-items: center; justify-content: center;">' +
|
||||||
|
' <i class="material-icons" style="font-size: 32px; color: rgba(255,255,255,0.4); margin-bottom: 8px;">cloud_upload</i>' +
|
||||||
|
' <span style="font-size: 0.9em; color: rgba(255,255,255,0.7);">Drag and drop a seasonal image here, or click</span>' +
|
||||||
|
' <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: 120px; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); border-radius: 4px; z-index: 2;" />' +
|
||||||
|
' <button type="button" class="seasonal-clear-btn" is="paper-icon-button-light" style="display: none; position: absolute; top: 10px; right: 10px; z-index: 3; background: rgba(0,0,0,0.6); border-radius: 50%; padding: 5px;" title="Clear Image">' +
|
||||||
|
' <i class="material-icons" style="color: #a94442;">delete</i>' +
|
||||||
|
' </button>' +
|
||||||
|
' </div>' +
|
||||||
'</div>';
|
'</div>';
|
||||||
|
|
||||||
div.querySelector('.btn-remove').addEventListener('click', function () {
|
div.querySelector('.btn-remove').addEventListener('click', function () {
|
||||||
@@ -763,6 +963,163 @@
|
|||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
|
// --- Seasonal Drag and Drop Logic ---
|
||||||
|
var sectionNameInput = div.querySelector('.section-name');
|
||||||
|
var urlInput = div.querySelector('.section-overlay-image');
|
||||||
|
var dropzone = div.querySelector('.seasonal-dropzone');
|
||||||
|
var fileInput = div.querySelector('.seasonal-file-input');
|
||||||
|
var previewImg = div.querySelector('.seasonal-preview-img');
|
||||||
|
var clearBtn = div.querySelector('.seasonal-clear-btn');
|
||||||
|
var currentSectionName = sectionNameInput.value.trim();
|
||||||
|
|
||||||
|
// Track Name Changes to rename server file
|
||||||
|
sectionNameInput.addEventListener('focus', function() {
|
||||||
|
currentSectionName = this.value.trim();
|
||||||
|
});
|
||||||
|
|
||||||
|
sectionNameInput.addEventListener('blur', function() {
|
||||||
|
var newName = this.value.trim();
|
||||||
|
if (newName && currentSectionName && newName !== currentSectionName) {
|
||||||
|
// If they have an image attached, rename it
|
||||||
|
if (urlInput.value && urlInput.value.indexOf('OverlayImage') !== -1) {
|
||||||
|
fetch(ApiClient.serverAddress() + '/MediaBarEnhanced/OverlayImage/Rename?oldName=' + encodeURIComponent(currentSectionName) + '&newName=' + encodeURIComponent(newName), {
|
||||||
|
method: 'PUT',
|
||||||
|
headers: {
|
||||||
|
'Authorization': 'MediaBrowser Client="' + ApiClient.appName() + '", Device="' + ApiClient.deviceName() + '", DeviceId="' + ApiClient.deviceId() + '", Version="' + ApiClient.appVersion() + '", Token="' + ApiClient.accessToken() + '"'
|
||||||
|
}
|
||||||
|
})
|
||||||
|
.then(response => {
|
||||||
|
if(response.ok) return response.json();
|
||||||
|
throw new Error('Rename failed');
|
||||||
|
})
|
||||||
|
.then(data => {
|
||||||
|
urlInput.value = ApiClient.serverAddress() + data.url;
|
||||||
|
currentSectionName = newName;
|
||||||
|
}).catch(console.error);
|
||||||
|
} else {
|
||||||
|
currentSectionName = newName;
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
currentSectionName = newName;
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
function updatePreview() {
|
||||||
|
var val = urlInput.value.trim();
|
||||||
|
if (val) {
|
||||||
|
previewImg.src = val;
|
||||||
|
previewImg.style.display = 'block';
|
||||||
|
clearBtn.style.display = 'block';
|
||||||
|
} else {
|
||||||
|
previewImg.src = '';
|
||||||
|
previewImg.style.display = 'none';
|
||||||
|
clearBtn.style.display = 'none';
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Initial state
|
||||||
|
updatePreview();
|
||||||
|
urlInput.addEventListener('input', updatePreview);
|
||||||
|
|
||||||
|
clearBtn.addEventListener('click', function(e) {
|
||||||
|
e.stopPropagation();
|
||||||
|
var name = sectionNameInput.value.trim();
|
||||||
|
if (name) {
|
||||||
|
fetch(ApiClient.serverAddress() + '/MediaBarEnhanced/OverlayImage?filename=' + encodeURIComponent(name), {
|
||||||
|
method: 'DELETE',
|
||||||
|
headers: {
|
||||||
|
'Authorization': 'MediaBrowser Client="' + ApiClient.appName() + '", Device="' + ApiClient.deviceName() + '", DeviceId="' + ApiClient.deviceId() + '", Version="' + ApiClient.appVersion() + '", Token="' + ApiClient.accessToken() + '"'
|
||||||
|
}
|
||||||
|
}).catch(console.error);
|
||||||
|
}
|
||||||
|
urlInput.value = '';
|
||||||
|
fileInput.value = '';
|
||||||
|
updatePreview();
|
||||||
|
});
|
||||||
|
|
||||||
|
div.querySelector('.btn-remove').addEventListener('click', function () {
|
||||||
|
// Cleanup image if deleted
|
||||||
|
var name = sectionNameInput.value.trim();
|
||||||
|
if (name) {
|
||||||
|
fetch(ApiClient.serverAddress() + '/MediaBarEnhanced/OverlayImage?filename=' + encodeURIComponent(name), {
|
||||||
|
method: 'DELETE',
|
||||||
|
headers: {
|
||||||
|
'Authorization': 'MediaBrowser Client="' + ApiClient.appName() + '", Device="' + ApiClient.deviceName() + '", DeviceId="' + ApiClient.deviceId() + '", Version="' + ApiClient.appVersion() + '", Token="' + ApiClient.accessToken() + '"'
|
||||||
|
}
|
||||||
|
}).catch(console.error);
|
||||||
|
}
|
||||||
|
div.remove();
|
||||||
|
MediaBarEnhancedConfigurationPage.updateSectionTitles(container);
|
||||||
|
});
|
||||||
|
|
||||||
|
dropzone.addEventListener('click', function() { fileInput.click(); });
|
||||||
|
|
||||||
|
dropzone.addEventListener('dragover', function(e) {
|
||||||
|
e.preventDefault();
|
||||||
|
dropzone.style.borderColor = '#00a4dc';
|
||||||
|
dropzone.style.background = 'rgba(0, 164, 220, 0.2)';
|
||||||
|
});
|
||||||
|
|
||||||
|
dropzone.addEventListener('dragleave', function(e) {
|
||||||
|
e.preventDefault();
|
||||||
|
dropzone.style.borderColor = 'rgba(255,255,255,0.2)';
|
||||||
|
dropzone.style.background = 'rgba(0,0,0,0.2)';
|
||||||
|
});
|
||||||
|
|
||||||
|
dropzone.addEventListener('drop', function(e) {
|
||||||
|
e.preventDefault();
|
||||||
|
dropzone.style.borderColor = 'rgba(255,255,255,0.2)';
|
||||||
|
dropzone.style.background = 'rgba(0,0,0,0.2)';
|
||||||
|
if (e.dataTransfer.files && e.dataTransfer.files.length > 0) {
|
||||||
|
fileInput.files = e.dataTransfer.files;
|
||||||
|
uploadSeasonalImage(e.dataTransfer.files[0]);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
fileInput.addEventListener('change', function() {
|
||||||
|
if (this.files && this.files.length > 0) uploadSeasonalImage(this.files[0]);
|
||||||
|
});
|
||||||
|
|
||||||
|
function uploadSeasonalImage(file) {
|
||||||
|
if (!file.type.match('image.*')) {
|
||||||
|
Dashboard.alert('Please select a valid image file.');
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
var name = sectionNameInput.value.trim();
|
||||||
|
if (!name) {
|
||||||
|
Dashboard.alert('Please enter a Name for this season before uploading an image (used for file saving).');
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
Dashboard.showLoadingMsg();
|
||||||
|
var formData = new FormData();
|
||||||
|
formData.append('file', file);
|
||||||
|
|
||||||
|
var qs = '?filename=' + encodeURIComponent(name);
|
||||||
|
fetch(ApiClient.serverAddress() + '/MediaBarEnhanced/OverlayImage' + qs, {
|
||||||
|
method: 'POST',
|
||||||
|
body: formData,
|
||||||
|
headers: {
|
||||||
|
'Authorization': 'MediaBrowser Client="' + ApiClient.appName() + '", Device="' + ApiClient.deviceName() + '", DeviceId="' + ApiClient.deviceId() + '", Version="' + ApiClient.appVersion() + '", Token="' + ApiClient.accessToken() + '"'
|
||||||
|
}
|
||||||
|
})
|
||||||
|
.then(response => {
|
||||||
|
if (response.ok) return response.json();
|
||||||
|
throw new Error('Upload failed');
|
||||||
|
})
|
||||||
|
.then(data => {
|
||||||
|
urlInput.value = ApiClient.serverAddress() + data.url;
|
||||||
|
updatePreview();
|
||||||
|
Dashboard.hideLoadingMsg();
|
||||||
|
})
|
||||||
|
.catch(error => {
|
||||||
|
console.error('Upload error:', error);
|
||||||
|
Dashboard.alert('Image upload failed.');
|
||||||
|
Dashboard.hideLoadingMsg();
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
container.appendChild(div);
|
container.appendChild(div);
|
||||||
},
|
},
|
||||||
|
|
||||||
@@ -786,7 +1143,9 @@
|
|||||||
StartMonth: parseInt(el.querySelector('.start-month').value),
|
StartMonth: parseInt(el.querySelector('.start-month').value),
|
||||||
EndDay: parseInt(el.querySelector('.end-day').value),
|
EndDay: parseInt(el.querySelector('.end-day').value),
|
||||||
EndMonth: parseInt(el.querySelector('.end-month').value),
|
EndMonth: parseInt(el.querySelector('.end-month').value),
|
||||||
MediaIds: el.querySelector('.section-ids').value
|
MediaIds: el.querySelector('.section-ids').value,
|
||||||
|
OverlayText: el.querySelector('.section-overlay-text').value,
|
||||||
|
OverlayImageUrl: el.querySelector('.section-overlay-image').value
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
return sections;
|
return sections;
|
||||||
|
|||||||
@@ -18,7 +18,7 @@ namespace Jellyfin.Plugin.MediaBarEnhanced.Helpers
|
|||||||
try
|
try
|
||||||
{
|
{
|
||||||
// Safety Check: If plugin is disabled, do nothing
|
// Safety Check: If plugin is disabled, do nothing
|
||||||
if (!MediaBarEnhancedPlugin.Instance.Configuration.IsEnabled)
|
if (MediaBarEnhancedPlugin.Instance?.Configuration?.IsEnabled != true)
|
||||||
{
|
{
|
||||||
return originalContents;
|
return originalContents;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -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.1.9</Version>
|
<Version>1.7.2.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>
|
||||||
|
|
||||||
|
|||||||
@@ -17,7 +17,6 @@ namespace Jellyfin.Plugin.MediaBarEnhanced
|
|||||||
{
|
{
|
||||||
private readonly ScriptInjector _scriptInjector;
|
private readonly ScriptInjector _scriptInjector;
|
||||||
private readonly ILoggerFactory _loggerFactory;
|
private readonly ILoggerFactory _loggerFactory;
|
||||||
public IServiceProvider ServiceProvider { get; }
|
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Initializes a new instance of the <see cref="MediaBarEnhancedPlugin"/> class.
|
/// Initializes a new instance of the <see cref="MediaBarEnhancedPlugin"/> class.
|
||||||
|
|||||||
@@ -354,13 +354,13 @@
|
|||||||
width: 100%;
|
width: 100%;
|
||||||
height: 100%;
|
height: 100%;
|
||||||
mask-image: linear-gradient(to top,
|
mask-image: linear-gradient(to top,
|
||||||
#fff0 2%,
|
rgba(255, 255, 255, 0) 2%,
|
||||||
rgb(0 0 0 / 0.5) 6%,
|
rgba(0, 0, 0, 0.5) 6%,
|
||||||
#000000 8%);
|
#000000 8%);
|
||||||
-webkit-mask-image: linear-gradient(to top,
|
-webkit-mask-image: linear-gradient(to top,
|
||||||
#fff0 2%,
|
rgba(255, 255, 255, 0) 2%,
|
||||||
rgb(0 0 0 / 0.5) 6%,
|
rgba(0, 0, 0, 0.5) 6%,
|
||||||
#000000 8%);
|
#000000 8%);
|
||||||
}
|
}
|
||||||
|
|
||||||
.backdrop-container.full-width-video {
|
.backdrop-container.full-width-video {
|
||||||
@@ -384,13 +384,13 @@
|
|||||||
border-radius: 5px;
|
border-radius: 5px;
|
||||||
z-index: 3;
|
z-index: 3;
|
||||||
mask-image: linear-gradient(to top,
|
mask-image: linear-gradient(to top,
|
||||||
#fff0 2%,
|
rgba(255, 255, 255, 0) 2%,
|
||||||
rgb(0 0 0 / 0.5) 6%,
|
rgba(0, 0, 0, 0.5) 6%,
|
||||||
#000000 8%);
|
#000000 8%);
|
||||||
-webkit-mask-image: linear-gradient(to top,
|
-webkit-mask-image: linear-gradient(to top,
|
||||||
#fff0 2%,
|
rgba(255, 255, 255, 0) 2%,
|
||||||
rgb(0 0 0 / 0.5) 6%,
|
rgba(0, 0, 0, 0.5) 6%,
|
||||||
#000000 8%);
|
#000000 8%);
|
||||||
}
|
}
|
||||||
|
|
||||||
.backdrop-overlay {
|
.backdrop-overlay {
|
||||||
@@ -403,13 +403,13 @@
|
|||||||
border-radius: 5px;
|
border-radius: 5px;
|
||||||
z-index: 4;
|
z-index: 4;
|
||||||
mask-image: linear-gradient(to top,
|
mask-image: linear-gradient(to top,
|
||||||
#fff0 2%,
|
rgba(255, 255, 255, 0) 2%,
|
||||||
rgb(0 0 0 / 0.5) 4%,
|
rgba(0, 0, 0, 0.5) 4%,
|
||||||
#000000 6%);
|
#000000 6%);
|
||||||
-webkit-mask-image: linear-gradient(to top,
|
-webkit-mask-image: linear-gradient(to top,
|
||||||
#fff0 2%,
|
rgba(255, 255, 255, 0) 2%,
|
||||||
rgb(0 0 0 / 0.5) 4%,
|
rgba(0, 0, 0, 0.5) 4%,
|
||||||
#000000 6%);
|
#000000 6%);
|
||||||
}
|
}
|
||||||
|
|
||||||
.gradient-overlay {
|
.gradient-overlay {
|
||||||
@@ -424,13 +424,13 @@
|
|||||||
rgba(29, 29, 29, 0) 100%);
|
rgba(29, 29, 29, 0) 100%);
|
||||||
z-index: 4;
|
z-index: 4;
|
||||||
mask-image: linear-gradient(to top,
|
mask-image: linear-gradient(to top,
|
||||||
#fff0 2%,
|
rgba(255, 255, 255, 0) 2%,
|
||||||
rgb(0 0 0 / 0.5) 4%,
|
rgba(0, 0, 0, 0.5) 4%,
|
||||||
#000000 6%);
|
#000000 6%);
|
||||||
-webkit-mask-image: linear-gradient(to top,
|
-webkit-mask-image: linear-gradient(to top,
|
||||||
#fff0 2%,
|
rgba(255, 255, 255, 0) 2%,
|
||||||
rgb(0 0 0 / 0.5) 4%,
|
rgba(0, 0, 0, 0.5) 4%,
|
||||||
#000000 6%);
|
#000000 6%);
|
||||||
}
|
}
|
||||||
|
|
||||||
.gradient-overlay.full-width-video {
|
.gradient-overlay.full-width-video {
|
||||||
@@ -525,6 +525,8 @@
|
|||||||
font-family: "Archivo Narrow", sans-serif;
|
font-family: "Archivo Narrow", sans-serif;
|
||||||
font-size: 18px;
|
font-size: 18px;
|
||||||
white-space: nowrap;
|
white-space: nowrap;
|
||||||
|
background-color: rgb(255, 255, 255);
|
||||||
|
color: rgb(0, 0, 0);
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
transition: all 0.3s ease;
|
transition: all 0.3s ease;
|
||||||
font-weight: 700;
|
font-weight: 700;
|
||||||
@@ -535,6 +537,7 @@
|
|||||||
|
|
||||||
.detail-button {
|
.detail-button {
|
||||||
font-size: 18px;
|
font-size: 18px;
|
||||||
|
background-color: rgb(255, 255, 255);
|
||||||
color: rgb(0, 0, 0);
|
color: rgb(0, 0, 0);
|
||||||
border-radius: 50%;
|
border-radius: 50%;
|
||||||
height: 50px;
|
height: 50px;
|
||||||
@@ -547,6 +550,7 @@
|
|||||||
|
|
||||||
.favorite-button {
|
.favorite-button {
|
||||||
font-size: 18px;
|
font-size: 18px;
|
||||||
|
background-color: rgb(255, 255, 255);
|
||||||
color: red;
|
color: red;
|
||||||
border-radius: 50%;
|
border-radius: 50%;
|
||||||
height: 50px;
|
height: 50px;
|
||||||
@@ -662,7 +666,7 @@
|
|||||||
display: flex;
|
display: flex;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
border-radius: 5px;
|
border-radius: 5px;
|
||||||
background: rgb(255 255 255 / 0.8);
|
background: rgba(255, 255, 255, 0.8);
|
||||||
color: #000;
|
color: #000;
|
||||||
border: none;
|
border: none;
|
||||||
font-weight: 600;
|
font-weight: 600;
|
||||||
@@ -712,13 +716,13 @@
|
|||||||
object-position: center 20%;
|
object-position: center 20%;
|
||||||
z-index: 3;
|
z-index: 3;
|
||||||
mask-image: linear-gradient(to top,
|
mask-image: linear-gradient(to top,
|
||||||
#fff0 2%,
|
rgba(255, 255, 255, 0) 2%,
|
||||||
rgb(0 0 0 / 0.5) 6%,
|
rgba(0, 0, 0, 0.5) 6%,
|
||||||
#000000 8%);
|
#000000 8%);
|
||||||
-webkit-mask-image: linear-gradient(to top,
|
-webkit-mask-image: linear-gradient(to top,
|
||||||
#fff0 2%,
|
rgba(255, 255, 255, 0) 2%,
|
||||||
rgb(0 0 0 / 0.5) 6%,
|
rgba(0, 0, 0, 0.5) 6%,
|
||||||
#000000 8%);
|
#000000 8%);
|
||||||
}
|
}
|
||||||
|
|
||||||
.gradient-overlay {
|
.gradient-overlay {
|
||||||
@@ -727,17 +731,17 @@
|
|||||||
left: 0;
|
left: 0;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
height: 100%;
|
height: 100%;
|
||||||
background: rgb(0 0 0 / 0.25);
|
background: rgba(0, 0, 0, 0.25);
|
||||||
z-index: 4;
|
z-index: 4;
|
||||||
pointer-events: none;
|
pointer-events: none;
|
||||||
mask-image: linear-gradient(to top,
|
mask-image: linear-gradient(to top,
|
||||||
#fff0 2%,
|
rgba(255, 255, 255, 0) 2%,
|
||||||
rgb(0 0 0 / 0.5) 6%,
|
rgba(0, 0, 0, 0.5) 6%,
|
||||||
#000000 8%);
|
#000000 8%);
|
||||||
-webkit-mask-image: linear-gradient(to top,
|
-webkit-mask-image: linear-gradient(to top,
|
||||||
#fff0 2%,
|
rgba(255, 255, 255, 0) 2%,
|
||||||
rgb(0 0 0 / 0.5) 6%,
|
rgba(0, 0, 0, 0.5) 6%,
|
||||||
#000000 8%);
|
#000000 8%);
|
||||||
}
|
}
|
||||||
|
|
||||||
.dots-container {
|
.dots-container {
|
||||||
@@ -1008,7 +1012,7 @@
|
|||||||
margin: 0;
|
margin: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
.layout-tv .backdrop-container{
|
.layout-tv .backdrop-container {
|
||||||
top: -5%;
|
top: -5%;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -1016,14 +1020,231 @@
|
|||||||
.layout-tv .backdrop.animate {
|
.layout-tv .backdrop.animate {
|
||||||
animation: none !important;
|
animation: none !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
.layout-tv .logo.animate {
|
.layout-tv .logo.animate {
|
||||||
animation: none !important;
|
animation: none !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
.layout-tv .slide-counter,
|
.layout-tv .slide-counter,
|
||||||
.layout-tv .dots-container {
|
.layout-tv .dots-container {
|
||||||
backdrop-filter: none;
|
backdrop-filter: none;
|
||||||
-webkit-backdrop-filter: none;
|
-webkit-backdrop-filter: none;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
/* Floating Custom Overlay Styling */
|
||||||
|
.custom-overlay-container {
|
||||||
|
position: absolute;
|
||||||
|
top: 8vh;
|
||||||
|
left: 4vw;
|
||||||
|
z-index: 15;
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
justify-content: flex-start;
|
||||||
|
pointer-events: none; /* Let clicks pass through to the slider */
|
||||||
|
animation: fadeInOverlay 1.5s ease-in-out forwards;
|
||||||
|
}
|
||||||
|
|
||||||
|
.custom-overlay-text {
|
||||||
|
font-family: "Archivo Narrow", sans-serif;
|
||||||
|
color: #fff;
|
||||||
|
font-size: 2.5rem;
|
||||||
|
font-weight: 700;
|
||||||
|
text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8), -1px -1px 4px rgba(0, 0, 0, 0.5);
|
||||||
|
margin: 0;
|
||||||
|
letter-spacing: 1px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.custom-overlay-image {
|
||||||
|
max-width: 300px;
|
||||||
|
max-height: 120px;
|
||||||
|
object-fit: contain;
|
||||||
|
filter: drop-shadow(2px 4px 6px rgba(0,0,0,0.5));
|
||||||
|
}
|
||||||
|
|
||||||
|
@keyframes fadeInOverlay {
|
||||||
|
from {
|
||||||
|
opacity: 0;
|
||||||
|
transform: translateY(-10px);
|
||||||
|
}
|
||||||
|
to {
|
||||||
|
opacity: 1;
|
||||||
|
transform: translateY(0);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Make it smaller on mobile portrait */
|
||||||
|
@media only screen and (max-width: 767px) and (orientation: portrait) {
|
||||||
|
.custom-overlay-container {
|
||||||
|
top: 5vh;
|
||||||
|
left: 50%;
|
||||||
|
transform: translateX(-50%);
|
||||||
|
width: 90%;
|
||||||
|
justify-content: center;
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
.custom-overlay-text {
|
||||||
|
font-size: 1.8rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.custom-overlay-image {
|
||||||
|
max-width: 200px;
|
||||||
|
max-height: 80px;
|
||||||
|
}
|
||||||
|
|
||||||
|
@keyframes fadeInOverlay {
|
||||||
|
from {
|
||||||
|
opacity: 0;
|
||||||
|
transform: translate(-50%, -10px);
|
||||||
|
}
|
||||||
|
to {
|
||||||
|
opacity: 1;
|
||||||
|
transform: translate(-50%, 0);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Custom Overlay Styles */
|
||||||
|
.custom-overlay-style-Shadowed {
|
||||||
|
color: #fff;
|
||||||
|
text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.9), -1px -1px 4px rgba(0, 0, 0, 0.8);
|
||||||
|
}
|
||||||
|
|
||||||
|
.custom-overlay-style-Frosted {
|
||||||
|
color: #fff;
|
||||||
|
background: rgba(0, 0, 0, 0.4);
|
||||||
|
backdrop-filter: blur(10px);
|
||||||
|
-webkit-backdrop-filter: blur(10px);
|
||||||
|
padding: 8px 24px;
|
||||||
|
border-radius: 50px;
|
||||||
|
border: 1px solid rgba(255, 255, 255, 0.2);
|
||||||
|
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
|
||||||
|
text-shadow: none; /* override default */
|
||||||
|
}
|
||||||
|
|
||||||
|
.custom-overlay-style-Cinematic {
|
||||||
|
background: linear-gradient(to right, #bf953f, #fcf6ba, #b38728, #fbf5b7, #aa771c);
|
||||||
|
-webkit-background-clip: text;
|
||||||
|
background-clip: text;
|
||||||
|
color: transparent;
|
||||||
|
text-shadow: none; /* override default */
|
||||||
|
filter: drop-shadow(0px 2px 8px rgba(255, 215, 0, 0.4)) drop-shadow(2px 2px 4px rgba(0,0,0,0.8));
|
||||||
|
animation: shineCinematic 4s linear infinite;
|
||||||
|
background-size: 200% auto;
|
||||||
|
}
|
||||||
|
|
||||||
|
@keyframes shineCinematic {
|
||||||
|
to {
|
||||||
|
background-position: 200% center;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.custom-overlay-style-Pulse {
|
||||||
|
color: #fff;
|
||||||
|
text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.9), -1px -1px 4px rgba(0, 0, 0, 0.8);
|
||||||
|
animation: pulseOverlayText 3s ease-in-out infinite alternate;
|
||||||
|
}
|
||||||
|
|
||||||
|
@keyframes pulseOverlayText {
|
||||||
|
from {
|
||||||
|
transform: scale(1);
|
||||||
|
}
|
||||||
|
to {
|
||||||
|
transform: scale(1.05);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/* Text Overlay Styles */
|
||||||
|
.custom-overlay-style-Neon {
|
||||||
|
color: #fff;
|
||||||
|
text-shadow:
|
||||||
|
0 0 5px #fff,
|
||||||
|
0 0 10px #fff,
|
||||||
|
0 0 20px #ff00de,
|
||||||
|
0 0 40px #ff00de,
|
||||||
|
0 0 80px #ff00de,
|
||||||
|
0 0 90px #ff00de,
|
||||||
|
0 0 100px #ff00de,
|
||||||
|
0 0 150px #ff00de;
|
||||||
|
animation: flickerNeon 1.5s infinite alternate;
|
||||||
|
}
|
||||||
|
|
||||||
|
@keyframes flickerNeon {
|
||||||
|
0%, 19%, 21%, 23%, 25%, 54%, 56%, 100% {
|
||||||
|
text-shadow:
|
||||||
|
0 0 5px #fff,
|
||||||
|
0 0 10px #fff,
|
||||||
|
0 0 20px #ff00de,
|
||||||
|
0 0 40px #ff00de,
|
||||||
|
0 0 80px #ff00de,
|
||||||
|
0 0 90px #ff00de,
|
||||||
|
0 0 100px #ff00de,
|
||||||
|
0 0 150px #ff00de;
|
||||||
|
}
|
||||||
|
20%, 24%, 55% {
|
||||||
|
text-shadow: none;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.custom-overlay-style-Typewriter {
|
||||||
|
font-family: 'Courier New', Courier, monospace;
|
||||||
|
background-color: #222;
|
||||||
|
color: #00ff00;
|
||||||
|
padding: 10px 20px;
|
||||||
|
border: 2px solid #00ff00;
|
||||||
|
border-radius: 4px;
|
||||||
|
box-shadow: 4px 4px 0px #00ff00;
|
||||||
|
text-transform: uppercase;
|
||||||
|
}
|
||||||
|
|
||||||
|
.custom-overlay-style-Bubble {
|
||||||
|
color: #fff;
|
||||||
|
background: rgba(255, 255, 255, 0.2);
|
||||||
|
backdrop-filter: blur(5px);
|
||||||
|
-webkit-backdrop-filter: blur(5px);
|
||||||
|
padding: 12px 30px;
|
||||||
|
border-radius: 100px;
|
||||||
|
border: 2px solid rgba(255, 255, 255, 0.5);
|
||||||
|
box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), inset 0 0 20px rgba(255,255,255,0.2);
|
||||||
|
text-shadow: 1px 1px 2px rgba(0,0,0,0.8);
|
||||||
|
animation: floatBubble 4s ease-in-out infinite;
|
||||||
|
}
|
||||||
|
|
||||||
|
@keyframes floatBubble {
|
||||||
|
0% { transform: translateY(0px); }
|
||||||
|
50% { transform: translateY(-15px); }
|
||||||
|
100% { transform: translateY(0px); }
|
||||||
|
}
|
||||||
|
|
||||||
|
.custom-overlay-style-SlideIn {
|
||||||
|
color: #fff;
|
||||||
|
text-transform: uppercase;
|
||||||
|
letter-spacing: 5px;
|
||||||
|
text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
|
||||||
|
position: relative;
|
||||||
|
animation: slideInCinematic 1.2s cubic-bezier(0.25, 1, 0.5, 1) forwards;
|
||||||
|
}
|
||||||
|
|
||||||
|
.custom-overlay-style-SlideIn::before {
|
||||||
|
content: '';
|
||||||
|
position: absolute;
|
||||||
|
top: -10px;
|
||||||
|
bottom: -10px;
|
||||||
|
left: -50vw;
|
||||||
|
right: -50px;
|
||||||
|
background: linear-gradient(to right, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.8) 70%, transparent 100%);
|
||||||
|
z-index: -1;
|
||||||
|
border-left: 5px solid #00a4dc;
|
||||||
|
}
|
||||||
|
|
||||||
|
@keyframes slideInCinematic {
|
||||||
|
from {
|
||||||
|
transform: translateX(-100vw);
|
||||||
|
opacity: 0;
|
||||||
|
}
|
||||||
|
to {
|
||||||
|
transform: translateX(0);
|
||||||
|
opacity: 1;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|||||||
@@ -58,6 +58,10 @@ const CONFIG = {
|
|||||||
enableKeyboardControls: true,
|
enableKeyboardControls: true,
|
||||||
alwaysShowArrows: false,
|
alwaysShowArrows: false,
|
||||||
hideArrowsOnMobile: true,
|
hideArrowsOnMobile: true,
|
||||||
|
enableCustomOverlay: false,
|
||||||
|
customOverlayText: "",
|
||||||
|
customOverlayImageUrl: "",
|
||||||
|
customOverlayStyle: "Shadowed",
|
||||||
enableCustomMediaIds: true,
|
enableCustomMediaIds: true,
|
||||||
enableSeasonalContent: false,
|
enableSeasonalContent: false,
|
||||||
customMediaIds: "",
|
customMediaIds: "",
|
||||||
@@ -749,7 +753,7 @@ const SlideUtils = {
|
|||||||
if (isYoutube && videoId) {
|
if (isYoutube && videoId) {
|
||||||
const ytIframe = this.createElement('iframe', {
|
const ytIframe = this.createElement('iframe', {
|
||||||
id: 'modal-yt-player',
|
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',
|
allow: 'autoplay; encrypted-media',
|
||||||
style: 'width: 100%; height: 100%; border: none;',
|
style: 'width: 100%; height: 100%; border: none;',
|
||||||
referrerpolicy: 'strict-origin-when-cross-origin',
|
referrerpolicy: 'strict-origin-when-cross-origin',
|
||||||
@@ -759,20 +763,6 @@ const SlideUtils = {
|
|||||||
contentContainer.appendChild(ytIframe);
|
contentContainer.appendChild(ytIframe);
|
||||||
overlay.append(closeButton, contentContainer);
|
overlay.append(closeButton, contentContainer);
|
||||||
document.body.appendChild(overlay);
|
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 {
|
} else {
|
||||||
const video = this.createElement('video', {
|
const video = this.createElement('video', {
|
||||||
src: url,
|
src: url,
|
||||||
@@ -780,6 +770,7 @@ const SlideUtils = {
|
|||||||
autoplay: true,
|
autoplay: true,
|
||||||
className: 'video-modal-player'
|
className: 'video-modal-player'
|
||||||
});
|
});
|
||||||
|
video.setAttribute('playsinline', '');
|
||||||
contentContainer.appendChild(video);
|
contentContainer.appendChild(video);
|
||||||
overlay.append(closeButton, contentContainer);
|
overlay.append(closeButton, contentContainer);
|
||||||
document.body.appendChild(overlay);
|
document.body.appendChild(overlay);
|
||||||
@@ -1949,6 +1940,7 @@ const SlideCreator = {
|
|||||||
};
|
};
|
||||||
|
|
||||||
videoAttributes.muted = "";
|
videoAttributes.muted = "";
|
||||||
|
videoAttributes.playsinline = "";
|
||||||
|
|
||||||
videoBackdrop = SlideUtils.createElement("video", videoAttributes);
|
videoBackdrop = SlideUtils.createElement("video", videoAttributes);
|
||||||
videoBackdrop.volume = 0.4;
|
videoBackdrop.volume = 0.4;
|
||||||
@@ -3789,6 +3781,94 @@ const slidesInit = async () => {
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
const renderCustomOverlay = () => {
|
||||||
|
let activeOverlayText = CONFIG.customOverlayText;
|
||||||
|
let activeOverlayImage = CONFIG.customOverlayImageUrl;
|
||||||
|
let isSeasonOverride = false;
|
||||||
|
|
||||||
|
if (CONFIG.enableSeasonalContent && CONFIG.seasonalSections) {
|
||||||
|
try {
|
||||||
|
const sections = JSON.parse(CONFIG.seasonalSections || "[]");
|
||||||
|
const now = new Date();
|
||||||
|
const currentMonth = now.getMonth() + 1;
|
||||||
|
const currentDay = now.getDate();
|
||||||
|
|
||||||
|
for (const section of sections) {
|
||||||
|
const startMonth = parseInt(section.StartMonth);
|
||||||
|
const startDay = parseInt(section.StartDay);
|
||||||
|
const endMonth = parseInt(section.EndMonth);
|
||||||
|
const endDay = parseInt(section.EndDay);
|
||||||
|
|
||||||
|
let isActive = false;
|
||||||
|
if (startMonth === endMonth) {
|
||||||
|
if (currentMonth === startMonth && currentDay >= startDay && currentDay <= endDay) {
|
||||||
|
isActive = true;
|
||||||
|
}
|
||||||
|
} else if (startMonth < endMonth) {
|
||||||
|
if (currentMonth > startMonth && currentMonth < endMonth) {
|
||||||
|
isActive = true;
|
||||||
|
} else if (currentMonth === startMonth && currentDay >= startDay) {
|
||||||
|
isActive = true;
|
||||||
|
} else if (currentMonth === endMonth && currentDay <= endDay) {
|
||||||
|
isActive = true;
|
||||||
|
}
|
||||||
|
} else { // Wraps around year
|
||||||
|
if (currentMonth > startMonth || currentMonth < endMonth) {
|
||||||
|
isActive = true;
|
||||||
|
} else if (currentMonth === startMonth && currentDay >= startDay) {
|
||||||
|
isActive = true;
|
||||||
|
} else if (currentMonth === endMonth && currentDay <= endDay) {
|
||||||
|
isActive = true;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if (isActive) {
|
||||||
|
if (section.OverlayText || section.OverlayImageUrl) {
|
||||||
|
isSeasonOverride = true;
|
||||||
|
// If the season has an image, clear text, and vice versa.
|
||||||
|
if (section.OverlayImageUrl) {
|
||||||
|
activeOverlayImage = section.OverlayImageUrl;
|
||||||
|
activeOverlayText = null;
|
||||||
|
} else if (section.OverlayText) {
|
||||||
|
activeOverlayText = section.OverlayText;
|
||||||
|
activeOverlayImage = null;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
} catch (e) {
|
||||||
|
console.error("🎬 Media Bar:", "Error parsing seasonal sections for overlay:", e);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if (!CONFIG.enableCustomOverlay && !isSeasonOverride) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (!activeOverlayText && !activeOverlayImage) return;
|
||||||
|
|
||||||
|
const overlayContainer = document.createElement("div");
|
||||||
|
overlayContainer.className = "custom-overlay-container";
|
||||||
|
|
||||||
|
if (activeOverlayImage) {
|
||||||
|
const img = document.createElement("img");
|
||||||
|
img.className = "custom-overlay-image";
|
||||||
|
img.src = activeOverlayImage;
|
||||||
|
overlayContainer.appendChild(img);
|
||||||
|
} else if (activeOverlayText) {
|
||||||
|
const p = document.createElement("p");
|
||||||
|
p.className = `custom-overlay-text custom-overlay-style-${CONFIG.customOverlayStyle || 'Shadowed'}`;
|
||||||
|
p.textContent = activeOverlayText;
|
||||||
|
overlayContainer.appendChild(p);
|
||||||
|
}
|
||||||
|
|
||||||
|
const slidesContainer = document.getElementById("slides-container");
|
||||||
|
if (slidesContainer) {
|
||||||
|
slidesContainer.appendChild(overlayContainer);
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
if (CONFIG.enableClientSideSettings) {
|
if (CONFIG.enableClientSideSettings) {
|
||||||
MediaBarEnhancedSettingsManager.init();
|
MediaBarEnhancedSettingsManager.init();
|
||||||
const isClientSideEnabled = MediaBarEnhancedSettingsManager.getSetting('enabled', true);
|
const isClientSideEnabled = MediaBarEnhancedSettingsManager.getSetting('enabled', true);
|
||||||
@@ -3887,6 +3967,8 @@ const slidesInit = async () => {
|
|||||||
|
|
||||||
initArrowNavigation();
|
initArrowNavigation();
|
||||||
|
|
||||||
|
renderCustomOverlay();
|
||||||
|
|
||||||
await SlideshowManager.loadSlideshowData();
|
await SlideshowManager.loadSlideshowData();
|
||||||
|
|
||||||
SlideshowManager.initTouchEvents();
|
SlideshowManager.initTouchEvents();
|
||||||
|
|||||||
@@ -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.1.9",
|
"version": "1.7.2.1",
|
||||||
"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",
|
"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.1.9/Jellyfin.Plugin.MediaBarEnhanced.zip",
|
"sourceUrl": "https://git.mahom03-spacecloud.de/CodeDevMLH/jellyfin-plugin-media-bar-enhanced/releases/download/v1.7.2.1/Jellyfin.Plugin.MediaBarEnhanced.zip",
|
||||||
"checksum": "af20c62dae53ee05dec1ac7ae6bb1149",
|
"checksum": "c491aabf59a0a4b1d123a2647e53f76a",
|
||||||
"timestamp": "2026-03-08T20:58:25Z"
|
"timestamp": "2026-03-09T14:26:42Z"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"version": "1.7.0.14",
|
"version": "1.7.0.14",
|
||||||
|
|||||||
Reference in New Issue
Block a user