From 3dffd847de7209df085205afd6a448f0a39682b6 Mon Sep 17 00:00:00 2001
From: CodeDevMLH <145071728+CodeDevMLH@users.noreply.github.com>
Date: Sat, 28 Feb 2026 14:08:22 +0100
Subject: [PATCH] Refactor Earth Day configuration to replace VineCount with
FlowersCount and update related descriptions [skip ci]
---
.../Configuration/configPage.html | 175 ++++++++----------
1 file changed, 73 insertions(+), 102 deletions(-)
diff --git a/Jellyfin.Plugin.Seasonals/Configuration/configPage.html b/Jellyfin.Plugin.Seasonals/Configuration/configPage.html
index 812a88f..f8156df 100644
--- a/Jellyfin.Plugin.Seasonals/Configuration/configPage.html
+++ b/Jellyfin.Plugin.Seasonals/Configuration/configPage.html
@@ -136,12 +136,10 @@
Enable the autumn theme effects in general (e.g. for automation).
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
Display sunbeams at the top of the screen.
+
+
@@ -648,22 +631,20 @@
Enable the Summer theme in general (e.g. for automation).
-
-
Enable the Carnival theme in general (e.g. for automation).
-
-
-
-
-
-
Sports
@@ -772,8 +747,6 @@
Enable the sports theme effects in general (e.g. for automation).
-
-
-
-
-
-
Enable god rays from the top.
-
-
-
@@ -1231,6 +1191,7 @@
@@ -1242,6 +1203,7 @@
@@ -1253,12 +1215,14 @@
@@ -1270,6 +1234,7 @@
@@ -1281,20 +1246,24 @@
@@ -1306,6 +1275,7 @@
@@ -1317,6 +1287,7 @@
@@ -1693,7 +1664,7 @@
// EarthDay
document.querySelector('#EnableEarthDay').checked = config.EarthDay.EnableEarthDay;
- document.querySelector('#EarthDayVineCount').value = config.EarthDay.VineCount;
+ document.querySelector('#EarthDayFlowersCount').value = config.EarthDay.FlowersCount;
// Easter
@@ -2072,7 +2043,7 @@
// Earth Day
config.EarthDay.EnableEarthDay = document.querySelector('#EnableEarthDay').checked;
- config.EarthDay.VineCount = parseInt(document.querySelector('#EarthDayVineCount').value);
+ config.EarthDay.FlowersCount = parseInt(document.querySelector('#EarthDayFlowersCount').value);
// Eurovision
config.Eurovision.EnableEurovision = document.querySelector('#EnableEurovision').checked;
@@ -2195,7 +2166,7 @@
// Earth Day
config.EarthDay.EnableEarthDay = document.querySelector('#EnableEarthDay').checked;
- config.EarthDay.VineCount = parseInt(document.querySelector('#EarthDayVineCount').value);
+ config.EarthDay.FlowersCount = parseInt(document.querySelector('#EarthDayFlowersCount').value);
// Eurovision (second pass - deduplicated)
config.Eurovision.EnableEurovision = document.querySelector('#EnableEurovision').checked;