diff --git a/Jellyfin.Plugin.Seasonals/Configuration/configPage.html b/Jellyfin.Plugin.Seasonals/Configuration/configPage.html index 5ef6d9d..812a88f 100644 --- a/Jellyfin.Plugin.Seasonals/Configuration/configPage.html +++ b/Jellyfin.Plugin.Seasonals/Configuration/configPage.html @@ -958,6 +958,11 @@ +
+ + +
Amount of sea creatures shown on mobile. Minimum 0.
+
@@ -1595,7 +1600,7 @@ Dashboard.showLoadingMsg(); ApiClient.getPluginConfiguration(SeasonalsConfigPage.pluginUniqueId).then(function (config) { - + try { document.querySelector('#SeasonalsIsEnabled').checked = config.IsEnabled; document.querySelector('#SeasonalsSelectedSeason').value = config.SelectedSeason; document.querySelector('#SeasonalsAutomateSeasonSelection').checked = config.AutomateSeasonSelection; @@ -1895,7 +1900,11 @@ document.querySelector('#EidLanternCount').value = config.Eid.LanternCount !== undefined ? config.Eid.LanternCount : 8; document.querySelector('#EidLanternCountMobile').value = config.Eid.LanternCountMobile !== undefined ? config.Eid.LanternCountMobile : 3; - Dashboard.hideLoadingMsg(); + } catch(e) { + console.error('[Seasonals] Error loading config:', e); + } finally { + Dashboard.hideLoadingMsg(); + } }); }); diff --git a/Jellyfin.Plugin.Seasonals/Jellyfin.Plugin.Seasonals.csproj b/Jellyfin.Plugin.Seasonals/Jellyfin.Plugin.Seasonals.csproj index 301ee0f..9c28293 100644 --- a/Jellyfin.Plugin.Seasonals/Jellyfin.Plugin.Seasonals.csproj +++ b/Jellyfin.Plugin.Seasonals/Jellyfin.Plugin.Seasonals.csproj @@ -12,7 +12,7 @@ Jellyfin Seasonals Plugin CodeDevMLH - 2.0.0.5 + 2.0.0.6 https://github.com/CodeDevMLH/Jellyfin-Seasonals diff --git a/manifest.json b/manifest.json index 41922b2..17b4886 100644 --- a/manifest.json +++ b/manifest.json @@ -9,7 +9,7 @@ "imageUrl": "https://git.mahom03-spacecloud.de/CodeDevMLH/Jellyfin-Seasonals-Plugin/raw/branch/main/logo.png", "versions": [ { - "version": "2.0.0.5", + "version": "2.0.0.6", "changelog": "- feat: add new themes:\n- birthday (ballons, computer mouse interactive)\n- earthday\n- Eid al-Fitr (sugar feast/ramadan)\n- eurovision\n- Film Noir filter\n- Friday the 13\n- frost\n- Mario Day\n- Matrix\n- Oktoberfest\n- Olympia\n- Oscar Awards\n- Pride\n- Rain\n- Spooky\n- Sports (many selectable balls of ball games like handball, football (soccer) or tennis)\n- StarWars Day\n- Storm (Epilepsy Warning!!!, Thunderstorm)\n- refactored spring (new lawn with flowers), easter (new easter bunny, new lawn with flowers and ester eggs), halloween (add spiders (computer mouse sensitive), add mice, add fog) \n- fix: many improvements and bug fixes e.g. changed top to translate/transform for performance reasons", "targetAbi": "10.11.0.0", "sourceUrl": "https://git.mahom03-spacecloud.de/CodeDevMLH/Jellyfin-Seasonals-Plugin/releases/download/v2.0.0.5/Jellyfin.Plugin.Seasonals.zip",