Moved styles to a global.css stylesheet. Also added basic validation with a transition

This commit is contained in:
2026-02-16 16:08:12 -07:00
parent a720bba7a7
commit 462a2beea1
6 changed files with 119 additions and 44 deletions

View File

@@ -11,14 +11,9 @@ namespace Jellyfin.Plugin.MediaCleaner;
public class Configuration : BasePluginConfiguration
{
/// <summary>
/// Gets or sets the http address for your Radarr instance.
/// Gets or sets the http and port address for your Radarr instance.
/// </summary>
public string RadarrHTTPAddress { get; set; } = string.Empty;
/// <summary>
/// Gets or sets the port for your Radarr instance.
/// </summary>
public string RadarrPort { get; set; } = string.Empty;
public string RadarrAddress { get; set; } = string.Empty;
/// <summary>
/// Gets or sets the api for your Radarr instance.
@@ -26,14 +21,9 @@ public class Configuration : BasePluginConfiguration
public string RadarrAPIKey { get; set; } = string.Empty;
/// <summary>
/// Gets or sets the http address for your Sonarr instance.
/// Gets or sets the http and port address for your Sonarr instance.
/// </summary>
public string SonarrHTTPAddress { get; set; } = string.Empty;
/// <summary>
/// Gets or sets the port for your Sonarr instance.
/// </summary>
public string SonarrPort { get; set; } = string.Empty;
public string SonarrAddress { get; set; } = string.Empty;
/// <summary>
/// Gets or sets the api for your Sonarr instance.