From 1df6fb37b109c224d4c803f7a05ea84b1b047b15 Mon Sep 17 00:00:00 2001 From: CodeDevMLH <145071728+CodeDevMLH@users.noreply.github.com> Date: Thu, 19 Feb 2026 18:51:28 +0100 Subject: [PATCH] now? --- .../Configuration/PluginConfiguration.cs | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/Jellyfin.Plugin.Seasonals/Configuration/PluginConfiguration.cs b/Jellyfin.Plugin.Seasonals/Configuration/PluginConfiguration.cs index 5bdd2a4..0daf36a 100644 --- a/Jellyfin.Plugin.Seasonals/Configuration/PluginConfiguration.cs +++ b/Jellyfin.Plugin.Seasonals/Configuration/PluginConfiguration.cs @@ -30,6 +30,7 @@ public class PluginConfiguration : BasePluginConfiguration Resurrection = new ResurrectionOptions(); Spring = new SpringOptions(); Summer = new SummerOptions(); + CherryBlossom = new CherryBlossomOptions(); Carnival = new CarnivalOptions(); } @@ -74,6 +75,7 @@ public class PluginConfiguration : BasePluginConfiguration public ResurrectionOptions Resurrection { get; set; } public SpringOptions Spring { get; set; } public SummerOptions Summer { get; set; } + public CherryBlossomOptions CherryBlossom { get; set; } public CarnivalOptions Carnival { get; set; } } @@ -191,7 +193,6 @@ public class ResurrectionOptions public class SpringOptions { - public int PetalCount { get; set; } = 25; public int PollenCount { get; set; } = 15; public int LadybugCount { get; set; } = 5; public int SunbeamCount { get; set; } = 5; @@ -219,3 +220,12 @@ public class CarnivalOptions public bool EnableRandomCarnivalMobile { get; set; } = false; public bool EnableDifferentDuration { get; set; } = true; } + +public class CherryBlossomOptions +{ + public int PetalCount { get; set; } = 25; + public bool EnableCherryBlossom { get; set; } = true; + public bool EnableRandomCherryBlossom { get; set; } = true; + public bool EnableRandomCherryBlossomMobile { get; set; } = false; + public bool EnableDifferentDuration { get; set; } = true; +}