Compare commits
68 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
8d6bc12fa4 | ||
|
|
f036e748da | ||
|
|
0177a7caea | ||
|
|
c45e9f6156 | ||
|
|
8dc9b9f157 | ||
|
|
e73c6c14bb | ||
|
|
aa1c60f9ce | ||
|
|
d1e668bcff | ||
|
|
0454d43f32 | ||
|
|
61b3b51139 | ||
|
|
60d1a546a2 | ||
|
|
669933d270 | ||
|
|
053f0ccfa7 | ||
|
|
60e998fc7f | ||
|
|
3aa631198a | ||
|
|
b1876d655e | ||
|
|
9a9f89c1fc | ||
|
|
2fb41f6442 | ||
|
|
4ab949e6d7 | ||
|
|
7d1024c917 | ||
|
|
c2e3d55110 | ||
|
|
c6503a90bb | ||
|
|
b70787d5ec | ||
|
|
a9eb8113a6 | ||
|
|
aaf15d8934 | ||
|
|
ec298ebde0 | ||
|
|
bb108d0f49 | ||
| f271e1715d | |||
|
|
bd0e2779e5 | ||
|
|
53a1682868 | ||
|
|
a7df2fd832 | ||
|
|
c56cde860b | ||
|
|
59211e27c6 | ||
|
|
a2b1179353 | ||
|
|
c7f34ec92f | ||
|
|
4c011cf560 | ||
|
|
e5f78c711d | ||
|
|
98a536315b | ||
|
|
01343848e3 | ||
|
|
113e7dd0f7 | ||
|
|
1bc4176771 | ||
|
|
b091e5592d | ||
|
|
cb2d86340e | ||
|
|
57a92e94de | ||
|
|
30bc8bef39 | ||
|
|
2d237063a3 | ||
|
|
049a5075b5 | ||
|
|
cb2e9c4b07 | ||
|
|
5a39f85082 | ||
|
|
b863d201b9 | ||
|
|
78b50b41c2 | ||
|
|
0ba1545fd6 | ||
|
|
16c4e0f29b | ||
|
|
3581b8cbb2 | ||
|
|
7184c93f6f | ||
|
|
0969f0238f | ||
|
|
12f868d3f9 | ||
|
|
dc7be56807 | ||
|
|
cb60690e6b | ||
|
|
e0397bb2e8 | ||
|
|
822bcafd11 | ||
|
|
429d96c816 | ||
|
|
e948055f0f | ||
|
|
5129d46163 | ||
|
|
660f7142ef | ||
|
|
9f657588d8 | ||
|
|
0457f1a764 | ||
|
|
f196c6c296 |
@@ -40,6 +40,11 @@ jobs:
|
|||||||
|
|
||||||
echo "Detected Version: $VERSION"
|
echo "Detected Version: $VERSION"
|
||||||
echo "VERSION=$VERSION" >> $GITHUB_ENV
|
echo "VERSION=$VERSION" >> $GITHUB_ENV
|
||||||
|
echo "TARGET_ABI=$TARGET_ABI" >> $GITHUB_ENV
|
||||||
|
|
||||||
|
# Also export GUID for later use
|
||||||
|
PLUGIN_GUID=$(jq -r '.[0].guid' manifest.json)
|
||||||
|
echo "PLUGIN_GUID=$PLUGIN_GUID" >> $GITHUB_ENV
|
||||||
|
|
||||||
# Escape newlines in changelog for GITHUB_ENV
|
# Escape newlines in changelog for GITHUB_ENV
|
||||||
echo "CHANGELOG<<EOF" >> $GITHUB_ENV
|
echo "CHANGELOG<<EOF" >> $GITHUB_ENV
|
||||||
@@ -71,7 +76,7 @@ jobs:
|
|||||||
REPO_OWNER="${{ github.repository_owner }}"
|
REPO_OWNER="${{ github.repository_owner }}"
|
||||||
REPO_NAME="${{ github.event.repository.name }}"
|
REPO_NAME="${{ github.event.repository.name }}"
|
||||||
VERSION="${{ env.VERSION }}"
|
VERSION="${{ env.VERSION }}"
|
||||||
DOWNLOAD_URL="https://git.mahom03-spacecloud.de/${{ github.repository }}/releases/download/v$VERSION/Jellyfin.Plugin.Seasonals.zip"
|
DOWNLOAD_URL="https://git.mahom03-spacecloud.de/$REPO_OWNER/$REPO_NAME/releases/download/v$VERSION/Jellyfin.Plugin.Seasonals.zip"
|
||||||
|
|
||||||
echo "Updating manifest.json with:"
|
echo "Updating manifest.json with:"
|
||||||
echo "Hash: ${{ env.ZIP_HASH }}"
|
echo "Hash: ${{ env.ZIP_HASH }}"
|
||||||
@@ -115,11 +120,14 @@ jobs:
|
|||||||
run: |
|
run: |
|
||||||
cd central-manifest
|
cd central-manifest
|
||||||
|
|
||||||
|
REPO_OWNER="${{ github.repository_owner }}"
|
||||||
|
REPO_NAME="${{ github.event.repository.name }}"
|
||||||
|
|
||||||
# 1. Get info from previous steps
|
# 1. Get info from previous steps
|
||||||
VERSION="${{ env.VERSION }}"
|
VERSION="${{ env.VERSION }}"
|
||||||
HASH="${{ env.ZIP_HASH }}"
|
HASH="${{ env.ZIP_HASH }}"
|
||||||
TIME="${{ env.BUILD_TIME }}"
|
TIME="${{ env.BUILD_TIME }}"
|
||||||
DOWNLOAD_URL="https://git.mahom03-spacecloud.de/${{ github.repository }}/releases/download/v$VERSION/Jellyfin.Plugin.Seasonals.zip"
|
DOWNLOAD_URL="https://git.mahom03-spacecloud.de/$REPO_OWNER/$REPO_NAME/releases/download/v$VERSION/Jellyfin.Plugin.Seasonals.zip"
|
||||||
|
|
||||||
# 2. Get info from env
|
# 2. Get info from env
|
||||||
PLUGIN_GUID="${{ env.PLUGIN_GUID }}"
|
PLUGIN_GUID="${{ env.PLUGIN_GUID }}"
|
||||||
@@ -171,7 +179,7 @@ jobs:
|
|||||||
# Check if there are changes
|
# Check if there are changes
|
||||||
if [[ -n $(git status -s) ]]; then
|
if [[ -n $(git status -s) ]]; then
|
||||||
git add manifest.json
|
git add manifest.json
|
||||||
git commit -m "Auto-Update MediaBar Enhanced to v${{ env.VERSION }}"
|
git commit -m "Auto-Update Seasonals to v${{ env.VERSION }}"
|
||||||
git push
|
git push
|
||||||
else
|
else
|
||||||
echo "No changes to central manifest."
|
echo "No changes to central manifest."
|
||||||
|
|||||||
10
.github/workflows/release_automation.yml
vendored
10
.github/workflows/release_automation.yml
vendored
@@ -39,6 +39,11 @@ jobs:
|
|||||||
|
|
||||||
echo "Detected Version: $VERSION"
|
echo "Detected Version: $VERSION"
|
||||||
echo "VERSION=$VERSION" >> $GITHUB_ENV
|
echo "VERSION=$VERSION" >> $GITHUB_ENV
|
||||||
|
echo "TARGET_ABI=$TARGET_ABI" >> $GITHUB_ENV
|
||||||
|
|
||||||
|
# Also export GUID for later use
|
||||||
|
PLUGIN_GUID=$(jq -r '.[0].guid' manifest.json)
|
||||||
|
echo "PLUGIN_GUID=$PLUGIN_GUID" >> $GITHUB_ENV
|
||||||
|
|
||||||
# Escape newlines in changelog for GITHUB_ENV
|
# Escape newlines in changelog for GITHUB_ENV
|
||||||
echo "CHANGELOG<<EOF" >> $GITHUB_ENV
|
echo "CHANGELOG<<EOF" >> $GITHUB_ENV
|
||||||
@@ -113,6 +118,9 @@ jobs:
|
|||||||
run: |
|
run: |
|
||||||
cd central-manifest
|
cd central-manifest
|
||||||
|
|
||||||
|
REPO_OWNER="${{ github.repository_owner }}"
|
||||||
|
REPO_NAME="${{ github.event.repository.name }}"
|
||||||
|
|
||||||
# 1. Get info from previous steps
|
# 1. Get info from previous steps
|
||||||
VERSION="${{ env.VERSION }}"
|
VERSION="${{ env.VERSION }}"
|
||||||
HASH="${{ env.ZIP_HASH }}"
|
HASH="${{ env.ZIP_HASH }}"
|
||||||
@@ -169,7 +177,7 @@ jobs:
|
|||||||
# Check if there are changes
|
# Check if there are changes
|
||||||
if [[ -n $(git status -s) ]]; then
|
if [[ -n $(git status -s) ]]; then
|
||||||
git add manifest.json
|
git add manifest.json
|
||||||
git commit -m "Auto-Update MediaBar Enhanced to v${{ env.VERSION }}"
|
git commit -m "Auto-Update Seasonals to v${{ env.VERSION }}"
|
||||||
git push
|
git push
|
||||||
else
|
else
|
||||||
echo "No changes to central manifest."
|
echo "No changes to central manifest."
|
||||||
|
|||||||
@@ -15,6 +15,7 @@ public class PluginConfiguration : BasePluginConfiguration
|
|||||||
IsEnabled = true;
|
IsEnabled = true;
|
||||||
SelectedSeason = "none";
|
SelectedSeason = "none";
|
||||||
AutomateSeasonSelection = true;
|
AutomateSeasonSelection = true;
|
||||||
|
EnableClientSideToggle = true;
|
||||||
|
|
||||||
Autumn = new AutumnOptions();
|
Autumn = new AutumnOptions();
|
||||||
Snowflakes = new SnowflakesOptions();
|
Snowflakes = new SnowflakesOptions();
|
||||||
@@ -43,6 +44,14 @@ public class PluginConfiguration : BasePluginConfiguration
|
|||||||
/// </summary>
|
/// </summary>
|
||||||
public bool AutomateSeasonSelection { get; set; }
|
public bool AutomateSeasonSelection { get; set; }
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Gets or sets a value indicating whether to enable client-side toggle for users.
|
||||||
|
/// </summary>
|
||||||
|
public bool EnableClientSideToggle { get; set; }
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Gets or sets the Seasonals options.
|
||||||
|
/// </summary>
|
||||||
public AutumnOptions Autumn { get; set; }
|
public AutumnOptions Autumn { get; set; }
|
||||||
public SnowflakesOptions Snowflakes { get; set; }
|
public SnowflakesOptions Snowflakes { get; set; }
|
||||||
public SnowfallOptions Snowfall { get; set; }
|
public SnowfallOptions Snowfall { get; set; }
|
||||||
|
|||||||
@@ -38,6 +38,15 @@
|
|||||||
</label>
|
</label>
|
||||||
<div class="fieldDescription">Automatically select the season based on the date.</div>
|
<div class="fieldDescription">Automatically select the season based on the date.</div>
|
||||||
</div>
|
</div>
|
||||||
|
<div class="checkboxContainer checkboxContainer-withDescription">
|
||||||
|
<label class="emby-checkbox-label">
|
||||||
|
<input id="EnableClientSideToggle" name="EnableClientSideToggle" type="checkbox"
|
||||||
|
is="emby-checkbox" />
|
||||||
|
<span>Allow Client-Side Toggle</span>
|
||||||
|
</label>
|
||||||
|
<div class="fieldDescription">If enabled, users will see a settings icon in the header to toggle
|
||||||
|
animations for their browser.</div>
|
||||||
|
</div>
|
||||||
<div class="selectContainer">
|
<div class="selectContainer">
|
||||||
<label class="selectLabel" for="SelectedSeason">Selected Season</label>
|
<label class="selectLabel" for="SelectedSeason">Selected Season</label>
|
||||||
<select is="emby-select" id="SelectedSeason" name="SelectedSeason" class="emby-select-withcolor emby-select">
|
<select is="emby-select" id="SelectedSeason" name="SelectedSeason" class="emby-select-withcolor emby-select">
|
||||||
@@ -530,6 +539,7 @@
|
|||||||
document.querySelector('#IsEnabled').checked = config.IsEnabled;
|
document.querySelector('#IsEnabled').checked = config.IsEnabled;
|
||||||
document.querySelector('#SelectedSeason').value = config.SelectedSeason;
|
document.querySelector('#SelectedSeason').value = config.SelectedSeason;
|
||||||
document.querySelector('#AutomateSeasonSelection').checked = config.AutomateSeasonSelection;
|
document.querySelector('#AutomateSeasonSelection').checked = config.AutomateSeasonSelection;
|
||||||
|
document.querySelector('#EnableClientSideToggle').checked = config.EnableClientSideToggle !== undefined ? config.EnableClientSideToggle : true;
|
||||||
|
|
||||||
// Advanced Config
|
// Advanced Config
|
||||||
// Autumn
|
// Autumn
|
||||||
@@ -626,6 +636,8 @@
|
|||||||
config.IsEnabled = document.querySelector('#IsEnabled').checked;
|
config.IsEnabled = document.querySelector('#IsEnabled').checked;
|
||||||
config.SelectedSeason = document.querySelector('#SelectedSeason').value;
|
config.SelectedSeason = document.querySelector('#SelectedSeason').value;
|
||||||
config.AutomateSeasonSelection = document.querySelector('#AutomateSeasonSelection').checked;
|
config.AutomateSeasonSelection = document.querySelector('#AutomateSeasonSelection').checked;
|
||||||
|
config.EnableClientSideToggle = document.querySelector('#EnableClientSideToggle').checked;
|
||||||
|
|
||||||
|
|
||||||
// Advanced Config
|
// Advanced Config
|
||||||
// Autumn
|
// Autumn
|
||||||
|
|||||||
@@ -12,7 +12,7 @@
|
|||||||
<!-- <TreatWarningsAsErrors>false</TreatWarningsAsErrors> -->
|
<!-- <TreatWarningsAsErrors>false</TreatWarningsAsErrors> -->
|
||||||
<Title>Jellyfin Seasonals Plugin</Title>
|
<Title>Jellyfin Seasonals Plugin</Title>
|
||||||
<Authors>CodeDevMLH</Authors>
|
<Authors>CodeDevMLH</Authors>
|
||||||
<Version>1.5.0.0</Version>
|
<Version>1.6.0.0</Version>
|
||||||
<RepositoryUrl>https://github.com/CodeDevMLH/Jellyfin-Seasonals</RepositoryUrl>
|
<RepositoryUrl>https://github.com/CodeDevMLH/Jellyfin-Seasonals</RepositoryUrl>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
|
||||||
|
|||||||
@@ -60,6 +60,7 @@ observer.observe(document.body, {
|
|||||||
attributes: true // observe changes to attributes (e.g. class changes)
|
attributes: true // observe changes to attributes (e.g. class changes)
|
||||||
});
|
});
|
||||||
|
|
||||||
|
let resizeObserver; // Observer for resize events
|
||||||
|
|
||||||
function initializeCanvas() {
|
function initializeCanvas() {
|
||||||
if (document.getElementById('snowfallCanvas')) {
|
if (document.getElementById('snowfallCanvas')) {
|
||||||
@@ -78,8 +79,12 @@ function initializeCanvas() {
|
|||||||
container.appendChild(canvas);
|
container.appendChild(canvas);
|
||||||
ctx = canvas.getContext('2d');
|
ctx = canvas.getContext('2d');
|
||||||
|
|
||||||
|
// Initial resize
|
||||||
resizeCanvas(container);
|
resizeCanvas(container);
|
||||||
window.addEventListener('resize', () => resizeCanvas(container));
|
|
||||||
|
// Initialize ResizeObserver
|
||||||
|
resizeObserver = new ResizeObserver(() => resizeCanvas(container));
|
||||||
|
resizeObserver.observe(container);
|
||||||
}
|
}
|
||||||
|
|
||||||
function removeCanvas() {
|
function removeCanvas() {
|
||||||
@@ -96,15 +101,37 @@ function removeCanvas() {
|
|||||||
animationFrameIdSanta = null;
|
animationFrameIdSanta = null;
|
||||||
console.log('Santa animation frame canceled');
|
console.log('Santa animation frame canceled');
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Disconnect ResizeObserver
|
||||||
|
if (resizeObserver) {
|
||||||
|
resizeObserver.disconnect();
|
||||||
|
resizeObserver = null;
|
||||||
|
}
|
||||||
|
|
||||||
console.log('Canvas removed');
|
console.log('Canvas removed');
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
function resizeCanvas(container) {
|
function resizeCanvas(container) {
|
||||||
if (!canvas) return;
|
if (!canvas) return;
|
||||||
|
|
||||||
|
const oldWidth = canvas.width;
|
||||||
|
const oldHeight = canvas.height;
|
||||||
|
|
||||||
const rect = container.getBoundingClientRect();
|
const rect = container.getBoundingClientRect();
|
||||||
canvas.width = rect.width;
|
canvas.width = rect.width;
|
||||||
canvas.height = rect.height;
|
canvas.height = rect.height;
|
||||||
|
|
||||||
|
// Scale snowflakes positions if dimensions changed (to avoid clustering)
|
||||||
|
if (oldWidth > 0 && oldHeight > 0 && snowflakes.length > 0) {
|
||||||
|
const scaleX = canvas.width / oldWidth;
|
||||||
|
const scaleY = canvas.height / oldHeight;
|
||||||
|
|
||||||
|
snowflakes.forEach(flake => {
|
||||||
|
flake.x *= scaleX;
|
||||||
|
flake.y *= scaleY;
|
||||||
|
});
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
function createSnowflakes(container) {
|
function createSnowflakes(container) {
|
||||||
|
|||||||
@@ -99,12 +99,21 @@ function determineCurrentTheme() {
|
|||||||
return 'none'; // Fallback (nothing)
|
return 'none'; // Fallback (nothing)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// helper to resolve paths for local testing vs production
|
||||||
|
function resolvePath(path) {
|
||||||
|
if (window.location.protocol === 'file:' || window.location.hostname === 'localhost' || window.location.hostname === '127.0.0.1') {
|
||||||
|
return path.replace('/Seasonals/Resources/', './');
|
||||||
|
}
|
||||||
|
return path;
|
||||||
|
}
|
||||||
|
|
||||||
// load theme csss
|
// load theme csss
|
||||||
function loadThemeCSS(cssPath) {
|
function loadThemeCSS(cssPath) {
|
||||||
if (!cssPath) return;
|
if (!cssPath) return;
|
||||||
|
|
||||||
const link = document.createElement('link');
|
const link = document.createElement('link');
|
||||||
link.rel = 'stylesheet';
|
link.rel = 'stylesheet';
|
||||||
|
// link.href = resolvePath(cssPath);
|
||||||
link.href = cssPath;
|
link.href = cssPath;
|
||||||
|
|
||||||
link.onerror = () => {
|
link.onerror = () => {
|
||||||
@@ -121,6 +130,7 @@ function loadThemeJS(jsPath) {
|
|||||||
|
|
||||||
const script = document.createElement('script');
|
const script = document.createElement('script');
|
||||||
script.src = jsPath;
|
script.src = jsPath;
|
||||||
|
// script.src = resolvePath(jsPath);
|
||||||
script.defer = true;
|
script.defer = true;
|
||||||
|
|
||||||
script.onerror = () => {
|
script.onerror = () => {
|
||||||
@@ -145,14 +155,24 @@ function updateThemeContainer(containerClass) {
|
|||||||
console.log(`Seasonals-Container class updated to "${containerClass}".`);
|
console.log(`Seasonals-Container class updated to "${containerClass}".`);
|
||||||
}
|
}
|
||||||
|
|
||||||
function removeSelf() {
|
// function removeSelf() {
|
||||||
const script = document.currentScript;
|
// const script = document.currentScript;
|
||||||
if (script) script.parentNode.removeChild(script);
|
// if (script) script.parentNode.removeChild(script);
|
||||||
console.log('External script removed:', script);
|
// console.log('External script removed:', script);
|
||||||
}
|
// }
|
||||||
|
|
||||||
// initialize theme
|
// initialize theme
|
||||||
async function initializeTheme() {
|
async function initializeTheme() {
|
||||||
|
|
||||||
|
// Check local user preference
|
||||||
|
const isEnabled = getSavedSetting('seasonals-enabled', 'true') === 'true';
|
||||||
|
if (!isEnabled) {
|
||||||
|
console.log('Seasonals disabled by user preference.');
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
const forcedTheme = getSavedSetting('seasonals-theme', 'auto');
|
||||||
|
|
||||||
let automateThemeSelection = true;
|
let automateThemeSelection = true;
|
||||||
let defaultTheme = 'none';
|
let defaultTheme = 'none';
|
||||||
|
|
||||||
@@ -172,7 +192,11 @@ async function initializeTheme() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
let currentTheme;
|
let currentTheme;
|
||||||
if (automateThemeSelection === false) {
|
|
||||||
|
if (forcedTheme !== 'auto') {
|
||||||
|
currentTheme = forcedTheme;
|
||||||
|
console.log(`User forced theme: ${currentTheme}`);
|
||||||
|
} else if (automateThemeSelection === false) {
|
||||||
currentTheme = defaultTheme;
|
currentTheme = defaultTheme;
|
||||||
} else {
|
} else {
|
||||||
currentTheme = determineCurrentTheme();
|
currentTheme = determineCurrentTheme();
|
||||||
@@ -182,7 +206,6 @@ async function initializeTheme() {
|
|||||||
|
|
||||||
if (!currentTheme || currentTheme === 'none') {
|
if (!currentTheme || currentTheme === 'none') {
|
||||||
console.log('No theme selected.');
|
console.log('No theme selected.');
|
||||||
removeSelf();
|
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -198,9 +221,168 @@ async function initializeTheme() {
|
|||||||
if (theme.js) loadThemeJS(theme.js);
|
if (theme.js) loadThemeJS(theme.js);
|
||||||
|
|
||||||
console.log(`Theme "${currentTheme}" loaded.`);
|
console.log(`Theme "${currentTheme}" loaded.`);
|
||||||
|
|
||||||
removeSelf();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
initializeTheme();
|
initializeTheme();
|
||||||
|
|
||||||
|
|
||||||
|
// User UI Seasonal Settings
|
||||||
|
|
||||||
|
function getSavedSetting(key, defaultValue) {
|
||||||
|
const value = localStorage.getItem(key);
|
||||||
|
return value !== null ? value : defaultValue;
|
||||||
|
}
|
||||||
|
|
||||||
|
function setSavedSetting(key, value) {
|
||||||
|
localStorage.setItem(key, value);
|
||||||
|
}
|
||||||
|
|
||||||
|
function createSettingsIcon() {
|
||||||
|
const button = document.createElement('button');
|
||||||
|
button.type = 'button';
|
||||||
|
button.className = 'paper-icon-button-light headerButton seasonal-settings-button';
|
||||||
|
button.title = 'Seasonal Settings';
|
||||||
|
button.innerHTML = '<span class="material-icons">ac_unit</span>';
|
||||||
|
button.style.verticalAlign = 'middle';
|
||||||
|
|
||||||
|
button.addEventListener('click', (e) => {
|
||||||
|
e.stopPropagation();
|
||||||
|
toggleSettingsPopup(button);
|
||||||
|
});
|
||||||
|
|
||||||
|
return button;
|
||||||
|
}
|
||||||
|
|
||||||
|
function createSettingsPopup(anchorElement) {
|
||||||
|
const existing = document.querySelector('.seasonal-settings-popup');
|
||||||
|
if (existing) existing.remove();
|
||||||
|
|
||||||
|
const popup = document.createElement('div');
|
||||||
|
popup.className = 'seasonal-settings-popup dialog';
|
||||||
|
|
||||||
|
Object.assign(popup.style, {
|
||||||
|
position: 'fixed',
|
||||||
|
zIndex: '10000',
|
||||||
|
backgroundColor: '#202020',
|
||||||
|
padding: '1em',
|
||||||
|
borderRadius: '4px',
|
||||||
|
boxShadow: '0 0 20px rgba(0,0,0,0.5)',
|
||||||
|
minWidth: '200px',
|
||||||
|
color: '#fff'
|
||||||
|
});
|
||||||
|
|
||||||
|
const rect = anchorElement.getBoundingClientRect();
|
||||||
|
popup.style.top = `${rect.bottom + 10}px`;
|
||||||
|
popup.style.right = `${window.innerWidth - rect.right}px`;
|
||||||
|
|
||||||
|
const enabledContainer = document.createElement('div');
|
||||||
|
enabledContainer.style.marginBottom = '1em';
|
||||||
|
enabledContainer.style.display = 'flex';
|
||||||
|
enabledContainer.style.alignItems = 'center';
|
||||||
|
enabledContainer.style.justifyContent = 'space-between';
|
||||||
|
|
||||||
|
const enabledLabel = document.createElement('label');
|
||||||
|
enabledLabel.textContent = 'Enable Seasonals';
|
||||||
|
enabledLabel.style.marginRight = '10px';
|
||||||
|
|
||||||
|
const enabledCheckbox = document.createElement('input');
|
||||||
|
enabledCheckbox.type = 'checkbox';
|
||||||
|
enabledCheckbox.checked = getSavedSetting('seasonals-enabled', 'true') === 'true';
|
||||||
|
enabledCheckbox.addEventListener('change', (e) => {
|
||||||
|
setSavedSetting('seasonals-enabled', e.target.checked);
|
||||||
|
location.reload();
|
||||||
|
});
|
||||||
|
|
||||||
|
enabledContainer.appendChild(enabledLabel);
|
||||||
|
enabledContainer.appendChild(enabledCheckbox);
|
||||||
|
popup.appendChild(enabledContainer);
|
||||||
|
|
||||||
|
// Theme Selector
|
||||||
|
const themeContainer = document.createElement('div');
|
||||||
|
themeContainer.style.display = 'flex';
|
||||||
|
themeContainer.style.flexDirection = 'column';
|
||||||
|
|
||||||
|
const themeLabel = document.createElement('label');
|
||||||
|
themeLabel.textContent = 'Force Theme';
|
||||||
|
themeLabel.style.marginBottom = '0.5em';
|
||||||
|
|
||||||
|
const themeSelect = document.createElement('select');
|
||||||
|
themeSelect.style.width = '100%';
|
||||||
|
themeSelect.style.padding = '0.5em';
|
||||||
|
themeSelect.style.backgroundColor = '#333';
|
||||||
|
themeSelect.style.color = '#fff';
|
||||||
|
themeSelect.style.border = '1px solid #444';
|
||||||
|
themeSelect.style.borderRadius = '4px';
|
||||||
|
|
||||||
|
// Add Auto option
|
||||||
|
const autoOption = document.createElement('option');
|
||||||
|
autoOption.value = 'auto';
|
||||||
|
autoOption.textContent = 'Auto (Date Based)';
|
||||||
|
themeSelect.appendChild(autoOption);
|
||||||
|
|
||||||
|
// Add available themes
|
||||||
|
Object.keys(themeConfigs).forEach(key => {
|
||||||
|
if (key === 'none') return;
|
||||||
|
const option = document.createElement('option');
|
||||||
|
option.value = key;
|
||||||
|
// Capitalize first letter
|
||||||
|
option.textContent = key.charAt(0).toUpperCase() + key.slice(1);
|
||||||
|
themeSelect.appendChild(option);
|
||||||
|
});
|
||||||
|
|
||||||
|
// Set current value
|
||||||
|
themeSelect.value = getSavedSetting('seasonals-theme', 'auto');
|
||||||
|
|
||||||
|
themeSelect.addEventListener('change', (e) => {
|
||||||
|
setSavedSetting('seasonals-theme', e.target.value);
|
||||||
|
location.reload();
|
||||||
|
});
|
||||||
|
|
||||||
|
themeContainer.appendChild(themeLabel);
|
||||||
|
themeContainer.appendChild(themeSelect);
|
||||||
|
popup.appendChild(themeContainer);
|
||||||
|
|
||||||
|
// Close on click outside
|
||||||
|
const closeHandler = (e) => {
|
||||||
|
if (!popup.contains(e.target) && e.target !== anchorElement && !anchorElement.contains(e.target)) {
|
||||||
|
popup.remove();
|
||||||
|
document.removeEventListener('click', closeHandler);
|
||||||
|
}
|
||||||
|
};
|
||||||
|
setTimeout(() => document.addEventListener('click', closeHandler), 0);
|
||||||
|
|
||||||
|
document.body.appendChild(popup);
|
||||||
|
}
|
||||||
|
|
||||||
|
function toggleSettingsPopup(anchorElement) {
|
||||||
|
const existing = document.querySelector('.seasonal-settings-popup');
|
||||||
|
if (existing) {
|
||||||
|
existing.remove();
|
||||||
|
} else {
|
||||||
|
createSettingsPopup(anchorElement);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
function injectSettingsIcon() {
|
||||||
|
const observer = new MutationObserver((mutations, obs) => {
|
||||||
|
// Check if admin has enabled this feature
|
||||||
|
if (window.SeasonalsPluginConfig && window.SeasonalsPluginConfig.EnableClientSideToggle === false) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
const headerRight = document.querySelector('.headerRight');
|
||||||
|
if (headerRight && !document.querySelector('.seasonal-settings-button')) {
|
||||||
|
const icon = createSettingsIcon();
|
||||||
|
headerRight.prepend(icon);
|
||||||
|
// obs.disconnect();
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
observer.observe(document.body, {
|
||||||
|
childList: true,
|
||||||
|
subtree: true
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
injectSettingsIcon();
|
||||||
|
|||||||
@@ -55,6 +55,7 @@ observer.observe(document.body, {
|
|||||||
attributes: true // observe changes to attributes (e.g. class changes)
|
attributes: true // observe changes to attributes (e.g. class changes)
|
||||||
});
|
});
|
||||||
|
|
||||||
|
let resizeObserver; // Observer for resize events
|
||||||
|
|
||||||
function initializeCanvas() {
|
function initializeCanvas() {
|
||||||
if (document.getElementById('snowfallCanvas')) {
|
if (document.getElementById('snowfallCanvas')) {
|
||||||
@@ -73,8 +74,12 @@ function initializeCanvas() {
|
|||||||
container.appendChild(canvas);
|
container.appendChild(canvas);
|
||||||
ctx = canvas.getContext('2d');
|
ctx = canvas.getContext('2d');
|
||||||
|
|
||||||
|
// Initial resize
|
||||||
resizeCanvas(container);
|
resizeCanvas(container);
|
||||||
window.addEventListener('resize', () => resizeCanvas(container));
|
|
||||||
|
// Initialize ResizeObserver
|
||||||
|
resizeObserver = new ResizeObserver(() => resizeCanvas(container));
|
||||||
|
resizeObserver.observe(container);
|
||||||
}
|
}
|
||||||
|
|
||||||
function removeCanvas() {
|
function removeCanvas() {
|
||||||
@@ -86,15 +91,37 @@ function removeCanvas() {
|
|||||||
animationFrameId = null;
|
animationFrameId = null;
|
||||||
console.log('Animation frame canceled');
|
console.log('Animation frame canceled');
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Disconnect ResizeObserver
|
||||||
|
if (resizeObserver) {
|
||||||
|
resizeObserver.disconnect();
|
||||||
|
resizeObserver = null;
|
||||||
|
}
|
||||||
|
|
||||||
console.log('Canvas removed');
|
console.log('Canvas removed');
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
function resizeCanvas(container) {
|
function resizeCanvas(container) {
|
||||||
if (!canvas) return;
|
if (!canvas) return;
|
||||||
|
|
||||||
|
const oldWidth = canvas.width;
|
||||||
|
const oldHeight = canvas.height;
|
||||||
|
|
||||||
const rect = container.getBoundingClientRect();
|
const rect = container.getBoundingClientRect();
|
||||||
canvas.width = rect.width;
|
canvas.width = rect.width;
|
||||||
canvas.height = rect.height;
|
canvas.height = rect.height;
|
||||||
|
|
||||||
|
// Scale snowflakes positions if dimensions changed (to avoid clustering)
|
||||||
|
if (oldWidth > 0 && oldHeight > 0 && snowflakes.length > 0) {
|
||||||
|
const scaleX = canvas.width / oldWidth;
|
||||||
|
const scaleY = canvas.height / oldHeight;
|
||||||
|
|
||||||
|
snowflakes.forEach(flake => {
|
||||||
|
flake.x *= scaleX;
|
||||||
|
flake.y *= scaleY;
|
||||||
|
});
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
function createSnowflakes(container) {
|
function createSnowflakes(container) {
|
||||||
|
|||||||
@@ -57,6 +57,7 @@ observer.observe(document.body, {
|
|||||||
attributes: true // observe changes to attributes (e.g. class changes)
|
attributes: true // observe changes to attributes (e.g. class changes)
|
||||||
});
|
});
|
||||||
|
|
||||||
|
let resizeObserver; // Observer for resize events
|
||||||
|
|
||||||
function initializeCanvas() {
|
function initializeCanvas() {
|
||||||
if (document.getElementById('snowfallCanvas')) {
|
if (document.getElementById('snowfallCanvas')) {
|
||||||
@@ -75,8 +76,12 @@ function initializeCanvas() {
|
|||||||
container.appendChild(canvas);
|
container.appendChild(canvas);
|
||||||
ctx = canvas.getContext('2d');
|
ctx = canvas.getContext('2d');
|
||||||
|
|
||||||
|
// Initial resize
|
||||||
resizeCanvas(container);
|
resizeCanvas(container);
|
||||||
window.addEventListener('resize', () => resizeCanvas(container));
|
|
||||||
|
// Initialize ResizeObserver
|
||||||
|
resizeObserver = new ResizeObserver(() => resizeCanvas(container));
|
||||||
|
resizeObserver.observe(container);
|
||||||
}
|
}
|
||||||
|
|
||||||
function removeCanvas() {
|
function removeCanvas() {
|
||||||
@@ -88,15 +93,37 @@ function removeCanvas() {
|
|||||||
animationFrameId = null;
|
animationFrameId = null;
|
||||||
console.log('Animation frame canceled');
|
console.log('Animation frame canceled');
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Disconnect ResizeObserver
|
||||||
|
if (resizeObserver) {
|
||||||
|
resizeObserver.disconnect();
|
||||||
|
resizeObserver = null;
|
||||||
|
}
|
||||||
|
|
||||||
console.log('Canvas removed');
|
console.log('Canvas removed');
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
function resizeCanvas(container) {
|
function resizeCanvas(container) {
|
||||||
if (!canvas) return;
|
if (!canvas) return;
|
||||||
|
|
||||||
|
const oldWidth = canvas.width;
|
||||||
|
const oldHeight = canvas.height;
|
||||||
|
|
||||||
const rect = container.getBoundingClientRect();
|
const rect = container.getBoundingClientRect();
|
||||||
canvas.width = rect.width;
|
canvas.width = rect.width;
|
||||||
canvas.height = rect.height;
|
canvas.height = rect.height;
|
||||||
|
|
||||||
|
// Scale snowflakes positions if dimensions changed (to avoid clustering)
|
||||||
|
if (oldWidth > 0 && oldHeight > 0 && snowflakes.length > 0) {
|
||||||
|
const scaleX = canvas.width / oldWidth;
|
||||||
|
const scaleY = canvas.height / oldHeight;
|
||||||
|
|
||||||
|
snowflakes.forEach(flake => {
|
||||||
|
flake.x *= scaleX;
|
||||||
|
flake.y *= scaleY;
|
||||||
|
});
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
function createSnowflakes(container) {
|
function createSnowflakes(container) {
|
||||||
|
|||||||
79
Jellyfin.Plugin.Seasonals/Web/test-site-new.html
Normal file
79
Jellyfin.Plugin.Seasonals/Web/test-site-new.html
Normal file
@@ -0,0 +1,79 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en">
|
||||||
|
|
||||||
|
<head>
|
||||||
|
<meta charset="UTF-8">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||||
|
<title>Seasonals Test Display</title>
|
||||||
|
<link rel="stylesheet" href="snowfall.css">
|
||||||
|
<style>
|
||||||
|
body {
|
||||||
|
background-color: black;
|
||||||
|
color: white;
|
||||||
|
margin: 0;
|
||||||
|
font-family: sans-serif;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Mock Jellyfin Header */
|
||||||
|
.skinHeader {
|
||||||
|
background-color: #101010;
|
||||||
|
height: 60px;
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
padding: 0 1em;
|
||||||
|
border-bottom: 1px solid #333;
|
||||||
|
}
|
||||||
|
|
||||||
|
.headerRight {
|
||||||
|
margin-left: auto;
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
.paper-icon-button-light {
|
||||||
|
background: none;
|
||||||
|
border: none;
|
||||||
|
color: white;
|
||||||
|
cursor: pointer;
|
||||||
|
padding: 10px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.material-icons {
|
||||||
|
font-family: 'Material Icons';
|
||||||
|
/* Placeholder if not loaded */
|
||||||
|
font-weight: normal;
|
||||||
|
font-style: normal;
|
||||||
|
font-size: 24px;
|
||||||
|
display: inline-block;
|
||||||
|
line-height: 1;
|
||||||
|
text-transform: none;
|
||||||
|
letter-spacing: normal;
|
||||||
|
word-wrap: normal;
|
||||||
|
white-space: nowrap;
|
||||||
|
direction: ltr;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
<!-- Load Material Icons for the snowflake -->
|
||||||
|
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
|
||||||
|
</head>
|
||||||
|
|
||||||
|
<body>
|
||||||
|
<!-- Mock Header Structure -->
|
||||||
|
<div class="skinHeader">
|
||||||
|
<div class="skinHeader-content">
|
||||||
|
<span>Jellyfin Mock Header</span>
|
||||||
|
</div>
|
||||||
|
<div class="headerRight">
|
||||||
|
<button class="paper-icon-button-light">
|
||||||
|
<span class="material-icons">person</span>
|
||||||
|
</button>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="seasonals-container"></div>
|
||||||
|
|
||||||
|
<!-- Load the main script -->
|
||||||
|
<script src="seasonals.js"></script>
|
||||||
|
</body>
|
||||||
|
|
||||||
|
</html>
|
||||||
15
build.yaml
15
build.yaml
@@ -1,15 +0,0 @@
|
|||||||
---
|
|
||||||
name: "Seasonals"
|
|
||||||
guid: "ef1e863f-cbb0-4e47-9f23-f0cbb1826ad4"
|
|
||||||
version: "1.3.4.0"
|
|
||||||
targetAbi: "10.11.0.0"
|
|
||||||
framework: "net9.0"
|
|
||||||
overview: "Seasonal effects for Jellyfin"
|
|
||||||
description: >
|
|
||||||
Adds seasonal effects like snow, leaves, etc. to the Jellyfin web interface.
|
|
||||||
category: "General"
|
|
||||||
owner: "CodeDevMLH"
|
|
||||||
artifacts:
|
|
||||||
- "Jellyfin.Plugin.Seasonals.dll"
|
|
||||||
changelog: >
|
|
||||||
Added Advanced Configuration UI for customizing individual seasonal effects.
|
|
||||||
150
manifest.json
150
manifest.json
@@ -2,19 +2,35 @@
|
|||||||
{
|
{
|
||||||
"guid": "ef1e863f-cbb0-4e47-9f23-f0cbb1826ad4",
|
"guid": "ef1e863f-cbb0-4e47-9f23-f0cbb1826ad4",
|
||||||
"name": "Seasonals",
|
"name": "Seasonals",
|
||||||
"description": "Adds seasonal effects like snow, leaves, etc. to the Jellyfin web interface.",
|
"description": "Adds atmospheric, animated seasonal effects like snow, falling leaves, hearts, fireworks and more. The plugin provides a settings page for configuration. If you do not have write permissions to the web folder, please also install the file-transformation plugin.",
|
||||||
"overview": "Seasonal effects for Jellyfin",
|
"overview": "Atmospheric, configurable seasonal effects for the Jellyfin web interface",
|
||||||
"owner": "CodeDevMLH",
|
"owner": "CodeDevMLH",
|
||||||
"category": "General",
|
"category": "General",
|
||||||
"imageUrl": "https://git.mahom03-spacecloud.de/CodeDevMLH/Jellyfin-Seasonals-Plugin/raw/branch/main/logo.png",
|
"imageUrl": "https://git.mahom03-spacecloud.de/CodeDevMLH/Jellyfin-Seasonals-Plugin/raw/branch/main/logo.png",
|
||||||
"versions": [
|
"versions": [
|
||||||
|
{
|
||||||
|
"version": "1.6.0.0",
|
||||||
|
"changelog": "- feat: Add client-side toggle option for seasonal settings",
|
||||||
|
"targetAbi": "10.11.0.0",
|
||||||
|
"sourceUrl": "https://git.mahom03-spacecloud.de/CodeDevMLH/Jellyfin-Seasonals-Plugin/releases/download/v1.6.0.0/Jellyfin.Plugin.Seasonals.zip",
|
||||||
|
"checksum": "9b66d6f1c03b284ac9fe7e87540f7759",
|
||||||
|
"timestamp": "2026-02-03T17:49:05Z"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"version": "1.5.1.0",
|
||||||
|
"changelog": "- fix: snowfall effect sometimes not scaling on window resize, which leads to clustering and rain effect of snowflakes",
|
||||||
|
"targetAbi": "10.11.0.0",
|
||||||
|
"sourceUrl": "https://git.mahom03-spacecloud.de/CodeDevMLH/Jellyfin-Seasonals-Plugin/releases/download/v1.5.1.0/Jellyfin.Plugin.Seasonals.zip",
|
||||||
|
"checksum": "a66b5c24c1f4bfff14bba5e93576bb80",
|
||||||
|
"timestamp": "2026-01-28T22:40:49Z"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"version": "1.5.0.0",
|
"version": "1.5.0.0",
|
||||||
"changelog": "- Refactor SeasonalsPlugin: Simplify script injection logic",
|
"changelog": "- Refactor script injection logic",
|
||||||
"targetAbi": "10.11.0.0",
|
"targetAbi": "10.11.0.0",
|
||||||
"sourceUrl": "https://git.mahom03-spacecloud.de/CodeDevMLH/Jellyfin-Seasonals-Plugin/releases/download/v1.5.0.0/Jellyfin.Plugin.Seasonals.zip",
|
"sourceUrl": "https://git.mahom03-spacecloud.de/CodeDevMLH/Jellyfin-Seasonals-Plugin/releases/download/v1.5.0.0/Jellyfin.Plugin.Seasonals.zip",
|
||||||
"checksum": "fa174c764164b0524fb2e8f11ffbcace",
|
"checksum": "ba8d3c358df3e0546b99113b43f54fea",
|
||||||
"timestamp": "2026-01-06T22:21:49Z"
|
"timestamp": "2026-01-08T23:31:52Z"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"version": "1.4.1.0",
|
"version": "1.4.1.0",
|
||||||
@@ -85,12 +101,132 @@
|
|||||||
{
|
{
|
||||||
"guid": "d7e11d57-819b-4bdd-a88d-53c5f5560225",
|
"guid": "d7e11d57-819b-4bdd-a88d-53c5f5560225",
|
||||||
"name": "Media Bar Enhanced",
|
"name": "Media Bar Enhanced",
|
||||||
"description": "A jellyfin plugin to display a media bar (featured content) for jellyfin web.",
|
"description": "A feature-rich fork of the original Media Bar script by MakD that brings your home screen to life.\n\n-> 100% Configurable via Web UI: Manage all features, lists, and settings effortlessly through the plugin configuration page.\n\nKey Highlights:\n- Cinematic Video Backdrops: Supports local & YouTube trailers (incl. SponsorBlock)\n- Custom Content: Curate your slideshow with specific Collections, Playlists, or seasonal events\n\nAdditional Features:\n- Full-width immersive mode\n- Smart resolution handling (up to 4K)\n- Full keyboard navigation & playback control\n- Wait-for-trailer options\n- Customizable pagination & animations\n\nIf you do not have write permissions to the web folder, please also install the file-transformation plugin.",
|
||||||
"overview": "Media Bar for Jellyfin",
|
"overview": "Transforms your Jellyfin home screen with an immersive, fully configurable media slideshow featuring video backdrops.",
|
||||||
"owner": "CodeDevMLH",
|
"owner": "CodeDevMLH",
|
||||||
"category": "General",
|
"category": "General",
|
||||||
"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.2.3.7",
|
||||||
|
"changelog": "- Fixes the issue where buttons were cut off on smaller screens such as on S24/S25.\n- Update mediaBarEnhanced.js and mediaBarEnhanced.css with version 3.0.9 from original repo",
|
||||||
|
"targetAbi": "10.11.0.0",
|
||||||
|
"sourceUrl": "https://git.mahom03-spacecloud.de/CodeDevMLH/jellyfin-plugin-media-bar-enhanced/releases/download/v1.2.3.7/Jellyfin.Plugin.MediaBarEnhanced.zip",
|
||||||
|
"checksum": "fa1bf48cff159cc7dbf0aab48511a37c",
|
||||||
|
"timestamp": "2026-01-28T22:39:54Z"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"version": "1.2.3.6",
|
||||||
|
"changelog": "- Fixes the issue where buttons were cut off on smaller screens such as on S24/S25.",
|
||||||
|
"targetAbi": "10.11.0.0",
|
||||||
|
"sourceUrl": "https://git.mahom03-spacecloud.de/CodeDevMLH/jellyfin-plugin-media-bar-enhanced/releases/download/v1.2.3.6/Jellyfin.Plugin.MediaBarEnhanced.zip",
|
||||||
|
"checksum": "da73bb490548c122906419d2762a2d00",
|
||||||
|
"timestamp": "2026-01-28T21:31:54Z"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"version": "1.2.3.5",
|
||||||
|
"changelog": "- Fixes the issue where buttons were cut off on smaller screens such as on S24/S25.",
|
||||||
|
"targetAbi": "10.11.0.0",
|
||||||
|
"sourceUrl": "https://git.mahom03-spacecloud.de/CodeDevMLH/jellyfin-plugin-media-bar-enhanced/releases/download/v1.2.3.5/Jellyfin.Plugin.MediaBarEnhanced.zip",
|
||||||
|
"checksum": "b5efea79ec465522dad31e4ee5f1710c",
|
||||||
|
"timestamp": "2026-01-28T20:21:20Z"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"version": "1.2.3.4",
|
||||||
|
"changelog": "- Fixes the issue where buttons were cut off on smaller screens such as on S24/S25.",
|
||||||
|
"targetAbi": "10.11.0.0",
|
||||||
|
"sourceUrl": "https://git.mahom03-spacecloud.de/CodeDevMLH/jellyfin-plugin-media-bar-enhanced/releases/download/v1.2.3.4/Jellyfin.Plugin.MediaBarEnhanced.zip",
|
||||||
|
"checksum": "4683f75e2df2590db663303bdd329ccd",
|
||||||
|
"timestamp": "2026-01-28T01:09:38Z"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"version": "1.2.3.3",
|
||||||
|
"changelog": "- Fixes the issue where buttons were cut off on smaller screens such as on S24/S25.",
|
||||||
|
"targetAbi": "10.11.0.0",
|
||||||
|
"sourceUrl": "https://git.mahom03-spacecloud.de/CodeDevMLH/jellyfin-plugin-media-bar-enhanced/releases/download/v1.2.3.3/Jellyfin.Plugin.MediaBarEnhanced.zip",
|
||||||
|
"checksum": "3c18a84b2f59c86c130e91da83f980a2",
|
||||||
|
"timestamp": "2026-01-28T01:05:45Z"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"version": "1.2.3.2",
|
||||||
|
"changelog": "- Fixes the issue where buttons were cut off on smaller screens such as on S24/S25.",
|
||||||
|
"targetAbi": "10.11.0.0",
|
||||||
|
"sourceUrl": "https://git.mahom03-spacecloud.de/CodeDevMLH/jellyfin-plugin-media-bar-enhanced/releases/download/v1.2.3.2/Jellyfin.Plugin.MediaBarEnhanced.zip",
|
||||||
|
"checksum": "4109a3ea10eb3145217b24ee8f8b37b5",
|
||||||
|
"timestamp": "2026-01-28T00:30:36Z"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"version": "1.2.3.1",
|
||||||
|
"changelog": "- Fixes the issue where buttons were cut off on smaller screens such as on S24/S25.",
|
||||||
|
"targetAbi": "10.11.0.0",
|
||||||
|
"sourceUrl": "https://git.mahom03-spacecloud.de/CodeDevMLH/jellyfin-plugin-media-bar-enhanced/releases/download/v1.2.3.1/Jellyfin.Plugin.MediaBarEnhanced.zip",
|
||||||
|
"checksum": "e73029ac767e24d36742a27678758b6f",
|
||||||
|
"timestamp": "2026-01-28T00:17:28Z"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"version": "1.2.3.0",
|
||||||
|
"changelog": "- Fixes the issue where buttons were cut off on smaller screens such as on S24/S25.",
|
||||||
|
"targetAbi": "10.11.0.0",
|
||||||
|
"sourceUrl": "https://git.mahom03-spacecloud.de/CodeDevMLH/jellyfin-plugin-media-bar-enhanced/releases/download/v1.2.3.0/Jellyfin.Plugin.MediaBarEnhanced.zip",
|
||||||
|
"checksum": "ae6f34bee76f9d7873964a71ca191bf3",
|
||||||
|
"timestamp": "2026-01-27T23:54:42Z"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"version": "1.2.2.0",
|
||||||
|
"changelog": "- Fixes issues with persistent slides-container visibility",
|
||||||
|
"targetAbi": "10.11.0.0",
|
||||||
|
"sourceUrl": "https://git.mahom03-spacecloud.de/CodeDevMLH/jellyfin-plugin-media-bar-enhanced/releases/download/v1.2.2.0/Jellyfin.Plugin.MediaBarEnhanced.zip",
|
||||||
|
"checksum": "3362f93815845c4e85b66b31bcd0f52c",
|
||||||
|
"timestamp": "2026-01-24T22:53:55Z"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"version": "1.2.1.0",
|
||||||
|
"changelog": "- Update mediaBarEnhanced.js and mediaBarEnhanced.css with version 3.0.8 from original repo",
|
||||||
|
"targetAbi": "10.11.0.0",
|
||||||
|
"sourceUrl": "https://git.mahom03-spacecloud.de/CodeDevMLH/jellyfin-plugin-media-bar-enhanced/releases/download/v1.2.1.0/Jellyfin.Plugin.MediaBarEnhanced.zip",
|
||||||
|
"checksum": "70defc1fb29a17ff4c9362bf7bdc53b5",
|
||||||
|
"timestamp": "2026-01-22T23:50:56Z"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"version": "1.2.0.0",
|
||||||
|
"changelog": "- Add video quality preference setting (Auto / 1080p / Highres)\n- Set preferred video quality on YouTube player based on setting",
|
||||||
|
"targetAbi": "10.11.0.0",
|
||||||
|
"sourceUrl": "https://git.mahom03-spacecloud.de/CodeDevMLH/jellyfin-plugin-media-bar-enhanced/releases/download/v1.2.0.0/Jellyfin.Plugin.MediaBarEnhanced.zip",
|
||||||
|
"checksum": "0b6379f68990026240d97fe8f77fbef1",
|
||||||
|
"timestamp": "2026-01-08T23:30:58Z"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"version": "1.1.2.0",
|
||||||
|
"changelog": "- Add method to resume video playback when slideshow is active",
|
||||||
|
"targetAbi": "10.11.0.0",
|
||||||
|
"sourceUrl": "https://git.mahom03-spacecloud.de/CodeDevMLH/jellyfin-plugin-media-bar-enhanced/releases/download/v1.1.2.0/Jellyfin.Plugin.MediaBarEnhanced.zip",
|
||||||
|
"checksum": "a0e8ff5e59b22a1bdedc916cd5e1c16a",
|
||||||
|
"timestamp": "2026-01-08T15:26:55Z"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"version": "1.1.1.0",
|
||||||
|
"changelog": "- Add method to pause all video playback when navigating away from home screen",
|
||||||
|
"targetAbi": "10.11.0.0",
|
||||||
|
"sourceUrl": "https://git.mahom03-spacecloud.de/CodeDevMLH/jellyfin-plugin-media-bar-enhanced/releases/download/v1.1.1.0/Jellyfin.Plugin.MediaBarEnhanced.zip",
|
||||||
|
"checksum": "09da95fc561b11191d23a5cfa30ea731",
|
||||||
|
"timestamp": "2026-01-08T14:54:57Z"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"version": "1.1.0.0",
|
||||||
|
"changelog": "- 'custom media IDs' setting is now enabled by default (no input --> random selection)\n- improve GUID handling in slideshow manager to handle seperator and description",
|
||||||
|
"targetAbi": "10.11.0.0",
|
||||||
|
"sourceUrl": "https://git.mahom03-spacecloud.de/CodeDevMLH/jellyfin-plugin-media-bar-enhanced/releases/download/v1.1.0.0/Jellyfin.Plugin.MediaBarEnhanced.zip",
|
||||||
|
"checksum": "32305d72b8d704acf8eef0c22277fee9",
|
||||||
|
"timestamp": "2026-01-08T02:15:50Z"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"version": "1.0.0.3",
|
||||||
|
"changelog": "fixes",
|
||||||
|
"targetAbi": "10.11.0.0",
|
||||||
|
"sourceUrl": "https://git.mahom03-spacecloud.de/CodeDevMLH/jellyfin-plugin-media-bar-enhanced/releases/download/v1.0.0.3/Jellyfin.Plugin.MediaBarEnhanced.zip",
|
||||||
|
"checksum": "e6180c42836069029072e96ac4860c42",
|
||||||
|
"timestamp": "2026-01-06T23:26:29Z"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"version": "1.0.0.2",
|
"version": "1.0.0.2",
|
||||||
"changelog": "fixes",
|
"changelog": "fixes",
|
||||||
|
|||||||
Reference in New Issue
Block a user