mirror of
https://github.com/lidarr/lidarr.git
synced 2025-08-20 21:43:33 -07:00
Renamed some settings, added 2nd priority for sab
New: Separated priorities for new and old episodes when sent to SABnzbd
This commit is contained in:
parent
22dc51a52f
commit
eddbd4a97b
18 changed files with 150 additions and 54 deletions
|
@ -145,18 +145,25 @@ namespace NzbDrone.Core.Providers.Core
|
|||
set { SetValue("SabTvCategory", value); }
|
||||
}
|
||||
|
||||
public virtual SabPriorityType SabTvPriority
|
||||
public virtual SabPriorityType SabBacklogTvPriority
|
||||
{
|
||||
get { return (SabPriorityType)GetValueInt("SabTvPriority"); }
|
||||
get { return (SabPriorityType)GetValueInt("SabBacklogTvPriority"); }
|
||||
|
||||
set { SetValue("SabTvPriority", (int)value); }
|
||||
set { SetValue("SabBacklogTvPriority", (int)value); }
|
||||
}
|
||||
|
||||
public virtual String SabDropDirectory
|
||||
public virtual SabPriorityType SabRecentTvPriority
|
||||
{
|
||||
get { return GetValue("SabTvDropDirectory"); }
|
||||
get { return (SabPriorityType)GetValueInt("SabRecentTvPriority"); }
|
||||
|
||||
set { SetValue("SabTvDropDirectory", value); }
|
||||
set { SetValue("SabRecentTvPriority", (int)value); }
|
||||
}
|
||||
|
||||
public virtual String DownloadClientTvDirectory
|
||||
{
|
||||
get { return GetValue("DownloadClientTvDirectory"); }
|
||||
|
||||
set { SetValue("DownloadClientTvDirectory", value); }
|
||||
}
|
||||
|
||||
public virtual bool SortingIncludeSeriesName
|
||||
|
@ -557,7 +564,6 @@ namespace NzbDrone.Core.Providers.Core
|
|||
{
|
||||
EnsureCache();
|
||||
|
||||
|
||||
string dbValue;
|
||||
|
||||
if (cache.TryGetValue(key, out dbValue) && dbValue != null && !String.IsNullOrEmpty(dbValue))
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue