Compare commits

...

9 Commits

Author SHA1 Message Date
CodeDevMLH
1428db3e1e Update manifest.json for release v1.7.0.14 [skip ci] 2026-02-16 23:02:32 +00:00
CodeDevMLH
1f5f436e44 Bump version to 1.7.0.14
All checks were successful
Auto Release Plugin / build-and-release (push) Successful in 52s
2026-02-17 00:01:41 +01:00
CodeDevMLH
46f5c3648d Refactor seasonal rule HTML generation for improved maintainability 2026-02-17 00:01:21 +01:00
CodeDevMLH
555e2ab8be Update manifest.json for release v1.7.0.13 [skip ci] 2026-02-16 22:37:20 +00:00
CodeDevMLH
26eadfc0aa Bump version to 1.7.0.13
All checks were successful
Auto Release Plugin / build-and-release (push) Successful in 51s
2026-02-16 23:36:26 +01:00
CodeDevMLH
142f538939 Enhance select elements in date range group with consistent styling 2026-02-16 23:36:08 +01:00
CodeDevMLH
b64e80fd60 Update manifest.json for release v1.7.0.12 [skip ci] 2026-02-16 22:18:09 +00:00
CodeDevMLH
fbf5fc7edf Bump version to 1.7.0.12
All checks were successful
Auto Release Plugin / build-and-release (push) Successful in 52s
2026-02-16 23:17:17 +01:00
CodeDevMLH
8defba4623 Refactor date selection logic in SeasonalsConfigPage to use helper function for generating options 2026-02-16 23:17:02 +01:00
3 changed files with 77 additions and 104 deletions

View File

