diff --git a/Jellyfin.Plugin.Themerr/Configuration/configPage.html b/Jellyfin.Plugin.Themerr/Configuration/configPage.html index bb7b499..3ca35a0 100644 --- a/Jellyfin.Plugin.Themerr/Configuration/configPage.html +++ b/Jellyfin.Plugin.Themerr/Configuration/configPage.html @@ -12,13 +12,29 @@

Themerr

+ Support + href="https://app.lizardbyte.dev/support">Support Center +
+

This plugin relies on the TMDB provider. Please make sure it is enabled!

-
+
@@ -38,7 +54,7 @@

Themerr

Save -
+
-
-
+
+
- + + + + @@ -125,6 +144,15 @@

Themerr

}) } + function toggleDiscordWidget() { + let discordWidget = document.querySelector('#DiscordWidget') + if (discordWidget.style.display === 'none') { + discordWidget.style.display = 'block' + } else { + discordWidget.style.display = 'none' + } + } + function updateProgress() { let request = { url: _ApiClient.getUrl('/Themerr/GetProgress'),