1
0
mirror of https://github.com/Radarr/Radarr.git synced 2026-04-25 22:37:27 -04:00

Remove Kodi specific settings from PHT Settings

This commit is contained in:
Mark McDowall
2015-05-13 08:01:39 -07:00
parent 9f73b2b7f0
commit c4e1a732dd
6 changed files with 39 additions and 7 deletions
@@ -1,4 +1,6 @@
using NzbDrone.Core.Notifications.Xbmc;
using System;
using NzbDrone.Core.Annotations;
using NzbDrone.Core.Notifications.Xbmc;
namespace NzbDrone.Core.Notifications.Plex
{
@@ -6,8 +8,28 @@ namespace NzbDrone.Core.Notifications.Plex
{
public PlexHomeTheaterSettings()
{
DisplayTime = 5;
Port = 3005;
Notify = true;
}
//These need to be kept in the same order as XBMC Settings, but we don't want them displayed
[FieldDefinition(2, Label = "Username", Type = FieldType.Hidden)]
public String Username { get; set; }
[FieldDefinition(3, Label = "Password", Type = FieldType.Hidden)]
public String Password { get; set; }
[FieldDefinition(5, Label = "GUI Notification", Type = FieldType.Hidden)]
public Boolean Notify { get; set; }
[FieldDefinition(6, Label = "Update Library", HelpText = "Update Library on Download & Rename?", Type = FieldType.Hidden)]
public Boolean UpdateLibrary { get; set; }
[FieldDefinition(7, Label = "Clean Library", HelpText = "Clean Library after update?", Type = FieldType.Hidden)]
public Boolean CleanLibrary { get; set; }
[FieldDefinition(8, Label = "Always Update", HelpText = "Update Library even when a video is playing?", Type = FieldType.Hidden)]
public Boolean AlwaysUpdate { get; set; }
}
}
@@ -23,7 +23,6 @@ namespace NzbDrone.Core.Notifications.Xbmc
public XbmcSettings()
{
DisplayTime = 5;
Port = 8080;
}