diff --git a/CHANGES.md b/CHANGES.md index 6ee56e23..e7cccf31 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -32,12 +32,14 @@ * Change suppress HTTPS verification InsecureRequestWarning as many sites use self-certified certificates * Fix API endpoint Episode.SetStatus to "Wanted" * Change airdateModifyStamp to handle hour that is "00:00" -* Fix a handler when ShowData is not available in tvdb and tvrage APIs -* Fix a handler when EpisodeData is not available in tvdb and tvrage APIs +* Fix a handler when ShowData is not available in TVDB and TVRage APIs +* Fix a handler when EpisodeData is not available in TVDB and TVRage APIs +* Add TVRage "Canceled/Ended" as "Ended" status to sort on Simple Layout of Show List page * Fix qtips on Display Show and Config Post Processing [develop changelog] * Fix typo for commit "ShowData handler" i.e. SHA-1:3eec217 +* Fix adding show from TVRage API ### 0.3.1 (2014-11-19 16:40:00 UTC) diff --git a/gui/slick/interfaces/default/home.tmpl b/gui/slick/interfaces/default/home.tmpl index da6caebc..e18ec11a 100644 --- a/gui/slick/interfaces/default/home.tmpl +++ b/gui/slick/interfaces/default/home.tmpl @@ -280,10 +280,13 @@ $myShowList.sort(lambda x, y: cmp(x.name, y.name)) #set $cur_downloaded = 0 #set $cur_total = 0 #set $download_stat_tip = '' - #if None is not $curShow.status and re.search(r'(?i)(?:new|returning)\s*series', $curShow.status) - #set $display_status = 'Continuing' - #else - #set $display_status = $curShow.status + #set $display_status = $curShow.status + #if None is not $display_status + #if re.search(r'(?i)(?:new|returning)\s*series', $curShow.status) + #set $display_status = 'Continuing' + #else if re.search(r'(?i)(?:nded)', $curShow.status) + #set $display_status = 'Ended' + #end if #end if #if $curShow.indexerid in $show_stat: @@ -396,7 +399,7 @@ $myShowList.sort(lambda x, y: cmp(x.name, y.name))