mirror of
https://github.com/jxxghp/MoviePilot.git
synced 2026-09-04 23:17:20 +08:00
重命名格式支持S0重命名为Specials,SPs
This commit is contained in:
@@ -489,6 +489,9 @@ class MediaChain(ChainBase, metaclass=Singleton):
|
|||||||
if init_folder:
|
if init_folder:
|
||||||
# 识别文件夹名称
|
# 识别文件夹名称
|
||||||
season_meta = MetaInfo(filepath.name)
|
season_meta = MetaInfo(filepath.name)
|
||||||
|
# 当前文件夹为Specials或者SPs时,设置为S0
|
||||||
|
if filepath.name in settings.RENAME_FORMAT_S0_NAMES:
|
||||||
|
season_meta.begin_season = 0
|
||||||
if season_meta.begin_season is not None:
|
if season_meta.begin_season is not None:
|
||||||
# 是否已存在
|
# 是否已存在
|
||||||
nfo_path = filepath / "season.nfo"
|
nfo_path = filepath / "season.nfo"
|
||||||
|
|||||||
@@ -232,6 +232,10 @@ class ConfigModel(BaseModel):
|
|||||||
SECURITY_IMAGE_SUFFIXES: List[str] = Field(
|
SECURITY_IMAGE_SUFFIXES: List[str] = Field(
|
||||||
default_factory=lambda: [".jpg", ".jpeg", ".png", ".webp", ".gif", ".svg"]
|
default_factory=lambda: [".jpg", ".jpeg", ".png", ".webp", ".gif", ".svg"]
|
||||||
)
|
)
|
||||||
|
# 重命名时支持的S0别名
|
||||||
|
RENAME_FORMAT_S0_NAMES: List[str] = Field(
|
||||||
|
default_factory=lambda: ["Specials", "SPs"]
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
class Settings(BaseSettings, ConfigModel):
|
class Settings(BaseSettings, ConfigModel):
|
||||||
|
|||||||
Reference in New Issue
Block a user