Added WEBDL 1080p

New: WEBDL 720p and 1080p are now separated
This commit is contained in:
Mark McDowall 2012-10-14 21:30:07 -07:00
commit 09665c2920
17 changed files with 92 additions and 55 deletions

View file

@ -18,7 +18,8 @@ namespace NzbDrone.Web.Models
public int SdtvMaxSize { get; set; }
public int DvdMaxSize { get; set; }
public int HdtvMaxSize { get; set; }
public int WebdlMaxSize { get; set; }
public int Webdl720pMaxSize { get; set; }
public int Webdl1080pMaxSize { get; set; }
public int Bluray720pMaxSize { get; set; }
public int Bluray1080pMaxSize { get; set; }
}

View file

@ -36,9 +36,13 @@ namespace NzbDrone.Web.Models
public bool Hdtv { get; set; }
public int HdtvId { get; set; }
[DisplayName("WEBDL")]
public bool Webdl { get; set; }
public int WebdlId { get; set; }
[DisplayName("WEBDL-720p")]
public bool Webdl720p { get; set; }
public int Webdl720pId { get; set; }
[DisplayName("WEBDL-1080p")]
public bool Webdl1080p { get; set; }
public int Webdl1080pId { get; set; }
[DisplayName("Bluray720p")]
public bool Bluray720p { get; set; }