@@ -673,39 +673,6 @@
var SeasonalsConfigPage = { var SeasonalsConfigPage = {
pluginUniqueId: 'ef1e863f-cbb0-4e47-9f23-f0cbb1826ad4', pluginUniqueId: 'ef1e863f-cbb0-4e47-9f23-f0cbb1826ad4',
getDaysOptions: function(selectedDay) {
var options = '';
for (var i = 1; i <= 31; i++) {
var isSelected = i === selectedDay ? 'selected' : '';
options += '<option value="' + i + '" ' + isSelected + '>' + i + '</option>';
}
return options;
},
getMonthsOptions: function(selectedMonth) {
var months = [
{ val: 1, name: 'Jan' },
{ val: 2, name: 'Feb' },
{ val: 3, name: 'Mar' },
{ val: 4, name: 'Apr' },
{ val: 5, name: 'May' },
{ val: 6, name: 'Jun' },
{ val: 7, name: 'Jul' },
{ val: 8, name: 'Aug' },
{ val: 9, name: 'Sep' },
{ val: 10, name: 'Oct' },
{ val: 11, name: 'Nov' },
{ val: 12, name: 'Dec' }
];
var options = '';
for (var i = 0; i < months.length; i++) {
var m = months[i];
var isSelected = m.val === selectedMonth ? 'selected' : '';
options += '<option value="' + m.val + '" ' + isSelected + '>' + m.name + '</option>';
}
return options;
},
addRule: function(data = null) { addRule: function(data = null) {
var container = document.querySelector('#seasonalRulesList'); var container = document.querySelector('#seasonalRulesList');
var div = document.createElement('div'); var div = document.createElement('div');
@@ -718,78 +685,84 @@
var endMonth = data ? (data.EndMonth !== undefined ? data.EndMonth : (data.endMonth !== undefined ? data.endMonth : 1)) : 1; var endMonth = data ? (data.EndMonth !== undefined ? data.EndMonth : (data.endMonth !== undefined ? data.endMonth : 1)) : 1;
var theme = data ? (data.Theme || data.theme || 'none') : 'none'; var theme = data ? (data.Theme || data.theme || 'none') : 'none';
div.innerHTML = ` var days = [];
<div class="seasonal-rule-header"> for (var i = 1; i <= 31; i++) days.push(i);
<div style="font-weight: bold; font-size: 1.1em;" class="rule-title"></div>
<div class="rule-actions">
<button type="button" is="paper-icon-button-light" class="btn-move-up" title="Move Up"><i class="material-icons">arrow_upward</i></button>
<button type="button" is="paper-icon-button-light" class="btn-move-down" title="Move Down"><i class="material-icons">arrow_downward</i></button>
<button type="button" is="paper-icon-button-light" class="btn-remove" title="Remove"><i class="material-icons">delete</i></button>
</div>
</div>
<div class="seasonal-rule-content">
<div class="inputContainer" style="margin:0;">
<label class="inputLabel">Name</label>
<input is="emby-input" class="rule-name" onchange="SeasonalsConfigPage.updateRuleTitles();" />
</div>
<div class="date-range-group">
<div class="selectContainer" style="margin:0; flex: 1;">
<label class="selectLabel">Start Day</label>
<select is="emby-select" class="rule-start-day" style="width: 100%;">
${SeasonalsConfigPage.getDaysOptions(startDay)}
</select>
</div>
<div class="selectContainer" style="margin:0; flex: 1;">
<label class="selectLabel">Month</label>
<select is="emby-select" class="rule-start-month" style="width: 100%;">
${SeasonalsConfigPage.getMonthsOptions(startMonth)}
</select>
</div>
</div>
<div class="date-range-group">
<div class="selectContainer" style="margin:0; flex: 1;">
<label class="selectLabel">End Day</label>
<select is="emby-select" class="rule-end-day" style="width: 100%;">
${SeasonalsConfigPage.getDaysOptions(endDay)}
</select>
</div>
<div class="selectContainer" style="margin:0; flex: 1;">
<label class="selectLabel">Month</label>
<select is="emby-select" class="rule-end-month" style="width: 100%;">
${SeasonalsConfigPage.getMonthsOptions(endMonth)}
</select>
</div>
</div>
<div class="selectContainer" style="margin:0;"> var months = [
<label class="selectLabel">Theme</label> { v: 1, n: 'Jan' }, { v: 2, n: 'Feb' }, { v: 3, n: 'Mar' }, { v: 4, n: 'Apr' },
<select is="emby-select" class="rule-theme" style="width: 100%;"> { v: 5, n: 'May' }, { v: 6, n: 'Jun' }, { v: 7, n: 'Jul' }, { v: 8, n: 'Aug' },
<option value="none">None</option> { v: 9, n: 'Sep' }, { v: 10, n: 'Oct' }, { v: 11, n: 'Nov' }, { v: 12, n: 'Dec' }
<option value="snowflakes">Snowflakes</option> ];
<option value="snowfall">Snowfall</option>
<option value="snowstorm">Snowstorm</option> // Build select HTML via string concatenation to avoid Jellyfin's ${} localization processing
<option value="fireworks">Fireworks</option> function mkSelect(val, opts, cls) {
<option value="halloween">Halloween</option> var h = '<select class="emby-select emby-select-withcolor ' + cls + '" style="width: 100%; -webkit-appearance: menulist; appearance: menulist;">';
<option value="hearts">Hearts</option> opts.forEach(function(o) {
<option value="christmas">Christmas</option> var v = o.v || o;
<option value="santa">Santa</option> var n = o.n || o;
<option value="autumn">Autumn</option> h += '<option value="' + v + '" ' + (v == val ? 'selected' : '') + '>' + n + '</option>';
<option value="easter">Easter</option> });
<option value="resurrection">Resurrection</option> h += '</select>';
</select> return h;
</div> }
</div>
`; div.innerHTML =
'<div class="seasonal-rule-header">' +
' <div style="font-weight: bold; font-size: 1.1em;" class="rule-title"></div>' +
' <div class="rule-actions">' +
' <button type="button" is="paper-icon-button-light" class="btn-move-up" title="Move Up"><i class="material-icons">arrow_upward</i></button>' +
' <button type="button" is="paper-icon-button-light" class="btn-move-down" title="Move Down"><i class="material-icons">arrow_downward</i></button>' +
' <button type="button" is="paper-icon-button-light" class="btn-remove" title="Remove"><i class="material-icons">delete</i></button>' +
' </div>' +
'</div>' +
'<div class="seasonal-rule-content">' +
' <div class="inputContainer" style="margin:0;">' +
' <label class="inputLabel">Name</label>' +
' <input is="emby-input" class="rule-name" onchange="SeasonalsConfigPage.updateRuleTitles();" />' +
' </div>' +
' <div class="date-range-group">' +
' <div class="selectContainer" style="margin:0; flex: 1;">' +
' <label class="selectLabel">Start Day</label>' +
mkSelect(startDay, days, 'rule-start-day') +
' </div>' +
' <div class="selectContainer" style="margin:0; flex: 1;">' +
' <label class="selectLabel">Month</label>' +
mkSelect(startMonth, months, 'rule-start-month') +
' </div>' +
' </div>' +
' <div class="date-range-group">' +
' <div class="selectContainer" style="margin:0; flex: 1;">' +
' <label class="selectLabel">End Day</label>' +
mkSelect(endDay, days, 'rule-end-day') +
' </div>' +
' <div class="selectContainer" style="margin:0; flex: 1;">' +
' <label class="selectLabel">Month</label>' +
mkSelect(endMonth, months, 'rule-end-month') +
' </div>' +
' </div>' +
' <div class="selectContainer" style="margin:0;">' +
' <label class="selectLabel">Theme</label>' +
' <select class="emby-select emby-select-withcolor rule-theme" style="width: 100%; -webkit-appearance: menulist; appearance: menulist;">' +
' <option value="none">None</option>' +
' <option value="snowflakes">Snowflakes</option>' +
' <option value="snowfall">Snowfall</option>' +
' <option value="snowstorm">Snowstorm</option>' +
' <option value="fireworks">Fireworks</option>' +
' <option value="halloween">Halloween</option>' +
' <option value="hearts">Hearts</option>' +
' <option value="christmas">Christmas</option>' +
' <option value="santa">Santa</option>' +
' <option value="autumn">Autumn</option>' +
' <option value="easter">Easter</option>' +
' <option value="resurrection">Resurrection</option>' +
' </select>' +
' </div>' +
'</div>';
container.appendChild(div); container.appendChild(div);
// Set values programmatically // Set values programmatically
div.querySelector('.rule-name').value = name; div.querySelector('.rule-name').value = name;
div.querySelector('.rule-start-day').value = startDay;
div.querySelector('.rule-start-month').value = startMonth;
div.querySelector('.rule-end-day').value = endDay;
div.querySelector('.rule-end-month').value = endMonth;
div.querySelector('.rule-theme').value = theme; div.querySelector('.rule-theme').value = theme;
// Bind events // Bind events

View File

@@ -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.7.0.11</Version> <Version>1.7.0.14</Version>
<RepositoryUrl>https://github.com/CodeDevMLH/Jellyfin-Seasonals</RepositoryUrl> <RepositoryUrl>https://github.com/CodeDevMLH/Jellyfin-Seasonals</RepositoryUrl>
</PropertyGroup> </PropertyGroup>

View File

@@ -9,12 +9,12 @@
"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.7.0.11", "version": "1.7.0.14",
"changelog": "- feat: add customizable auto seasonal list via config page\n- feat: add new season theme 'resurrection' by Bioflash257", "changelog": "- feat: add customizable auto seasonal list via config page\n- feat: add new season theme 'resurrection' by Bioflash257",
"targetAbi": "10.11.0.0", "targetAbi": "10.11.0.0",
"sourceUrl": "https://git.mahom03-spacecloud.de/CodeDevMLH/Jellyfin-Seasonals-Plugin/releases/download/v1.7.0.11/Jellyfin.Plugin.Seasonals.zip", "sourceUrl": "https://git.mahom03-spacecloud.de/CodeDevMLH/Jellyfin-Seasonals-Plugin/releases/download/v1.7.0.14/Jellyfin.Plugin.Seasonals.zip",
"checksum": "bf7a1660c57152fee961b91c5cf20e7c", "checksum": "028df715bde488d10ef207dc38ac1b87",
"timestamp": "2026-02-16T22:06:10Z" "timestamp": "2026-02-16T23:02:32Z"
}, },
{ {
"version": "1.6.3.0", "version": "1.6.3.0",