mirror of
https://github.com/SickGear/SickGear.git
synced 2024-11-24 22:05:05 +00:00
Merge branch 'feature/ChangeEditShowSortIgnoreRequire' into dev
This commit is contained in:
commit
5026cd295c
2 changed files with 3 additions and 2 deletions
|
@ -22,6 +22,7 @@
|
|||
* Update urllib3 2.0.7 (56f01e0) to 2.2.1 (54d6edf)
|
||||
* Change growl notifier location for Apprise update refactor
|
||||
* Change systemd remove py2 and add basic hardening options
|
||||
* Change alphabetically sort list at edit show/Exclude global ignore/require words
|
||||
|
||||
|
||||
### 3.31.0 (2024-06-05 08:00:00 UTC)
|
||||
|
|
|
@ -166,7 +166,7 @@
|
|||
#set $options = ''
|
||||
#set $selected = ' selected=\"selected\"'
|
||||
#set $num_selected = 0
|
||||
#for $gw in $sickgear.IGNORE_WORDS:
|
||||
#for $gw in sorted($sickgear.IGNORE_WORDS, key=$str.lower):
|
||||
#set $sel_html = ''
|
||||
#if $gw in $show_obj.rls_global_exclude_ignore
|
||||
#set $sel_html = $selected
|
||||
|
@ -202,7 +202,7 @@
|
|||
#set $options = ''
|
||||
#set $selected = ' selected=\"selected\"'
|
||||
#set $num_selected = 0
|
||||
#for $gw in $sickgear.REQUIRE_WORDS:
|
||||
#for $gw in sorted($sickgear.REQUIRE_WORDS, key=$str.lower):
|
||||
#set $sel_html = ''
|
||||
#if $gw in $show_obj.rls_global_exclude_require
|
||||
#set $sel_html = $selected
|
||||
|
|
Loading…
Reference in a new issue