Change alphabetically sort list at edit show/Exclude global ignore/require words.

This commit is contained in:
Prinz23 2024-05-30 16:05:46 +02:00 committed by JackDandy
parent 3610ee1bd2
commit a48a4ead37
2 changed files with 3 additions and 2 deletions

View file

@ -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)

View file

@ -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