From 26e1690f8486ef1d6c0e47745b9c2df333d524b5 Mon Sep 17 00:00:00 2001 From: zhengshunjin <2667579369@qq.com> Date: Sat, 20 Jun 2026 16:21:47 +0800 Subject: [PATCH] =?UTF-8?q?feat(constants):=20=E6=9B=B4=E6=96=B0=E5=B8=B8?= =?UTF-8?q?=E9=87=8F=E9=85=8D=E7=BD=AE=E4=BB=A5=E6=94=AF=E6=8C=81=E6=96=B0?= =?UTF-8?q?=E5=89=8D=E7=BC=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 添加 T38 到特殊前缀列表 - 优化代码格式增加可读性 --- app/constants.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/app/constants.py b/app/constants.py index 3972046..ed9ccb1 100644 --- a/app/constants.py +++ b/app/constants.py @@ -1,4 +1,5 @@ import os + IGNORE_DIRS = { "System Volume Information", "$RECYCLE.BIN", @@ -8,7 +9,7 @@ IGNORE_DIRS = { "done_images", "女同" } -SPECIAL_PREFIXES = {"T28", "FC2"} +SPECIAL_PREFIXES = {"T28", "FC2", "T38"} SEPARATORS = {"♀  ", "♀ ", "+"} SPECIAL_DIRS = {"川村まや", "上原亜衣", "上原志織"} IMAGE_EXTENSIONS = {'.jpg', '.jpeg', '.png', '.gif', '.bmp', '.tiff', '.webp', '.svg'}