Merge pull request #669 from so1ve/feat/transfer-ui

This commit is contained in:
jxxghp
2025-02-05 13:24:15 +08:00
committed by GitHub
2 changed files with 22 additions and 21 deletions

View File

@@ -104,11 +104,12 @@
"name": "自动转移做种",
"description": "定期转移下载器中的做种任务到另一个下载器。",
"labels": "做种",
"version": "1.10",
"version": "1.10.1",
"icon": "seed.png",
"author": "jxxghp",
"level": 2,
"history": {
"v1.10.1": "优化“立即运行一次”按钮位置",
"v1.10": "支持跳过校验(仅支持 qBittorrent",
"v1.9": "优化执行周期输入需要MoviePilot v2.2.1+",
"v1.8": "支持qbittorrent 5",

View File

@@ -28,7 +28,7 @@ class TorrentTransfer(_PluginBase):
# 插件图标
plugin_icon = "seed.png"
# 插件版本
plugin_version = "1.10"
plugin_version = "1.10.1"
# 插件作者
plugin_author = "jxxghp"
# 作者主页
@@ -204,7 +204,7 @@ class TorrentTransfer(_PluginBase):
'component': 'VCol',
'props': {
'cols': 12,
'md': 4
'md': 3
},
'content': [
{
@@ -220,7 +220,7 @@ class TorrentTransfer(_PluginBase):
'component': 'VCol',
'props': {
'cols': 12,
'md': 4
'md': 3
},
'content': [
{
@@ -236,7 +236,7 @@ class TorrentTransfer(_PluginBase):
'component': 'VCol',
'props': {
'cols': 12,
'md': 4
'md': 3
},
'content': [
{
@@ -247,6 +247,22 @@ class TorrentTransfer(_PluginBase):
}
}
]
},
{
'component': 'VCol',
'props': {
'cols': 12,
'md': 3
},
'content': [
{
'component': 'VSwitch',
'props': {
'model': 'onlyonce',
'label': '立即运行一次',
}
}
]
}
]
},
@@ -513,22 +529,6 @@ class TorrentTransfer(_PluginBase):
}
}
]
},
{
'component': 'VCol',
'props': {
'cols': 12,
'md': 3
},
'content': [
{
'component': 'VSwitch',
'props': {
'model': 'onlyonce',
'label': '立即运行一次',
}
}
]
}
]
}