Fix Search Settings display fail.

Fix Search Settings display fail.
Add Audience, Channel 5 (UK), Five US, Fox Channel, FreeForm, Global, Keshet, HBO Canada, More4, Rooster Teeth, TF1, Toon Disney, WE tv, XBox Video.
Change BET network logo.
Change provider TB icon.
Delete 3fm and redundant network logo.
This commit is contained in:
JackDandy 2016-01-17 16:59:09 +00:00
parent ab457c78c0
commit 6a22484bc0
21 changed files with 16 additions and 3 deletions

View file

@ -1,4 +1,14 @@
### 0.11.2 (2016-01-14 21:10:00 UTC)
### 0.11.3 (2016-01-16 20:00:00 UTC)
* Fix Search Settings display fail
* Add Audience, Channel 5 (UK), Five US, Fox Channel, FreeForm, Global, HBO Canada, Keshet, More4, Rooster Teeth, TF1,
Toon Disney, WE tv, XBox Video
* Change BET network logo
* Change provider TB icon
* Delete 3fm and redundant network logo
### 0.11.2 (2016-01-14 21:10:00 UTC)
* Fix issue with "Add Existing Shows" on new installations

View file

@ -3577,6 +3577,7 @@ div.formpaginate{
}
.step-outer{
padding-top:10px;
overflow:hidden
}

Binary file not shown.

Before

Width:  |  Height:  |  Size: 4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 765 B

After

Width:  |  Height:  |  Size: 1.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.2 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.4 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 450 B

After

Width:  |  Height:  |  Size: 433 B

View file

@ -4066,10 +4066,12 @@ class ConfigSearch(Config):
t = PageTemplate(headers=self.request.headers, file='config_search.tmpl')
t.submenu = self.ConfigMenu
t.using_rls_ignore_words = [(show.indexerid, show.name)
for show in sickbeard.showList if show.rls_ignore_words.strip()]
for show in sickbeard.showList if show.rls_ignore_words and
show.rls_ignore_words.strip()]
t.using_rls_ignore_words.sort(lambda x, y: cmp(x[1], y[1]), reverse=False)
t.using_rls_require_words = [(show.indexerid, show.name)
for show in sickbeard.showList if show.rls_require_words.strip()]
for show in sickbeard.showList if show.rls_require_words and
show.rls_require_words.strip()]
t.using_rls_require_words.sort(lambda x, y: cmp(x[1], y[1]), reverse=False)
return t.respond()