mirror of https://github.com/Radarr/Radarr
New: Added Network to Series Grid.
Fixed logging for RetentionSpecification.
This commit is contained in:
parent
5eed576e42
commit
4d918ff683
|
@ -0,0 +1,15 @@
|
||||||
|
using System.Data;
|
||||||
|
using Migrator.Framework;
|
||||||
|
|
||||||
|
namespace NzbDrone.Core.Datastore.Migrations
|
||||||
|
{
|
||||||
|
|
||||||
|
[Migration(20120228)]
|
||||||
|
public class Migration20120228 : NzbDroneMigration
|
||||||
|
{
|
||||||
|
protected override void MainDbUpgrade()
|
||||||
|
{
|
||||||
|
Database.AddColumn("Series", "Network", DbType.String, ColumnProperty.Null);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
|
@ -222,6 +222,7 @@
|
||||||
<Compile Include="Datastore\MigrationLogger.cs" />
|
<Compile Include="Datastore\MigrationLogger.cs" />
|
||||||
<Compile Include="Datastore\MigrationsHelper.cs" />
|
<Compile Include="Datastore\MigrationsHelper.cs" />
|
||||||
<Compile Include="Datastore\CustomeMapper.cs" />
|
<Compile Include="Datastore\CustomeMapper.cs" />
|
||||||
|
<Compile Include="Datastore\Migrations\Migration20120228.cs" />
|
||||||
<Compile Include="Datastore\Migrations\Migration20120227.cs" />
|
<Compile Include="Datastore\Migrations\Migration20120227.cs" />
|
||||||
<Compile Include="Datastore\Migrations\Migration20120220.cs" />
|
<Compile Include="Datastore\Migrations\Migration20120220.cs" />
|
||||||
<Compile Include="Datastore\Migrations\Migration20120123.cs" />
|
<Compile Include="Datastore\Migrations\Migration20120123.cs" />
|
||||||
|
|
|
@ -25,7 +25,7 @@ namespace NzbDrone.Core.Providers.DecisionEngine
|
||||||
logger.Trace("Checking if report meets retention requirements. {0}", subject.Age);
|
logger.Trace("Checking if report meets retention requirements. {0}", subject.Age);
|
||||||
if (_configProvider.Retention > 0 && subject.Age > _configProvider.Retention)
|
if (_configProvider.Retention > 0 && subject.Age > _configProvider.Retention)
|
||||||
{
|
{
|
||||||
logger.Trace("Quality {0} rejected by user's retention limit", subject.Age);
|
logger.Trace("Report age: {0} rejected by user's retention limit", subject.Age);
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -46,7 +46,7 @@ namespace NzbDrone.Core.Providers
|
||||||
{
|
{
|
||||||
var series = _database
|
var series = _database
|
||||||
.Fetch<Series, QualityProfile>(@"SELECT Series.SeriesId, Series.Title, Series.CleanTitle, Series.Status, Series.Overview, Series.AirsDayOfWeek,Series.AirTimes,
|
.Fetch<Series, QualityProfile>(@"SELECT Series.SeriesId, Series.Title, Series.CleanTitle, Series.Status, Series.Overview, Series.AirsDayOfWeek,Series.AirTimes,
|
||||||
Series.Language, Series.Path, Series.Monitored, Series.QualityProfileId, Series.SeasonFolder, Series.BacklogSetting,
|
Series.Language, Series.Path, Series.Monitored, Series.QualityProfileId, Series.SeasonFolder, Series.BacklogSetting, Series.Network,
|
||||||
SUM(CASE WHEN Ignored = 0 AND Airdate <= @0 THEN 1 ELSE 0 END) AS EpisodeCount,
|
SUM(CASE WHEN Ignored = 0 AND Airdate <= @0 THEN 1 ELSE 0 END) AS EpisodeCount,
|
||||||
SUM(CASE WHEN Episodes.Ignored = 0 AND Episodes.EpisodeFileId > 0 AND Episodes.AirDate <= @0 THEN 1 ELSE 0 END) as EpisodeFileCount,
|
SUM(CASE WHEN Episodes.Ignored = 0 AND Episodes.EpisodeFileId > 0 AND Episodes.AirDate <= @0 THEN 1 ELSE 0 END) as EpisodeFileCount,
|
||||||
MAX(Episodes.SeasonNumber) as SeasonCount, MIN(CASE WHEN AirDate < @0 OR Ignored = 1 THEN NULL ELSE AirDate END) as NextAiring,
|
MAX(Episodes.SeasonNumber) as SeasonCount, MIN(CASE WHEN AirDate < @0 OR Ignored = 1 THEN NULL ELSE AirDate END) as NextAiring,
|
||||||
|
@ -55,8 +55,8 @@ namespace NzbDrone.Core.Providers
|
||||||
INNER JOIN QualityProfiles ON Series.QualityProfileId = QualityProfiles.QualityProfileId
|
INNER JOIN QualityProfiles ON Series.QualityProfileId = QualityProfiles.QualityProfileId
|
||||||
LEFT JOIN Episodes ON Series.SeriesId = Episodes.SeriesId
|
LEFT JOIN Episodes ON Series.SeriesId = Episodes.SeriesId
|
||||||
WHERE Series.LastInfoSync IS NOT NULL
|
WHERE Series.LastInfoSync IS NOT NULL
|
||||||
GROUP BY Series.SeriesId, Series.Title, Series.CleanTitle, Series.Status, Series.Overview, Series.AirsDayOfWeek,Series.AirTimes,
|
GROUP BY Series.SeriesId, Series.Title, Series.CleanTitle, Series.Status, Series.Overview, Series.AirsDayOfWeek, Series.AirTimes,
|
||||||
Series.Language, Series.Path, Series.Monitored, Series.QualityProfileId, Series.SeasonFolder, Series.BacklogSetting,
|
Series.Language, Series.Path, Series.Monitored, Series.QualityProfileId, Series.SeasonFolder, Series.BacklogSetting, Series.Network,
|
||||||
QualityProfiles.QualityProfileId, QualityProfiles.Name, QualityProfiles.Cutoff, QualityProfiles.SonicAllowed", DateTime.Today);
|
QualityProfiles.QualityProfileId, QualityProfiles.Name, QualityProfiles.Cutoff, QualityProfiles.SonicAllowed", DateTime.Today);
|
||||||
|
|
||||||
return series;
|
return series;
|
||||||
|
@ -97,6 +97,7 @@ namespace NzbDrone.Core.Providers
|
||||||
series.LastInfoSync = DateTime.Now;
|
series.LastInfoSync = DateTime.Now;
|
||||||
series.Runtime = (int)tvDbSeries.Runtime;
|
series.Runtime = (int)tvDbSeries.Runtime;
|
||||||
series.BannerUrl = tvDbSeries.BannerPath;
|
series.BannerUrl = tvDbSeries.BannerPath;
|
||||||
|
series.Network = tvDbSeries.Network;
|
||||||
|
|
||||||
UpdateSeries(series);
|
UpdateSeries(series);
|
||||||
return series;
|
return series;
|
||||||
|
|
|
@ -46,6 +46,8 @@ namespace NzbDrone.Core.Repository
|
||||||
|
|
||||||
public BacklogSettingType BacklogSetting { get; set; }
|
public BacklogSettingType BacklogSetting { get; set; }
|
||||||
|
|
||||||
|
public string Network { get; set; }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Gets or sets a value indicating whether this <see cref="Series"/> is hidden.
|
/// Gets or sets a value indicating whether this <see cref="Series"/> is hidden.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
|
|
|
@ -193,6 +193,7 @@ namespace NzbDrone.Web.Controllers
|
||||||
Path = s.Path,
|
Path = s.Path,
|
||||||
QualityProfileId = s.QualityProfileId,
|
QualityProfileId = s.QualityProfileId,
|
||||||
QualityProfileName = s.QualityProfile.Name,
|
QualityProfileName = s.QualityProfile.Name,
|
||||||
|
Network = s.Network,
|
||||||
SeasonFolder = s.SeasonFolder,
|
SeasonFolder = s.SeasonFolder,
|
||||||
BacklogSetting = (int)s.BacklogSetting,
|
BacklogSetting = (int)s.BacklogSetting,
|
||||||
Status = s.Status,
|
Status = s.Status,
|
||||||
|
|
|
@ -26,6 +26,7 @@ namespace NzbDrone.Web.Models
|
||||||
public string NextAiring { get; set; }
|
public string NextAiring { get; set; }
|
||||||
public string NextAiringSorter { get; set; }
|
public string NextAiringSorter { get; set; }
|
||||||
public string Details { get; set; }
|
public string Details { get; set; }
|
||||||
|
public string Network { get; set; }
|
||||||
|
|
||||||
public IList<int> Seasons { get; set; }
|
public IList<int> Seasons { get; set; }
|
||||||
|
|
||||||
|
|
|
@ -88,6 +88,7 @@
|
||||||
<th style="width: auto">Title</th>
|
<th style="width: auto">Title</th>
|
||||||
<th style="width: 100px">Seasons</th>
|
<th style="width: 100px">Seasons</th>
|
||||||
<th style="width: 100px">Quality</th>
|
<th style="width: 100px">Quality</th>
|
||||||
|
<th style="width: 100px">Network</th>
|
||||||
<th style="width: 140px">Next Airing</th>
|
<th style="width: 140px">Next Airing</th>
|
||||||
<th style="width: 100px">Episodes</th>
|
<th style="width: 100px">Episodes</th>
|
||||||
|
|
||||||
|
@ -170,6 +171,7 @@
|
||||||
}, //Title
|
}, //Title
|
||||||
{ sWidth: '100px', "mDataProp": "SeasonsCount", "bSortable": false }, //Seasons
|
{ sWidth: '100px', "mDataProp": "SeasonsCount", "bSortable": false }, //Seasons
|
||||||
{ sWidth: '100px', "mDataProp": "QualityProfileName" }, //Quality
|
{ sWidth: '100px', "mDataProp": "QualityProfileName" }, //Quality
|
||||||
|
{ sWidth: '100px', "mDataProp": "Network" }, //Network
|
||||||
{ sWidth: '120px', "mDataProp": function (source, type, val) {
|
{ sWidth: '120px', "mDataProp": function (source, type, val) {
|
||||||
// 'display' and 'filter' use our fancy naming
|
// 'display' and 'filter' use our fancy naming
|
||||||
if (type === 'display' || type === 'filter') {
|
if (type === 'display' || type === 'filter') {
|
||||||
|
|
Loading…
Reference in New Issue