Compare commits
6 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
457ae404ba | ||
|
|
b6d679f6ef | ||
|
|
3b88a1809d | ||
|
|
4614ce4a7a | ||
|
|
57840bb149 | ||
|
|
dd90a4630a |
@@ -88,9 +88,11 @@
|
||||
|
||||
<!-- Auto Selection Tab -->
|
||||
<div id="seasonals-auto-selection" class="seasonals-tab-content" style="display: none;">
|
||||
<div style="background-color: rgba(255, 255, 255, 0.05); border-left: 4px solid #00a4dc; border-radius: 4px; padding: 1em 1.5em; margin-bottom: 1.5em;">
|
||||
<h3>Auto Selection Rules</h3>
|
||||
<p>Define rules to automatically select a season based on the date. Rules are evaluated from top to bottom. The first matching rule wins.</p>
|
||||
<h3>Auto Selection Rules</h3>
|
||||
|
||||
<div style="background-color: rgba(255, 255, 255, 0.05); border-left: 4px solid #00a4dc; border-radius: 4px; padding: 1em 1.5em; margin: 1.5em 0; display: flex; align-items: center; gap: 1em;">
|
||||
<i class="material-icons" style="color: #00a4dc; font-size: 24px;">info</i>
|
||||
<div>Define rules to automatically select a season based on the date. Rules are evaluated from top to bottom. The first matching rule wins.</div>
|
||||
</div>
|
||||
|
||||
<div id="seasonalRulesList">
|
||||
@@ -98,7 +100,7 @@
|
||||
</div>
|
||||
|
||||
<button is="emby-button" type="button" class="raised button-accent block" onclick="SeasonalsConfigPage.addRule();">
|
||||
<i class="material-icons button-icon button-icon-left">add</i>
|
||||
<i class="material-icons" style="font-size: 24px;">add</i>
|
||||
<span>Add Rule</span>
|
||||
</button>
|
||||
</div>
|
||||
@@ -613,7 +615,7 @@
|
||||
}
|
||||
.seasonal-rule-content {
|
||||
display: grid;
|
||||
grid-template-columns: 2fr 1fr 1fr 2fr;
|
||||
grid-template-columns: 2fr 1.2fr 1.2fr 2fr;
|
||||
gap: 15px;
|
||||
align-items: end;
|
||||
}
|
||||
@@ -638,10 +640,10 @@
|
||||
border-bottom: 2px solid #00a4dc !important;
|
||||
}
|
||||
|
||||
/* Disabled options in selects
|
||||
/* Disabled options in selects */
|
||||
select option:disabled {
|
||||
color: #a3a3a3 !important;
|
||||
} */
|
||||
}
|
||||
</style>
|
||||
<script>
|
||||
function showSeasonalsTab(tabId, btn) {
|
||||
@@ -726,6 +728,7 @@
|
||||
<option value="santa">Santa</option>
|
||||
<option value="autumn">Autumn</option>
|
||||
<option value="easter">Easter</option>
|
||||
<option value="resurrection">Resurrection</option>
|
||||
</select>
|
||||
</div>
|
||||
</div>
|
||||
@@ -735,6 +738,7 @@
|
||||
|
||||
// Set values programmatically to ensure they are correctly populated
|
||||
div.querySelector('.rule-name').value = name;
|
||||
div.querySelector('.rule-title').innerText = name;
|
||||
div.querySelector('.rule-start-day').value = startDay;
|
||||
div.querySelector('.rule-start-month').value = startMonth;
|
||||
div.querySelector('.rule-end-day').value = endDay;
|
||||
|
||||
@@ -12,7 +12,7 @@
|
||||
<!-- <TreatWarningsAsErrors>false</TreatWarningsAsErrors> -->
|
||||
<Title>Jellyfin Seasonals Plugin</Title>
|
||||
<Authors>CodeDevMLH</Authors>
|
||||
<Version>1.7.0.4</Version>
|
||||
<Version>1.7.0.6</Version>
|
||||
<RepositoryUrl>https://github.com/CodeDevMLH/Jellyfin-Seasonals</RepositoryUrl>
|
||||
</PropertyGroup>
|
||||
|
||||
|
||||
@@ -9,12 +9,12 @@
|
||||
"imageUrl": "https://git.mahom03-spacecloud.de/CodeDevMLH/Jellyfin-Seasonals-Plugin/raw/branch/main/logo.png",
|
||||
"versions": [
|
||||
{
|
||||
"version": "1.7.0.4",
|
||||
"version": "1.7.0.7",
|
||||
"changelog": "- feat: add customizable auto seasonal list via config page\n- feat: add new season theme 'resurrection' by Bioflash257",
|
||||
"targetAbi": "10.11.0.0",
|
||||
"sourceUrl": "https://git.mahom03-spacecloud.de/CodeDevMLH/Jellyfin-Seasonals-Plugin/releases/download/v1.7.0.4/Jellyfin.Plugin.Seasonals.zip",
|
||||
"checksum": "ea0de09f34a12af774029d020830d9cc",
|
||||
"timestamp": "2026-02-16T16:30:59Z"
|
||||
"sourceUrl": "https://git.mahom03-spacecloud.de/CodeDevMLH/Jellyfin-Seasonals-Plugin/releases/download/v1.7.0.7/Jellyfin.Plugin.Seasonals.zip",
|
||||
"checksum": "dfc48cd9c1c7d57fc6ecd14d5d657066",
|
||||
"timestamp": "2026-02-16T17:49:48Z"
|
||||
},
|
||||
{
|
||||
"version": "1.6.3.0",
|
||||
|
||||
Reference in New Issue
Block a user