diff --git a/CHANGES.md b/CHANGES.md index 88e5390d..fb85581b 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -193,6 +193,8 @@ * Fix button "Checkout branch" when stuck on disabled * Add 'Download Log' to 'Logs & Errors' page * Change consolidate shutdown with restart, improve systemd support, bring order to on-init globals +* Change speed improvement in finding needed categories/qualities (sd, hd, uhd) +* Change add guidance when using the "unknown" quality selection [develop changelog] * Change send nzb data to NZBGet for Anizb instead of url @@ -229,6 +231,9 @@ * Change remove deprecated providers being saved to config * Change prevent a missing slash typo and correct develop typo after a network outage * Change send download logfile as stream +* Fix launch browser during startup +* Change don't exclude "unknown" from search +* Fix UHD category select in Recent Search ### 0.11.16 (2016-10-16 17:30:00 UTC) diff --git a/SickBeard.py b/SickBeard.py index 86bd6292..85d22764 100755 --- a/SickBeard.py +++ b/SickBeard.py @@ -220,7 +220,7 @@ class SickGear(object): # Run as a double forked daemon if o in ('-d', '--daemon'): self.run_as_daemon = True - # When running as daemon disable consoleLogging and don't start browser + # When running as daemon disable console_logging and don't start browser self.console_logging = False self.no_launch = True diff --git a/gui/slick/css/dark.css b/gui/slick/css/dark.css index 69e9a7dd..e06d3a68 100644 --- a/gui/slick/css/dark.css +++ b/gui/slick/css/dark.css @@ -1257,8 +1257,8 @@ div.formpaginate .prev, div.formpaginate .next{ background:#2265A1 } -#customQualityWrapper div.component-group-desc p{ - color:#666 +#customQualityWrapper .tip-text p{ + color:#888 } /* ======================================================================= diff --git a/gui/slick/css/light.css b/gui/slick/css/light.css index c42a8bcb..a694fb4b 100644 --- a/gui/slick/css/light.css +++ b/gui/slick/css/light.css @@ -1212,7 +1212,7 @@ div.formpaginate .prev, div.formpaginate .next{ background:#57442b } -#customQualityWrapper div.component-group-desc p{ +#customQualityWrapper .tip-text p{ color:#666 } diff --git a/gui/slick/css/style.css b/gui/slick/css/style.css index e506273b..cddcbb19 100644 --- a/gui/slick/css/style.css +++ b/gui/slick/css/style.css @@ -966,11 +966,17 @@ div.formpaginate{ margin-right:6px } -#edit-show #customQualityWrapper div.component-group-desc p, -#addShowForm #customQualityWrapper div.component-group-desc p{ +#edit-show #customQualityWrapper .tip-text p, +#addShowForm #customQualityWrapper .tip-text p, +#edit-show #customQualityWrapper .tip-text em, +#addShowForm #customQualityWrapper .tip-text em{ font-size:14px } +#addShowForm .stepDiv #customQuality.show-if-quality-custom span.component-desc p{ + font-size:12px +} + #addShowForm #nameToSearch{ width:460px; margin-top:0 diff --git a/gui/slick/interfaces/default/inc_qualityChooser.tmpl b/gui/slick/interfaces/default/inc_qualityChooser.tmpl index 8770aed2..199383b0 100644 --- a/gui/slick/interfaces/default/inc_qualityChooser.tmpl +++ b/gui/slick/interfaces/default/inc_qualityChooser.tmpl @@ -21,30 +21,40 @@