Merge branch 'master' into develop
10
CHANGES.md
|
@ -21,6 +21,16 @@
|
|||
* Update Six compatibility library 1.9.0 (r400) to 1.10.0 (r405)
|
||||
|
||||
|
||||
### 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
|
||||
|
|
|
@ -3577,6 +3577,7 @@ div.formpaginate{
|
|||
}
|
||||
|
||||
.step-outer{
|
||||
padding-top:10px;
|
||||
overflow:hidden
|
||||
}
|
||||
|
||||
|
|
Before Width: | Height: | Size: 4 KiB |
BIN
gui/slick/images/network/audience network.png
Normal file
After Width: | Height: | Size: 2 KiB |
Before Width: | Height: | Size: 765 B After Width: | Height: | Size: 1.3 KiB |
BIN
gui/slick/images/network/channel 5 (uk).png
Normal file
After Width: | Height: | Size: 4.2 KiB |
Before Width: | Height: | Size: 1.1 KiB |
BIN
gui/slick/images/network/five us.png
Normal file
After Width: | Height: | Size: 2.7 KiB |
BIN
gui/slick/images/network/fox channel.png
Normal file
After Width: | Height: | Size: 5.4 KiB |
BIN
gui/slick/images/network/freeform.png
Normal file
After Width: | Height: | Size: 6.1 KiB |
BIN
gui/slick/images/network/global.png
Normal file
After Width: | Height: | Size: 5.1 KiB |
BIN
gui/slick/images/network/hbo canada.png
Normal file
After Width: | Height: | Size: 1.6 KiB |
BIN
gui/slick/images/network/more4.png
Normal file
After Width: | Height: | Size: 1.2 KiB |
BIN
gui/slick/images/network/rooster teeth.png
Normal file
After Width: | Height: | Size: 5.4 KiB |
BIN
gui/slick/images/network/tf1.png
Normal file
After Width: | Height: | Size: 2.1 KiB |
BIN
gui/slick/images/network/toon disney.png
Normal file
After Width: | Height: | Size: 4.7 KiB |
BIN
gui/slick/images/network/we tv.png
Normal file
After Width: | Height: | Size: 1.4 KiB |
BIN
gui/slick/images/network/xbox video.png
Normal file
After Width: | Height: | Size: 3.2 KiB |
BIN
gui/slick/images/network/קשת.png
Normal file
After Width: | Height: | Size: 2.4 KiB |
Before Width: | Height: | Size: 450 B After Width: | Height: | Size: 433 B |
|
@ -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()
|
||||
|
||||
|
|