Compare commits
84 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
9e52198ef7 | ||
|
|
b1943dfe17 | ||
|
|
c55e900c0f | ||
|
|
503e9addee | ||
|
|
d630fdd217 | ||
|
|
7e4a7c2a6e | ||
|
|
1716a771f3 | ||
|
|
36347cc4b0 | ||
|
|
7f94164e55 | ||
|
|
cbab7de546 | ||
|
|
d0de5cd021 | ||
|
|
16628e9902 | ||
|
|
72bfe0a14a | ||
|
|
6498ec4216 | ||
|
|
0d350fc76b | ||
|
|
2c6e4ce610 | ||
|
|
0c552774dc | ||
|
|
9ab605bb74 | ||
|
|
3d6cba0fe4 | ||
|
|
32e5e2b690 | ||
|
|
c967c1e308 | ||
|
|
ae28d5219b | ||
|
|
e4228f889e | ||
|
|
6d721c755e | ||
|
|
6948953778 | ||
|
|
8a50cef330 | ||
|
|
a0bf5370bd | ||
|
|
c5800b431d | ||
|
|
9a4056651d | ||
|
|
87382db78e | ||
|
|
5d9afa762f | ||
|
|
2f88587dab | ||
|
|
360a959b69 | ||
|
|
36fba545cf | ||
|
|
7faa2cc766 | ||
|
|
aa832e93aa | ||
|
|
86bbeb583d | ||
|
|
7a642b34b8 | ||
|
|
926b30b8ce | ||
|
|
5b672cef42 | ||
|
|
ceccbf4ded | ||
|
|
9cba2a0755 | ||
|
|
af036a9aa4 | ||
|
|
cfefd2d2d3 | ||
|
|
8e7299508b | ||
|
|
fc7aa36f41 | ||
|
|
fc9896048f | ||
|
|
572c4d9ace | ||
|
|
2572e085f6 | ||
|
|
8297f989fd | ||
|
|
636aaa2a4a | ||
|
|
5e70621e93 | ||
|
|
0b4434c51c | ||
|
|
dd6583c055 | ||
|
|
a0b0514159 | ||
|
|
e977c83e8f | ||
|
|
e281f5c579 | ||
|
|
e6b646e478 | ||
|
|
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 |
1
.gitignore
vendored
1
.gitignore
vendored
@@ -5,4 +5,5 @@ obj/
|
|||||||
artifacts
|
artifacts
|
||||||
|
|
||||||
test-site.html
|
test-site.html
|
||||||
|
test-site-new.html
|
||||||
RELEASE_GUIDE.md
|
RELEASE_GUIDE.md
|
||||||
@@ -62,6 +62,7 @@ public class SeasonalsController : ControllerBase
|
|||||||
if (path.EndsWith(".png", StringComparison.OrdinalIgnoreCase)) return "image/png";
|
if (path.EndsWith(".png", StringComparison.OrdinalIgnoreCase)) return "image/png";
|
||||||
if (path.EndsWith(".jpg", StringComparison.OrdinalIgnoreCase)) return "image/jpeg";
|
if (path.EndsWith(".jpg", StringComparison.OrdinalIgnoreCase)) return "image/jpeg";
|
||||||
if (path.EndsWith(".gif", StringComparison.OrdinalIgnoreCase)) return "image/gif";
|
if (path.EndsWith(".gif", StringComparison.OrdinalIgnoreCase)) return "image/gif";
|
||||||
|
if (path.EndsWith(".svg", StringComparison.OrdinalIgnoreCase)) return "image/svg+xml";
|
||||||
return "application/octet-stream";
|
return "application/octet-stream";
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -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; }
|
||||||
|
|||||||
@@ -18,7 +18,7 @@
|
|||||||
<a is="emby-linkbutton" class="raised raised-mini emby-button" style="margin-left: 2em;"
|
<a is="emby-linkbutton" class="raised raised-mini emby-button" style="margin-left: 2em;"
|
||||||
target="_blank" href="https://github.com/CodeDevMLH/Jellyfin-Seasonals">
|
target="_blank" href="https://github.com/CodeDevMLH/Jellyfin-Seasonals">
|
||||||
<i class="md-icon button-icon button-icon-left secondaryText"></i>
|
<i class="md-icon button-icon button-icon-left secondaryText"></i>
|
||||||
<span>Help</span>
|
<span>${Help}</span>
|
||||||
</a>
|
</a>
|
||||||
</div>
|
</div>
|
||||||
<hr style="max-width: 800px; margin: 1em 0;">
|
<hr style="max-width: 800px; margin: 1em 0;">
|
||||||
@@ -40,7 +40,7 @@
|
|||||||
</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 id="SelectedSeason" name="SelectedSeason" class="emby-select" style="width: 100%; padding: 0.5em; background-color: #333; border: 1px solid #444; color: #fff; border-radius: 4px;">
|
||||||
<option value="none">None</option>
|
<option value="none">None</option>
|
||||||
<option value="snowflakes">Snowflakes</option>
|
<option value="snowflakes">Snowflakes</option>
|
||||||
<option value="snowfall">Snowfall</option>
|
<option value="snowfall">Snowfall</option>
|
||||||
@@ -52,17 +52,25 @@
|
|||||||
<option value="santa">Santa</option>
|
<option value="santa">Santa</option>
|
||||||
<option value="autumn">Autumn</option>
|
<option value="autumn">Autumn</option>
|
||||||
<option value="easter">Easter</option>
|
<option value="easter">Easter</option>
|
||||||
<option value="summer" disabled>Summer (not implemented yet, no idea for a theme. Please commit ideas in a issue)</option>
|
<option value="summer" disabled>Summer (not implemented yet. Please commit ideas in a issue or PR)</option>
|
||||||
<option value="spring" disabled>Spring (not implemented yet, no idea for a theme. Please commit ideas in a issue)</option>
|
<option value="spring" disabled>Spring (not implemented yet. Please commit ideas in a issue or PR)</option>
|
||||||
<option value="oktoberfest" disabled>Oktoberfest (not implemented yet, no idea for a theme. Please commit ideas in a issue)</option>
|
<option value="oktoberfest" disabled>Oktoberfest (not implemented yet. Please commit ideas in a issue or PR)</option>
|
||||||
<option value="carnival" disabled>Carnival (not implemented yet, no idea for a theme. Please commit ideas in a issue)</option>
|
<option value="carnival" disabled>Carnival (not implemented yet. Please commit ideas in a issue or PR)</option>
|
||||||
<option value="championships" disabled>European/World Championships (not implemented yet, no idea for a theme. Please commit ideas in a issue)</option>
|
<option value="championships" disabled>European/World Championships (not implemented yet. Please commit ideas in a issue or PR)</option>
|
||||||
<option value="patrick" disabled>St. Patrick's Day (not implemented yet, no idea for a theme. Please commit ideas in a issue)</option>
|
<option value="patrick" disabled>St. Patrick's Day (not implemented yet. Please commit ideas in a issue or PR)</option>
|
||||||
<option value="thanksgiving" disabled>Thanksgiving (not implemented yet, no idea for a theme. Please commit ideas in a issue)</option>
|
<option value="thanksgiving" disabled>Thanksgiving (not implemented yet. Please commit ideas in a issue or PR)</option>
|
||||||
<option value="pride" disabled>Pride (not implemented yet, no idea for a theme. Please commit ideas in a issue)</option>
|
<option value="pride" disabled>Pride (not implemented yet. Please commit ideas in a issue or PR)</option>
|
||||||
</select>
|
</select>
|
||||||
<div class="fieldDescription">The season to display if automation is disabled.</div>
|
<div class="fieldDescription">The season to display if automation is disabled.</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 seasonals icon in the header to toggle seasonals for their browser (device-specific).</div>
|
||||||
|
</div>
|
||||||
<br>
|
<br>
|
||||||
|
|
||||||
<details>
|
<details>
|
||||||
@@ -530,6 +538,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 +635,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.13.2</Version>
|
||||||
<RepositoryUrl>https://github.com/CodeDevMLH/Jellyfin-Seasonals</RepositoryUrl>
|
<RepositoryUrl>https://github.com/CodeDevMLH/Jellyfin-Seasonals</RepositoryUrl>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
|
||||||
|
|||||||
1343
Jellyfin.Plugin.Seasonals/Web/assets/logo_SW.svg
Normal file
1343
Jellyfin.Plugin.Seasonals/Web/assets/logo_SW.svg
Normal file
File diff suppressed because one or more lines are too long
|
After Width: | Height: | Size: 250 KiB |
BIN
Jellyfin.Plugin.Seasonals/Web/assets/logo_SW_192x192.png
Normal file
BIN
Jellyfin.Plugin.Seasonals/Web/assets/logo_SW_192x192.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 31 KiB |
BIN
Jellyfin.Plugin.Seasonals/Web/assets/logo_SW_96x96.png
Normal file
BIN
Jellyfin.Plugin.Seasonals/Web/assets/logo_SW_96x96.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 13 KiB |
@@ -1,7 +1,8 @@
|
|||||||
// theme-configs.js
|
/**
|
||||||
|
* Seasonals Plugin (Client Side Manager Logic)
|
||||||
|
*/
|
||||||
|
|
||||||
// theme configurations
|
const ThemeConfigs = {
|
||||||
const themeConfigs = {
|
|
||||||
snowflakes: {
|
snowflakes: {
|
||||||
css: '/Seasonals/Resources/snowflakes.css',
|
css: '/Seasonals/Resources/snowflakes.css',
|
||||||
js: '/Seasonals/Resources/snowflakes.js',
|
js: '/Seasonals/Resources/snowflakes.js',
|
||||||
@@ -67,8 +68,222 @@ const themeConfigs = {
|
|||||||
},
|
},
|
||||||
};
|
};
|
||||||
|
|
||||||
// determine current theme based on the current month
|
const SettingsManager = {
|
||||||
function determineCurrentTheme() {
|
initialized: false,
|
||||||
|
config: null,
|
||||||
|
|
||||||
|
init(config) {
|
||||||
|
if (this.initialized) return;
|
||||||
|
this.config = config;
|
||||||
|
|
||||||
|
// Only inject settings if enabled on server by admin
|
||||||
|
if (this.config && this.config.EnableClientSideToggle !== false) {
|
||||||
|
this.injectSettingsIcon();
|
||||||
|
this.initialized = true;
|
||||||
|
console.log("Seasonals: Client-Side Settings Manager initialized.");
|
||||||
|
}
|
||||||
|
},
|
||||||
|
|
||||||
|
getSetting(key, defaultValue) {
|
||||||
|
const value = localStorage.getItem(`seasonals-${key}`);
|
||||||
|
return value !== null ? value : defaultValue;
|
||||||
|
},
|
||||||
|
|
||||||
|
setSetting(key, value) {
|
||||||
|
localStorage.setItem(`seasonals-${key}`, value);
|
||||||
|
},
|
||||||
|
|
||||||
|
createIcon() {
|
||||||
|
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.innerHTML = '<img src="/Seasonals/Resources/assets/logo_SW.svg" style="width: 52px; height: 24px; vertical-align: middle;">';
|
||||||
|
button.innerHTML = '<img src="/Seasonals/Resources/assets/logo_SW.svg" style="width: 24px; height: 24px; vertical-align: middle;">';
|
||||||
|
button.style.verticalAlign = 'middle';
|
||||||
|
|
||||||
|
button.addEventListener('click', (e) => {
|
||||||
|
e.stopPropagation();
|
||||||
|
this.toggleSettingsPopup(button);
|
||||||
|
});
|
||||||
|
|
||||||
|
return button;
|
||||||
|
},
|
||||||
|
|
||||||
|
injectSettingsIcon() {
|
||||||
|
const observer = new MutationObserver((mutations, obs) => {
|
||||||
|
const headerRight = document.querySelector('.headerRight');
|
||||||
|
if (headerRight && !document.querySelector('.seasonal-settings-button')) {
|
||||||
|
const icon = this.createIcon();
|
||||||
|
headerRight.prepend(icon);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
observer.observe(document.body, {
|
||||||
|
childList: true,
|
||||||
|
subtree: true
|
||||||
|
});
|
||||||
|
},
|
||||||
|
|
||||||
|
createPopup(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: '0.3em',
|
||||||
|
boxShadow: '0 0 20px rgba(0,0,0,0.5)',
|
||||||
|
minWidth: '200px',
|
||||||
|
color: '#fff',
|
||||||
|
maxWidth: '250px'
|
||||||
|
});
|
||||||
|
|
||||||
|
const rect = anchorElement.getBoundingClientRect();
|
||||||
|
|
||||||
|
// Positioning logic
|
||||||
|
let rightPos = window.innerWidth - rect.right;
|
||||||
|
if (window.innerWidth < 450 || (window.innerWidth - rightPos) < 260) {
|
||||||
|
popup.style.right = '1rem';
|
||||||
|
popup.style.left = 'auto';
|
||||||
|
} else {
|
||||||
|
popup.style.right = `${rightPos}px`;
|
||||||
|
popup.style.left = 'auto';
|
||||||
|
}
|
||||||
|
popup.style.top = `${rect.bottom + 10}px`;
|
||||||
|
|
||||||
|
// Popup HTML
|
||||||
|
let html = `
|
||||||
|
<h3 style="margin-top:0; margin-bottom:1em; border-bottom:1px solid #444; padding-bottom:0.5em;">Seasonal Settings</h3>
|
||||||
|
|
||||||
|
<div class="checkboxContainer checkboxContainer-withDescription" style="margin-bottom: 0.5em;">
|
||||||
|
<label class="emby-checkbox-label">
|
||||||
|
<input id="seasonal-enable-toggle" type="checkbox" is="emby-checkbox" class="emby-checkbox" />
|
||||||
|
<span class="checkboxLabel">Enable Seasonals</span>
|
||||||
|
</label>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="selectContainer" style="margin-bottom: 0.5em;">
|
||||||
|
<label class="selectLabel" for="seasonal-theme-select" style="margin-bottom: 0.5em; display: block; color: inherit;">Force Theme</label>
|
||||||
|
<select id="seasonal-theme-select" class="emby-select" style="width: 100%; padding: 0.5em; background-color: #333; border: 1px solid #444; color: #fff; border-radius: 4px;">
|
||||||
|
<option value="auto">Server-Side</option>
|
||||||
|
</select>
|
||||||
|
</div>
|
||||||
|
`;
|
||||||
|
|
||||||
|
popup.innerHTML = html;
|
||||||
|
|
||||||
|
// Populate Select Options
|
||||||
|
const themeSelect = popup.querySelector('#seasonal-theme-select');
|
||||||
|
Object.keys(ThemeConfigs).forEach(key => {
|
||||||
|
if (key === 'none') return;
|
||||||
|
const option = document.createElement('option');
|
||||||
|
option.value = key;
|
||||||
|
option.textContent = key.charAt(0).toUpperCase() + key.slice(1);
|
||||||
|
themeSelect.appendChild(option);
|
||||||
|
});
|
||||||
|
|
||||||
|
// Set Initial Values
|
||||||
|
const enabledCheckbox = popup.querySelector('#seasonal-enable-toggle');
|
||||||
|
enabledCheckbox.checked = this.getSetting('enabled', 'true') === 'true';
|
||||||
|
themeSelect.value = this.getSetting('theme', 'auto');
|
||||||
|
|
||||||
|
// Event Listeners
|
||||||
|
enabledCheckbox.addEventListener('change', (e) => {
|
||||||
|
this.setSetting('enabled', e.target.checked);
|
||||||
|
location.reload();
|
||||||
|
});
|
||||||
|
|
||||||
|
themeSelect.addEventListener('change', (e) => {
|
||||||
|
this.setSetting('theme', e.target.value);
|
||||||
|
location.reload();
|
||||||
|
});
|
||||||
|
|
||||||
|
// Close on outside click
|
||||||
|
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);
|
||||||
|
},
|
||||||
|
|
||||||
|
toggleSettingsPopup(anchorElement) {
|
||||||
|
const existing = document.querySelector('.seasonal-settings-popup');
|
||||||
|
if (existing) {
|
||||||
|
existing.remove();
|
||||||
|
} else {
|
||||||
|
this.createPopup(anchorElement);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
const SeasonalsManager = {
|
||||||
|
config: null,
|
||||||
|
|
||||||
|
async init() {
|
||||||
|
// Fetch Config
|
||||||
|
try {
|
||||||
|
const response = await fetch('/Seasonals/Config');
|
||||||
|
if (response.ok) {
|
||||||
|
this.config = await response.json();
|
||||||
|
window.SeasonalsPluginConfig = this.config;
|
||||||
|
console.log('Seasonals: Config loaded:', this.config);
|
||||||
|
}
|
||||||
|
} catch (error) {
|
||||||
|
console.error('Seasonals: Error fetching config:', error);
|
||||||
|
}
|
||||||
|
|
||||||
|
// Initialize Settings UI
|
||||||
|
SettingsManager.init(this.config);
|
||||||
|
|
||||||
|
// User Preference Check
|
||||||
|
const isEnabled = SettingsManager.getSetting('enabled', 'true') === 'true';
|
||||||
|
if (!isEnabled) {
|
||||||
|
console.log('Seasonals: Disabled by user preference.');
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Determine Theme
|
||||||
|
const themeName = this.selectTheme();
|
||||||
|
console.log(`Seasonals: Selected theme: ${themeName}`);
|
||||||
|
|
||||||
|
if (!themeName || themeName === 'none') {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Apply Theme
|
||||||
|
this.applyTheme(themeName);
|
||||||
|
},
|
||||||
|
|
||||||
|
selectTheme() {
|
||||||
|
// Check local override
|
||||||
|
const forcedTheme = SettingsManager.getSetting('theme', 'auto');
|
||||||
|
if (forcedTheme !== 'auto') {
|
||||||
|
console.log(`Seasonals: User forced theme: ${forcedTheme}`);
|
||||||
|
return forcedTheme;
|
||||||
|
}
|
||||||
|
|
||||||
|
const automate = this.config ? this.config.AutomateSeasonSelection : true;
|
||||||
|
const defaultTheme = this.config ? this.config.SelectedSeason : 'none';
|
||||||
|
|
||||||
|
if (!automate) {
|
||||||
|
return defaultTheme;
|
||||||
|
}
|
||||||
|
|
||||||
|
return this.determineCurrentThemeDate();
|
||||||
|
},
|
||||||
|
|
||||||
|
determineCurrentThemeDate() {
|
||||||
const date = new Date();
|
const date = new Date();
|
||||||
const month = date.getMonth(); // 0-11
|
const month = date.getMonth(); // 0-11
|
||||||
const day = date.getDate(); // 1-31
|
const day = date.getDate(); // 1-31
|
||||||
@@ -77,7 +292,7 @@ function determineCurrentTheme() {
|
|||||||
|
|
||||||
if (month === 1 && day >= 10 && day <= 18) return 'hearts'; // valentine's day february 10 - 18
|
if (month === 1 && day >= 10 && day <= 18) return 'hearts'; // valentine's day february 10 - 18
|
||||||
|
|
||||||
if (month === 11 && day >= 22 && day <= 27) return 'santa'; // christmas december 22 - 27
|
if (month === 11 && day >= 22 && day <= 27) return 'santa'; // santa december 22 - 27
|
||||||
// if (month === 11 && day >= 22 && day <= 27) return 'christmas'; // christmas december 22 - 27
|
// if (month === 11 && day >= 22 && day <= 27) return 'christmas'; // christmas december 22 - 27
|
||||||
|
|
||||||
if (month === 11) return 'snowflakes'; // snowflakes december
|
if (month === 11) return 'snowflakes'; // snowflakes december
|
||||||
@@ -96,111 +311,61 @@ function determineCurrentTheme() {
|
|||||||
|
|
||||||
if (month >= 8 && month <= 10) return 'autumn'; // autumn september, october, november
|
if (month >= 8 && month <= 10) return 'autumn'; // autumn september, october, november
|
||||||
|
|
||||||
return 'none'; // Fallback (nothing)
|
return 'none'; // Fallback (no theme)
|
||||||
|
},
|
||||||
|
|
||||||
|
applyTheme(themeName) {
|
||||||
|
const theme = ThemeConfigs[themeName];
|
||||||
|
if (!theme) {
|
||||||
|
console.error(`Seasonals: Theme "${themeName}" not found.`);
|
||||||
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
// load theme csss
|
this.updateThemeContainer(theme.containerClass);
|
||||||
function loadThemeCSS(cssPath) {
|
|
||||||
if (!cssPath) return;
|
|
||||||
|
|
||||||
const link = document.createElement('link');
|
if (theme.css) this.loadResource('css', theme.css);
|
||||||
link.rel = 'stylesheet';
|
if (theme.js) this.loadResource('js', theme.js);
|
||||||
link.href = cssPath;
|
|
||||||
|
|
||||||
link.onerror = () => {
|
console.log(`Seasonals: Theme "${themeName}" applied.`);
|
||||||
console.error(`Failed to load CSS: ${cssPath}`);
|
},
|
||||||
};
|
|
||||||
|
|
||||||
document.body.appendChild(link);
|
updateThemeContainer(containerClass) {
|
||||||
console.log(`CSS file "${cssPath}" loaded.`);
|
|
||||||
}
|
|
||||||
|
|
||||||
// load theme js
|
|
||||||
function loadThemeJS(jsPath) {
|
|
||||||
if (!jsPath) return;
|
|
||||||
|
|
||||||
const script = document.createElement('script');
|
|
||||||
script.src = jsPath;
|
|
||||||
script.defer = true;
|
|
||||||
|
|
||||||
script.onerror = () => {
|
|
||||||
console.error(`Failed to load JS: ${jsPath}`);
|
|
||||||
};
|
|
||||||
|
|
||||||
document.body.appendChild(script);
|
|
||||||
console.log(`JS file "${jsPath}" loaded.`);
|
|
||||||
}
|
|
||||||
|
|
||||||
// update theme container class name
|
|
||||||
function updateThemeContainer(containerClass) {
|
|
||||||
// Create container if it doesn't exist
|
|
||||||
let container = document.querySelector('.seasonals-container');
|
let container = document.querySelector('.seasonals-container');
|
||||||
if (!container) {
|
if (!container) {
|
||||||
container = document.createElement('div');
|
container = document.createElement('div');
|
||||||
container.className = 'seasonals-container';
|
container.className = 'seasonals-container';
|
||||||
document.body.appendChild(container);
|
document.body.appendChild(container);
|
||||||
}
|
}
|
||||||
|
|
||||||
container.className = `seasonals-container ${containerClass}`;
|
container.className = `seasonals-container ${containerClass}`;
|
||||||
console.log(`Seasonals-Container class updated to "${containerClass}".`);
|
},
|
||||||
|
|
||||||
|
// helper to resolve paths for local testing vs production
|
||||||
|
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;
|
||||||
|
},
|
||||||
|
|
||||||
function removeSelf() {
|
loadResource(type, path) {
|
||||||
const script = document.currentScript;
|
if (!path) return;
|
||||||
if (script) script.parentNode.removeChild(script);
|
|
||||||
console.log('External script removed:', script);
|
if (type === 'css') {
|
||||||
|
const link = document.createElement('link');
|
||||||
|
link.rel = 'stylesheet';
|
||||||
|
link.href = path;
|
||||||
|
// link.href = resolvePath(cssPath);
|
||||||
|
link.onerror = () => console.error(`Seasonals: Failed to load CSS: ${path}`);
|
||||||
|
document.body.appendChild(link);
|
||||||
|
} else if (type === 'js') {
|
||||||
|
const script = document.createElement('script');
|
||||||
|
script.src = path;
|
||||||
|
// script.src = resolvePath(jsPath);
|
||||||
|
script.defer = true;
|
||||||
|
script.onerror = () => console.error(`Seasonals: Failed to load JS: ${path}`);
|
||||||
|
document.body.appendChild(script);
|
||||||
}
|
}
|
||||||
|
|
||||||
// initialize theme
|
|
||||||
async function initializeTheme() {
|
|
||||||
let automateThemeSelection = true;
|
|
||||||
let defaultTheme = 'none';
|
|
||||||
|
|
||||||
try {
|
|
||||||
const response = await fetch('/Seasonals/Config');
|
|
||||||
if (response.ok) {
|
|
||||||
const config = await response.json();
|
|
||||||
automateThemeSelection = config.AutomateSeasonSelection;
|
|
||||||
defaultTheme = config.SelectedSeason;
|
|
||||||
window.SeasonalsPluginConfig = config;
|
|
||||||
console.log('Seasonals Config loaded:', config);
|
|
||||||
} else {
|
|
||||||
console.error('Failed to fetch Seasonals config');
|
|
||||||
}
|
|
||||||
} catch (error) {
|
|
||||||
console.error('Error fetching Seasonals config:', error);
|
|
||||||
}
|
}
|
||||||
|
};
|
||||||
|
|
||||||
let currentTheme;
|
SeasonalsManager.init();
|
||||||
if (automateThemeSelection === false) {
|
|
||||||
currentTheme = defaultTheme;
|
|
||||||
} else {
|
|
||||||
currentTheme = determineCurrentTheme();
|
|
||||||
}
|
|
||||||
|
|
||||||
console.log(`Selected theme: ${currentTheme}`);
|
|
||||||
|
|
||||||
if (!currentTheme || currentTheme === 'none') {
|
|
||||||
console.log('No theme selected.');
|
|
||||||
removeSelf();
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
const theme = themeConfigs[currentTheme];
|
|
||||||
|
|
||||||
if (!theme) {
|
|
||||||
console.error(`Theme "${currentTheme}" not found.`);
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
updateThemeContainer(theme.containerClass);
|
|
||||||
|
|
||||||
if (theme.css) loadThemeCSS(theme.css);
|
|
||||||
if (theme.js) loadThemeJS(theme.js);
|
|
||||||
|
|
||||||
console.log(`Theme "${currentTheme}" loaded.`);
|
|
||||||
|
|
||||||
removeSelf();
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
initializeTheme();
|
|
||||||
|
|||||||
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>
|
||||||
188
README.md
188
README.md
@@ -13,20 +13,17 @@ This plugin is based on my manual mod (see the [legacy branch](https://github.co
|
|||||||
- [Table of Contents](#table-of-contents)
|
- [Table of Contents](#table-of-contents)
|
||||||
- [Features](#features)
|
- [Features](#features)
|
||||||
- [Overview](#overview)
|
- [Overview](#overview)
|
||||||
|
- [Ideas for additional seasonals](#ideas-for-additional-seasonals)
|
||||||
- [Installation](#installation)
|
- [Installation](#installation)
|
||||||
- [Client Compatibility](#client-compatibility)
|
- [Client Compatibility](#client-compatibility)
|
||||||
- [Configuration](#configuration)
|
- [Configuration](#configuration)
|
||||||
- [Automatic Theme Selection](#automatic-theme-selection)
|
- [Automatic Theme Selection](#automatic-theme-selection)
|
||||||
- [Theme Settings](#theme-settings)
|
- [Theme Settings](#theme-settings)
|
||||||
- [Build The Plugin By Yourself](#build-the-plugin-by-yourself)
|
- [Build the plugin by yourself](#build-the-plugin-by-yourself)
|
||||||
- [Troubleshooting](#troubleshooting)
|
- [Troubleshooting](#troubleshooting)
|
||||||
- [Effects Not Showing](#effects-not-showing)
|
- [Effects Not Showing](#effects-not-showing)
|
||||||
- [Docker Permission Issues](#docker-permission-issues)
|
- [Docker Permission Issues](#docker-permission-issues)
|
||||||
- [Contributing](#contributing)
|
- [Contributing](#contributing)
|
||||||
- [Legacy Manual Installation](#legacy-manual-installation)
|
|
||||||
- [Installation](#installation-1)
|
|
||||||
- [Usage](#usage)
|
|
||||||
- [Additional Directory: Separate Single Seasonals](#additional-directory-separate-single-seasonals)
|
|
||||||
|
|
||||||
---
|
---
|
||||||
|
|
||||||
@@ -34,39 +31,83 @@ This plugin is based on my manual mod (see the [legacy branch](https://github.co
|
|||||||
|
|
||||||
- **Automatic Theme Selection**: Dynamically updates the theme based on the date (e.g., snowflakes in December, fireworks for new year's eve).
|
- **Automatic Theme Selection**: Dynamically updates the theme based on the date (e.g., snowflakes in December, fireworks for new year's eve).
|
||||||
- **Easy Integration**: No manual file editing required. The plugin injects everything automatically.
|
- **Easy Integration**: No manual file editing required. The plugin injects everything automatically.
|
||||||
- **Configuration UI**: Configure settings directly in the Jellyfin Dashboard (very basic for now, needs some work in the future).
|
- **Configuration UI**: Configure settings directly in the Jellyfin Dashboard.
|
||||||
|
<details>
|
||||||
|
<summary>Have a look:</summary>
|
||||||
|
<img width="852" height="782" alt="Admin-Settings" src="https://github.com/user-attachments/assets/03d04ea8-7dd9-418e-88f8-9ae2937c06bb" />
|
||||||
|
</details>
|
||||||
|
- **User Toggle**: Optionally allow users to enable/disable seasonal effects from their client.
|
||||||
|
<details>
|
||||||
|
<summary>Have a look:</summary>
|
||||||
|
<img width="467" height="263" alt="Client-Settings" src="https://github.com/user-attachments/assets/a8dfc90a-16c8-409c-9133-4139f6527b0b" />
|
||||||
|
</details>
|
||||||
|
|
||||||
## Overview
|
## Overview
|
||||||
|
Click on the following themes to expand them and see the theme in action:
|
||||||
|
|
||||||
|
<details>
|
||||||
|
<summary>Easter</summary>
|
||||||
|
|
||||||
**Easter**
|
|
||||||

|

|
||||||
|
</details>
|
||||||
|
|
||||||
|
<details>
|
||||||
|
<summary>Autumn</summary>
|
||||||
|
|
||||||
**Autumn**
|
|
||||||

|

|
||||||
|
</details>
|
||||||
|
|
||||||
|
<details>
|
||||||
|
<summary>Santa</summary>
|
||||||
|
|
||||||
**Santa**
|
|
||||||

|

|
||||||
|
</details>
|
||||||
|
|
||||||
|
<details>
|
||||||
|
<summary>Christmas</summary>
|
||||||
|
|
||||||
**Christmas**
|
|
||||||

|

|
||||||
|
</details>
|
||||||
|
|
||||||
|
<details>
|
||||||
|
<summary>Fireworks</summary>
|
||||||
|
|
||||||
**Fireworks**
|
|
||||||

|

|
||||||
|
</details>
|
||||||
|
|
||||||
|
<details>
|
||||||
|
<summary>Halloween</summary>
|
||||||
|
|
||||||
**Halloween**
|
|
||||||

|

|
||||||
|
</details>
|
||||||
|
|
||||||
|
<details>
|
||||||
|
<summary>Hearts</summary>
|
||||||
|
|
||||||
**Hearts**
|
|
||||||

|

|
||||||
|
</details>
|
||||||
|
|
||||||
|
<details>
|
||||||
|
<summary>Snowfall</summary>
|
||||||
|
|
||||||
**Snowfall**
|
|
||||||

|

|
||||||
|
</details>
|
||||||
|
|
||||||
|
<details>
|
||||||
|
<summary>Snowflakes</summary>
|
||||||
|
|
||||||
**Snowflakes**
|
|
||||||

|

|
||||||
|
</details>
|
||||||
|
|
||||||
|
<details>
|
||||||
|
<summary>Snowstorm</summary>
|
||||||
|
|
||||||
**Snowstorm**
|
|
||||||

|

|
||||||
|
</details>
|
||||||
|
|
||||||
|
|
||||||
|
## Ideas for additional seasonals
|
||||||
|
If you have any (specific) ideas for additional seasonals, feel free to open an issue or create a pull request.
|
||||||
|
|
||||||
## Installation
|
## Installation
|
||||||
|
|
||||||
@@ -135,7 +176,7 @@ If automatic selection is enabled, the following themes are applied based on the
|
|||||||
## Theme Settings
|
## Theme Settings
|
||||||
Each theme contains additional settings to customize its behavior. Expand the advanced configuration section to configure each theme, adjust parameters like particle count, animation speed etc.
|
Each theme contains additional settings to customize its behavior. Expand the advanced configuration section to configure each theme, adjust parameters like particle count, animation speed etc.
|
||||||
|
|
||||||
## Build The Plugin By Yourself
|
## Build the plugin by yourself
|
||||||
|
|
||||||
If you want to build the plugin yourself:
|
If you want to build the plugin yourself:
|
||||||
|
|
||||||
@@ -203,116 +244,3 @@ volumes:
|
|||||||
|
|
||||||
Feel free to contribute to this project by creating pull requests or reporting issues.
|
Feel free to contribute to this project by creating pull requests or reporting issues.
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
## Legacy Manual Installation
|
|
||||||
|
|
||||||
<details>
|
|
||||||
<summary>Click to expand instructions for the old manual installation method (without plugin)</summary>
|
|
||||||
|
|
||||||
### Installation
|
|
||||||
|
|
||||||
> [!TIP]
|
|
||||||
> Take a look at [CodeDevMLH/Jellyfin-Mods-Automated-Script](https://github.com/CodeDevMLH/Jellyfin-Mods-Automated-Script)
|
|
||||||
|
|
||||||
1. **Add Seasonal Container to `index.html`**
|
|
||||||
Edit the `index.html` file of your Jellyfin web instance. Add the following code inside the `<body>` tag:
|
|
||||||
|
|
||||||
```html
|
|
||||||
<div class="seasonals-container"></div>
|
|
||||||
<script src="seasonals/seasonals.js"></script>
|
|
||||||
```
|
|
||||||
2. **Deploy Files**
|
|
||||||
Place the seasonals folder (including seasonals.js, CSS, and additional JavaScript files for each theme [this one](https://github.com/CodeDevMLH/Jellyfin-Seasonals/tree/legacy/seasonals)) inside the Jellyfin web server directory (labeld with "web").
|
|
||||||
|
|
||||||
3. **Configure Themes**
|
|
||||||
Customize the theme-configs.js file to modify or add new themes. The default configuration is shown below:
|
|
||||||
|
|
||||||
```javascript
|
|
||||||
const automateThemeSelection = true; // Set to false to disable automatic theme selection based on current date
|
|
||||||
const defaultTheme = 'none'; // Default theme if automatic selection is off
|
|
||||||
|
|
||||||
const themeConfigs = {
|
|
||||||
snowflakes: {
|
|
||||||
css: 'seasonals/snowflakes.css',
|
|
||||||
js: 'seasonals/snowflakes.js',
|
|
||||||
containerClass: 'snowflakes'
|
|
||||||
},
|
|
||||||
snowfall: {
|
|
||||||
css: 'seasonals/snowfall.css',
|
|
||||||
js: 'seasonals/snowfall.js',
|
|
||||||
containerClass: 'snowfall-container'
|
|
||||||
},
|
|
||||||
|
|
||||||
// more configs...
|
|
||||||
|
|
||||||
none: {
|
|
||||||
containerClass: 'none'
|
|
||||||
},
|
|
||||||
};
|
|
||||||
```
|
|
||||||
|
|
||||||
4. **Reload the web interface**
|
|
||||||
After making these changes, restart your Jellyfin server and/or refresh the web interface (ctrl+F5, sometimes you need to clear the browsers temp files/cache (every time with firefox ;-()) to see the changes.
|
|
||||||
|
|
||||||
### Theme Settings
|
|
||||||
Each theme's JavaScript file contains additional settings to customize its behavior. Here are examples for the `autumn` and `snowflakes` themes:
|
|
||||||
|
|
||||||
**Autumn Theme Settings**
|
|
||||||
```javascript
|
|
||||||
const leaves = true; // Enable/disable leaves
|
|
||||||
const randomLeaves = true; // Enable random leaves
|
|
||||||
const randomLeavesMobile = false; // Enable random leaves on mobile devices
|
|
||||||
const enableDiffrentDuration = true; // Enable different animation duration for random leaves
|
|
||||||
const leafCount = 25; // Number of random extra leaves
|
|
||||||
```
|
|
||||||
|
|
||||||
**Snowflakes Theme Settings**
|
|
||||||
```javascript
|
|
||||||
const snowflakes = true; // Enable/disable snowflakes
|
|
||||||
const randomSnowflakes = true; // Enable random snowflakes
|
|
||||||
const randomSnowflakesMobile = false; // Enable random snowflakes on mobile devices
|
|
||||||
const enableColoredSnowflakes = true; // Enable colored snowflakes on mobile devices
|
|
||||||
const enableDiffrentDuration = true; // Enable different animation duration for random snowflakes
|
|
||||||
const snowflakeCount = 25; // Number of random extra snowflakes
|
|
||||||
```
|
|
||||||
|
|
||||||
### Usage
|
|
||||||
**Automatic Theme Selection**
|
|
||||||
By default, the theme is automatically selected based on the date. For example:
|
|
||||||
|
|
||||||
Snowfall: January
|
|
||||||
Hearts: February (Valentine's Day)
|
|
||||||
Halloween: October
|
|
||||||
|
|
||||||
Modify the determineCurrentTheme() function in seasonals.js to adjust date-based logic.
|
|
||||||
|
|
||||||
**Manual Theme Selection**
|
|
||||||
To use a fixed theme, set automateThemeSelection to false in the theme-configs.js file and specify a defaultTheme.
|
|
||||||
|
|
||||||
**Custom Themes**
|
|
||||||
1. Add your CSS and JavaScript files to the seasonals folder.
|
|
||||||
|
|
||||||
2. Extend the themeConfigs object with your theme details:
|
|
||||||
```javascript
|
|
||||||
myTheme: {
|
|
||||||
css: 'seasonals/my-theme.css',
|
|
||||||
js: 'seasonals/my-theme.js',
|
|
||||||
containerClass: 'my-theme-container',
|
|
||||||
}
|
|
||||||
```
|
|
||||||
|
|
||||||
|
|
||||||
### Additional Directory: Separate Single Seasonals
|
|
||||||
For users who prefer not to use the automatic seasonal theme selection, individual seasonals are available in the `separate single seasonals` folder. Each seasonal theme can be independently loaded and used without relying on the main automatic selection system.
|
|
||||||
|
|
||||||
but this requires to the modify of the `index.html` with adding the html in `add_to_index_html`.
|
|
||||||
|
|
||||||
To use a single seasonal theme, include its specific CSS and JS files in your `index.html` inside the `<body> </body>` tags provided by `add_to_index_html.html` in the sub-theme-folders as shown below:
|
|
||||||
|
|
||||||
```html
|
|
||||||
<div class="seasonalsname-container"></div>
|
|
||||||
<script src="separate single seasonals/snowflakes.js"></script>
|
|
||||||
<link rel="stylesheet" href="separate single seasonals/snowflakes.css">
|
|
||||||
|
|
||||||
</details>
|
|
||||||
|
|||||||
@@ -26,8 +26,11 @@ git merge main
|
|||||||
Setzt deine Commits neu auf die Spitze eines anderen Branches. Die Commit-IDs werden dabei neu geschrieben.
|
Setzt deine Commits neu auf die Spitze eines anderen Branches. Die Commit-IDs werden dabei neu geschrieben.
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
|
git stash # (optional) Änderungen parken.
|
||||||
git checkout dev
|
git checkout dev
|
||||||
git rebase main
|
git fetch origin
|
||||||
|
git rebase origin/main
|
||||||
|
git stash pop # (optional) Änderungen zurückholen.
|
||||||
```
|
```
|
||||||
|
|
||||||
| Details | |
|
| Details | |
|
||||||
@@ -38,6 +41,60 @@ git rebase main
|
|||||||
|
|
||||||
---
|
---
|
||||||
|
|
||||||
|
## **Git: dev zurücksetzen & „main ist Chef“**
|
||||||
|
|
||||||
|
Problem
|
||||||
|
|
||||||
|
Beim Arbeiten mit Git passiert oft Folgendes:
|
||||||
|
|
||||||
|
- `dev` hat Commits, die nicht in `main` sind
|
||||||
|
- diese Commits brauche ich nicht mehr
|
||||||
|
- beim `git rebase origin/main` will Git trotzdem mergen oder Konflikte lösen
|
||||||
|
|
||||||
|
⚠️ Wichtiges Missverständnis:
|
||||||
|
|
||||||
|
Das sind keine lokalen Änderungen, sondern Commits, die auf `dev` existieren.
|
||||||
|
|
||||||
|
`git reset --hard origin/dev` entfernt nur lokale, nicht gepushte Commits,
|
||||||
|
aber nicht Commits, die bereits auf `origin/dev` liegen.
|
||||||
|
|
||||||
|
Praktische Befehle & sichere Vorgehensweise
|
||||||
|
|
||||||
|
- Prüfen — welche Commits würden entfernt werden:
|
||||||
|
|
||||||
|
```bash
|
||||||
|
git fetch origin
|
||||||
|
git log --oneline origin/main..origin/dev
|
||||||
|
```
|
||||||
|
|
||||||
|
- Optional: Backup des aktuellen `origin/dev`, falls etwas schiefgeht:
|
||||||
|
|
||||||
|
```bash
|
||||||
|
git fetch origin
|
||||||
|
git branch backup/dev origin/dev
|
||||||
|
```
|
||||||
|
|
||||||
|
- Sicheres Zurücksetzen von `dev` auf `main` (lokal + remote):
|
||||||
|
|
||||||
|
```bash
|
||||||
|
git checkout dev
|
||||||
|
git fetch origin
|
||||||
|
git reset --hard origin/main
|
||||||
|
git push --force-with-lease origin dev
|
||||||
|
```
|
||||||
|
|
||||||
|
- Alternative (ohne lokalen Checkout): Push von `main` direkt nach `dev`:
|
||||||
|
|
||||||
|
```bash
|
||||||
|
git fetch origin
|
||||||
|
git push --force-with-lease origin origin/main:refs/heads/dev
|
||||||
|
```
|
||||||
|
|
||||||
|
- Warnung: Diese Aktionen schreiben die Remote‑History um. Koordiniere dich mit
|
||||||
|
dem Team bevor du ein Force‑Push ausführst. Verwende `--force-with-lease`
|
||||||
|
anstelle von `--force` für etwas mehr Sicherheit.
|
||||||
|
|
||||||
|
|
||||||
## 📦 Temporäres Speichern & Spezialbefehle
|
## 📦 Temporäres Speichern & Spezialbefehle
|
||||||
|
|
||||||
### Stash (Das "Regal")
|
### Stash (Das "Regal")
|
||||||
|
|||||||
132
manifest.json
132
manifest.json
@@ -8,13 +8,21 @@
|
|||||||
"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.13.2",
|
||||||
|
"changelog": "- Refactor seasonals.js",
|
||||||
|
"targetAbi": "10.11.0.0",
|
||||||
|
"sourceUrl": "https://git.mahom03-spacecloud.de/CodeDevMLH/Jellyfin-Seasonals-Plugin/releases/download/v1.6.13.2/Jellyfin.Plugin.Seasonals.zip",
|
||||||
|
"checksum": "b4cce0db6f194d1cd6ff43666f98e455",
|
||||||
|
"timestamp": "2026-02-04T15:01:12Z"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"version": "1.5.1.0",
|
"version": "1.5.1.0",
|
||||||
"changelog": "- fix: snowfall effect sometimes not scaling on window resize, which leads to clustering and rain effect of snowflakes",
|
"changelog": "- fix: snowfall effect sometimes not scaling on window resize, which leads to clustering and rain effect of snowflakes",
|
||||||
"targetAbi": "10.11.0.0",
|
"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",
|
"sourceUrl": "https://git.mahom03-spacecloud.de/CodeDevMLH/Jellyfin-Seasonals-Plugin/releases/download/v1.5.1.0/Jellyfin.Plugin.Seasonals.zip",
|
||||||
"checksum": "226621c504e9f59377d0df8b7ec5ff22",
|
"checksum": "a66b5c24c1f4bfff14bba5e93576bb80",
|
||||||
"timestamp": "2026-01-21T22:53:14Z"
|
"timestamp": "2026-01-28T22:40:49Z"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"version": "1.5.0.0",
|
"version": "1.5.0.0",
|
||||||
@@ -99,6 +107,126 @@
|
|||||||
"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.4.0.0",
|
||||||
|
"changelog": "- feat: Add client-side settings feature for selected media bar settings",
|
||||||
|
"targetAbi": "10.11.0.0",
|
||||||
|
"sourceUrl": "https://git.mahom03-spacecloud.de/CodeDevMLH/jellyfin-plugin-media-bar-enhanced/releases/download/v1.4.0.0/Jellyfin.Plugin.MediaBarEnhanced.zip",
|
||||||
|
"checksum": "20faa2a703dbb46591f4bd09e6ab7ec3",
|
||||||
|
"timestamp": "2026-02-04T12:49:45Z"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"version": "1.3.0.3",
|
||||||
|
"changelog": "- feat: Enhance custom media ID functionality with manual trailer override support",
|
||||||
|
"targetAbi": "10.11.0.0",
|
||||||
|
"sourceUrl": "https://git.mahom03-spacecloud.de/CodeDevMLH/jellyfin-plugin-media-bar-enhanced/releases/download/v1.3.0.3/Jellyfin.Plugin.MediaBarEnhanced.zip",
|
||||||
|
"checksum": "1d9e0a8342d46f84aed3f7bd1bee32d3",
|
||||||
|
"timestamp": "2026-02-04T01:41:35Z"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"version": "1.3.0.2",
|
||||||
|
"changelog": "- feat: Enhance custom media ID functionality with manual trailer override support",
|
||||||
|
"targetAbi": "10.11.0.0",
|
||||||
|
"sourceUrl": "https://git.mahom03-spacecloud.de/CodeDevMLH/jellyfin-plugin-media-bar-enhanced/releases/download/v1.3.0.2/Jellyfin.Plugin.MediaBarEnhanced.zip",
|
||||||
|
"checksum": "22e79daa5f433ca09a3db4f8e37679b4",
|
||||||
|
"timestamp": "2026-02-04T01:27:55Z"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"version": "1.3.0.1",
|
||||||
|
"changelog": "- feat: Enhance custom media ID functionality with manual trailer override support",
|
||||||
|
"targetAbi": "10.11.0.0",
|
||||||
|
"sourceUrl": "https://git.mahom03-spacecloud.de/CodeDevMLH/jellyfin-plugin-media-bar-enhanced/releases/download/v1.3.0.1/Jellyfin.Plugin.MediaBarEnhanced.zip",
|
||||||
|
"checksum": "5a4f555e29c733dabd51169f6ace56eb",
|
||||||
|
"timestamp": "2026-02-04T01:14:19Z"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"version": "1.3.0.0",
|
||||||
|
"changelog": "- feat: Enhance custom media ID functionality with manual trailer override support",
|
||||||
|
"targetAbi": "10.11.0.0",
|
||||||
|
"sourceUrl": "https://git.mahom03-spacecloud.de/CodeDevMLH/jellyfin-plugin-media-bar-enhanced/releases/download/v1.3.0.0/Jellyfin.Plugin.MediaBarEnhanced.zip",
|
||||||
|
"checksum": "83c26ba8f7ad6e1a7fe73c7190f532f3",
|
||||||
|
"timestamp": "2026-02-04T00:07:15Z"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"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",
|
"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",
|
"changelog": "- Add video quality preference setting (Auto / 1080p / Highres)\n- Set preferred video quality on YouTube player based on setting",
|
||||||
|
|||||||
Reference in New Issue
Block a user