mirror of
https://github.com/lidarr/lidarr.git
synced 2025-08-21 14:03:29 -07:00
ConfigFileProvider will now add missing config values automatically, with a default value.
Added Handbrake and AtomicParsley wrappers for iPod video conversion.
This commit is contained in:
parent
d9b2c72125
commit
f973c74c87
9 changed files with 376 additions and 20 deletions
9
NzbDrone.Core/Model/AtomicParsleyTitleType.cs
Normal file
9
NzbDrone.Core/Model/AtomicParsleyTitleType.cs
Normal file
|
@ -0,0 +1,9 @@
|
|||
namespace NzbDrone.Core.Model
|
||||
{
|
||||
public enum AtomicParsleyTitleType
|
||||
{
|
||||
None = 0,
|
||||
EpisodeNumber = 1,
|
||||
Both = 2
|
||||
}
|
||||
}
|
13
NzbDrone.Core/Model/AuthenticationType.cs
Normal file
13
NzbDrone.Core/Model/AuthenticationType.cs
Normal file
|
@ -0,0 +1,13 @@
|
|||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
|
||||
namespace NzbDrone.Core.Model
|
||||
{
|
||||
public enum AuthenticationType
|
||||
{
|
||||
Anonymous = 0,
|
||||
Windows = 1
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue