mirror of
https://github.com/thsrite/MoviePilot-Plugins.git
synced 2026-06-08 07:26:51 +00:00
fix #12
This commit is contained in:
@@ -11,7 +11,7 @@ MoviePilot三方插件市场:https://github.com/thsrite/MoviePilot-Plugins/
|
||||
|
||||
- [站点数据统计 1.0](docs%2FSiteStatisticNoMsg.md) (无未读消息版本)
|
||||
- [站点未读消息 1.2](docs%2FSiteUnreadMsg.md)
|
||||
- [云盘Strm生成 2.1](docs%2FCloudStrm.md)
|
||||
- [云盘Strm生成 2.2](docs%2FCloudStrm.md)
|
||||
- [Strm文件模式转换 1.0](docs%2FStrmConvert.md)
|
||||
- [清理订阅缓存 1.0](docs%2FSubscribeClear.md)
|
||||
- [添加种子下载 1.0](docs%2FDownloadTorrent.md)
|
||||
|
||||
@@ -2,6 +2,7 @@
|
||||
|
||||
### 更新记录
|
||||
|
||||
- 2.2 fix#12
|
||||
- 2.1 增加复制非媒体文件开关
|
||||
- 2.0 修复重复执行的问题
|
||||
- 1.7 支持m2ts视频格式
|
||||
|
||||
@@ -10,7 +10,7 @@
|
||||
"CloudStrm": {
|
||||
"name": "云盘Strm生成",
|
||||
"description": "监控文件创建,生成Strm文件。",
|
||||
"version": "2.1",
|
||||
"version": "2.2",
|
||||
"icon": "https://raw.githubusercontent.com/thsrite/MoviePilot-Plugins/main/icons/create.png",
|
||||
"author": "thsrite",
|
||||
"level": 1
|
||||
|
||||
@@ -44,7 +44,7 @@ class CloudStrm(_PluginBase):
|
||||
# 插件图标
|
||||
plugin_icon = "https://raw.githubusercontent.com/thsrite/MoviePilot-Plugins/main/icons/create.png"
|
||||
# 插件版本
|
||||
plugin_version = "2.1"
|
||||
plugin_version = "2.2"
|
||||
# 插件作者
|
||||
plugin_author = "thsrite"
|
||||
# 作者主页
|
||||
@@ -318,7 +318,7 @@ class CloudStrm(_PluginBase):
|
||||
dest_file = os.path.join(dest_dir, os.path.relpath(source_file, source_dir))
|
||||
if Path(dest_file).exists():
|
||||
logger.debug(f"目标文件 {dest_file} 已存在")
|
||||
return
|
||||
continue
|
||||
logger.info(f"开始生成目标文件::: {dest_file}")
|
||||
|
||||
# 创建目标目录中缺少的文件夹
|
||||
|
||||
Reference in New Issue
Block a user