mirror of
https://github.com/SickGear/SickGear.git
synced 2024-12-01 00:43:37 +00:00
Merge pull request #779 from JackDandy/feature/ChangeUnaired
Remove check box to unaired episodes on display show page and unaired…
This commit is contained in:
commit
527cc06f07
3 changed files with 2 additions and 4 deletions
|
@ -167,8 +167,6 @@
|
|||
* Fix status reset of a snatched, downloaded, or archived episode when its date is set to never (no date) on the info
|
||||
source and there is no media file
|
||||
* Change only show unaired episodes on Manage/Backlog Overview and Manage/Episode Status Management where relevant
|
||||
* Change display show page, can mark unaired items with a date to "Wanted" to trigger a manual active backlog search
|
||||
provided search setting "Unaired episodes" is enabled
|
||||
|
||||
[develop changelog]
|
||||
* Change send nzb data to NZBGet for Anizb instead of url
|
||||
|
|
|
@ -483,7 +483,7 @@
|
|||
<tr class="#echo ($Overview.overviewStrings[$epCats[$epStr]], 'airdate-never')[$never_aired]##echo ('', ' archived')[ARCHIVED == int($epResult['status'])]# season-$curSeason seasonstyle">
|
||||
|
||||
<td class="col-checkbox">
|
||||
#if ($UNAIRED != int($epResult['status']) or $sickbeard.SEARCH_UNAIRED) and not $never_aired
|
||||
#if $UNAIRED != int($epResult['status']) and not $never_aired
|
||||
<input type="checkbox" class="epCheck" id="#echo $epStr#" name="#echo $epStr#">
|
||||
#end if
|
||||
</td>
|
||||
|
|
|
@ -106,7 +106,7 @@
|
|||
#continue
|
||||
#end try
|
||||
##
|
||||
#if $overview in ($Overview.QUAL, $Overview.WANTED) or ($sickbeard.SEARCH_UNAIRED and $Overview.UNAIRED == $overview and 0 < $curResult['season'])
|
||||
#if $overview in ($Overview.QUAL, $Overview.WANTED)
|
||||
#
|
||||
<tr class="seasonstyle $Overview.overviewStrings[$showCats[$curShow.indexerid][$whichStr]]">
|
||||
<td>$whichStr</td>
|
||||
|
|
Loading…
Reference in a new issue