Merge branch 'feature/ChangeEditShowSortIgnoreRequire' into dev

This commit is contained in:
JackDandy 2024-06-14 00:48:54 +01:00
commit 5026cd295c
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