diff --git a/CHANGES.md b/CHANGES.md index cb01c587..d211d2d2 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -65,6 +65,10 @@ * Change to separate "Set as wanted" to prevent disaster selection on Episode Overview page * Remove restriction to not display snatched eps link in footer on Episode Overview page * Change the shows episodes count text colour to visually separete from year numbers at the end of show names +* Change to add clarity to the subtitle and other columns on the Mass Update page +* Add tooltips to explain why any the 6 action columns are disabled when required on the Mass Update page +* Change to reclaimed screen estate by hiding unused columns on the Mass Update page +* Change order of option on Mass Edit page to be inline with show edit page * Fix release group not recognised from manually downloaded filename * Change to gracefully handle some "key not found" failures when TVDB or TVRage return "Not Found" during show updates * Change no longer stamp files where airdates are never diff --git a/gui/slick/css/style.css b/gui/slick/css/style.css index 49dad9e1..8fcd06cc 100644 --- a/gui/slick/css/style.css +++ b/gui/slick/css/style.css @@ -3310,6 +3310,10 @@ tablesorter.css vertical-align:middle } +.tablesorter .narrow.tablesorter-header{ + padding:4px 18px 4px 4px +} + .tablesorter thead .sorter-false{ background-image:none; padding:4px; diff --git a/gui/slick/interfaces/default/manage.tmpl b/gui/slick/interfaces/default/manage.tmpl index 6202e551..c4d25674 100644 --- a/gui/slick/interfaces/default/manage.tmpl +++ b/gui/slick/interfaces/default/manage.tmpl @@ -1,80 +1,92 @@ #import sickbeard #from sickbeard.common import * -#set global $title="Mass Update" -#set global $header="Mass Update" +#set global $title = 'Mass Update' +#set global $header = 'Mass Update' -#set global $sbPath="../.." +#set global $sbPath = '../..' -#set global $topmenu="manage" +#set global $topmenu = 'manage' #import os.path -#include $os.path.join($sickbeard.PROG_DIR, "gui/slick/interfaces/default/inc_top.tmpl") +#include $os.path.join($sickbeard.PROG_DIR, 'gui/slick/interfaces/default/inc_top.tmpl') +#set $has_any_sports = False +#set $has_any_anime = False +#set $has_any_flat_folders = False +#set $myShowList = $sickbeard.showList +$myShowList.sort(lambda x, y: cmp(x.name, y.name)) +#for $curShow in $myShowList + #set $has_any_sports |= bool($curShow.sports) + #set $has_any_anime |= bool($curShow.anime) + #set $has_any_flat_folders |= $bool(curShow.flatten_folders) +#end for -#if $varExists('header') +#if $varExists('header')