From 8919592b241e2e35d6f96f17c7828d8838ce8c47 Mon Sep 17 00:00:00 2001 From: Mark McDowall Date: Mon, 5 Dec 2011 16:49:11 -0800 Subject: [PATCH 1/6] Only show one Existing Series per line now. --- NzbDrone.Web/Views/AddSeries/ExistingSeries.cshtml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/NzbDrone.Web/Views/AddSeries/ExistingSeries.cshtml b/NzbDrone.Web/Views/AddSeries/ExistingSeries.cshtml index e23039595..266883ba6 100644 --- a/NzbDrone.Web/Views/AddSeries/ExistingSeries.cshtml +++ b/NzbDrone.Web/Views/AddSeries/ExistingSeries.cshtml @@ -9,6 +9,7 @@ @if (Model.ExistingSeries.Count == 0) @@ -55,12 +60,12 @@ else @Html.Label(series.Item1) -
- +
+ @Html.Hidden("seriesId", series.Item3, new { @class = "seriesId" }) @Html.DropDownList(Guid.NewGuid().ToString(), Model.Quality, new { @class = "qualitySelector" }) - +
} diff --git a/NzbDrone.Web/Views/AddSeries/RootDir.cshtml b/NzbDrone.Web/Views/AddSeries/RootDir.cshtml index 18fad1f0e..2bacaf919 100644 --- a/NzbDrone.Web/Views/AddSeries/RootDir.cshtml +++ b/NzbDrone.Web/Views/AddSeries/RootDir.cshtml @@ -1,13 +1,4 @@  From 9e42f3b65fc723d7a5f661b27a343cd2ad8e6f0b Mon Sep 17 00:00:00 2001 From: Mark McDowall Date: Wed, 7 Dec 2011 17:01:26 -0800 Subject: [PATCH 5/6] Changed the menu font and sizing, no more blur. --- NzbDrone.Web/Content/NzbDrone.css | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/NzbDrone.Web/Content/NzbDrone.css b/NzbDrone.Web/Content/NzbDrone.css index 8c38379ef..34ec4e397 100644 --- a/NzbDrone.Web/Content/NzbDrone.css +++ b/NzbDrone.Web/Content/NzbDrone.css @@ -75,15 +75,15 @@ hr { display: block; float: left; - height: 28px; + height: 26px; padding: 5px 20px 8px 15px; text-decoration: none; text-align: center; text-transform: lowercase; - font-size: 23px; - font-weight: 300; + font-size: 21px; + font-weight: normal; vertical-align: middle; - font-family: "Segoe UI Light" , "Segoe UI" , Tahoma, Geneva, sans-serif; + font-family: "Segoe UI", "Segoe UI Light" , Tahoma, Geneva, sans-serif; } #menu a:hover From 058ca93576dd512231866be19bfa71ecbb93bf87 Mon Sep 17 00:00:00 2001 From: Mark McDowall Date: Wed, 7 Dec 2011 19:46:45 -0800 Subject: [PATCH 6/6] DiskScanJob changed to run every 6 hours, instead of every hour. --- NzbDrone.Core/Jobs/DiskScanJob.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/NzbDrone.Core/Jobs/DiskScanJob.cs b/NzbDrone.Core/Jobs/DiskScanJob.cs index fb1333ea5..b82accc84 100644 --- a/NzbDrone.Core/Jobs/DiskScanJob.cs +++ b/NzbDrone.Core/Jobs/DiskScanJob.cs @@ -34,7 +34,7 @@ namespace NzbDrone.Core.Jobs public int DefaultInterval { - get { return 60; } + get { return 360; } } public virtual void Start(ProgressNotification notification, int targetId, int secondaryTargetId)