Ability to manually add a show has been added.

UI cleanup for adding series (new, existing and manual).
This commit is contained in:
Mark McDowall 2011-03-17 00:40:23 -07:00
commit 636f352599
24 changed files with 767 additions and 137 deletions

View file

@ -171,15 +171,18 @@ namespace NzbDrone.Core
{
//Setup the default providers in the Providers table
string nzbMatrixRss = "http://rss.nzbmatrix.com/rss.php?page=download&username={USERNAME}&apikey={APIKEY}&subcat=6&english=1";
string nzbMatrixRss = "http://rss.nzbmatrix.com/rss.php?page=download&username={USERNAME}&apikey={APIKEY}&subcat=6,41&english=1";
string nzbMatrixApi = "http://rss.nzbmatrix.com/rss.php?page=download&username={USERNAME}&apikey={APIKEY}&subcat=6,41&english=1&age={AGE}&term={TERM}";
string nzbsOrgRss = "http://nzbs.org/rss.php?type=1&dl=1&num=100&i={UID}&h={HASH}";
string nzbsOrgApi = String.Empty;
string nzbsrusRss = "http://www.nzbsrus.com/rssfeed.php?cat=91,75&i={UID}&h={HASH}";
string nzbsrusApi = String.Empty;
var nzbMatrixIndexer = new Indexer
{
IndexerName = "NzbMatrix",
RssUrl = nzbMatrixRss,
ApiUrl = String.Empty,
ApiUrl = nzbMatrixApi,
Order = 1
};
@ -187,7 +190,7 @@ namespace NzbDrone.Core
{
IndexerName = "NzbsOrg",
RssUrl = nzbsOrgRss,
ApiUrl = String.Empty,
ApiUrl = nzbsOrgApi,
Order = 2
};
@ -195,7 +198,7 @@ namespace NzbDrone.Core
{
IndexerName = "Nzbsrus",
RssUrl = nzbsrusRss,
ApiUrl = String.Empty,
ApiUrl = nzbsrusApi,
Order = 3
};