expand front cover regex

This commit is contained in:
xenofem 2025-03-27 11:07:52 -04:00
parent d27d2688e9
commit 0ef0f519ef

View file

@ -67,7 +67,7 @@ LANGUAGE_REGEXES = {
TEXTLESS_REGEX = re.compile('(台詞|セリフ|せりふ|テキスト|文字|文章)((な|無)し|抜き)|notext|textless', re.I)
FXLESS_REGEX = re.compile('効果音(な|無)し', re.I)
FRONT_COVER_REGEX = re.compile('(?<!裏)表紙(?!裏)|(?<!back[-_ ])(?<!back)cover|(?<!ura[-_ ])(?<!ura)hyou?sh?i(?![-_ ]?ura)', re.I)
FRONT_COVER_REGEX = re.compile('(?<!裏)表紙(?!裏)|(?<!back[-_ ])(?<!back)cover|(?<!ura[-_ ])(?<!ura)hyo(u|sh?i)(?!.*ura)', re.I)
BACK_COVER_REGEX = re.compile('裏表紙|hyou?sh?i[-_ ]?ura|ura[-_ ]?hyou?sh?i', re.I)
BONUS_REGEX = re.compile('設定|キャラ|特典|ポスター|bonus|描き下ろし', re.I)
EPILOGUE_REGEX = re.compile('after|後日談|おまけ|omake|オマケ', re.I)