feat: update version to 1.3.3.0 and modify manifest with new changelog, checksum, and timestamp

This commit is contained in:
CodeDevMLH
2025-12-17 23:36:09 +01:00
parent 4bb37f89f3
commit d73b1d17ff
8 changed files with 16 additions and 7 deletions

View File

@@ -12,7 +12,7 @@
<!-- <TreatWarningsAsErrors>false</TreatWarningsAsErrors> -->
<Title>Jellyfin Seasonals Plugin</Title>
<Authors>CodeDevMLH</Authors>
<Version>1.3.2.0</Version>
<Version>1.3.3.0</Version>
<RepositoryUrl>https://github.com/CodeDevMLH/jellyfin-plugin-seasonals</RepositoryUrl>
</PropertyGroup>

View File

@@ -159,8 +159,9 @@ async function initializeTheme() {
const response = await fetch('/Seasonals/Config');
if (response.ok) {
const config = await response.json();
automateThemeSelection = config.automateSeasonSelection;
defaultTheme = config.selectedSeason;
// automateThemeSelection = config.automateSeasonSelection;
automateThemeSelection = config.AutomateSeasonSelection;
defaultTheme = config.SelectedSeason;
window.SeasonalsPluginConfig = config;
console.log('Seasonals Config loaded:', config);
} else {