feat:统一优化执行周期录入

This commit is contained in:
jxxghp
2025-01-13 13:17:36 +08:00
parent ca0231389c
commit a745d56802
13 changed files with 50 additions and 37 deletions

View File

@@ -27,7 +27,7 @@ class AutoClean(_PluginBase):
# 插件图标
plugin_icon = "clean.png"
# 插件版本
plugin_version = "2.0"
plugin_version = "2.1"
# 插件作者
plugin_author = "thsrite"
# 作者主页
@@ -351,7 +351,7 @@ class AutoClean(_PluginBase):
},
'content': [
{
'component': 'VTextField',
'component': 'VCronField',
'props': {
'model': 'cron',
'label': '执行周期',

View File

@@ -37,7 +37,7 @@ class AutoSignIn(_PluginBase):
# 插件图标
plugin_icon = "signin.png"
# 插件版本
plugin_version = "2.5.2"
plugin_version = "2.5.3"
# 插件作者
plugin_author = "thsrite"
# 作者主页
@@ -359,7 +359,7 @@ class AutoSignIn(_PluginBase):
},
'content': [
{
'component': 'VTextField',
'component': 'VCronField',
'props': {
'model': 'cron',
'label': '执行周期',
@@ -856,9 +856,10 @@ class AutoSignIn(_PluginBase):
message=f"站点【{url}】不存在"
)
else:
site_name, message = self.signin_site(site_info)
return schemas.Response(
success=True,
message=self.signin_site(site_info)
message=f"站点【{site_name}{message or '签到成功'}"
)
def signin_site(self, site_info: CommentedMap) -> Tuple[str, str]:

View File

@@ -251,7 +251,7 @@ class BrushFlow(_PluginBase):
# 插件图标
plugin_icon = "brush.jpg"
# 插件版本
plugin_version = "4.1"
plugin_version = "4.2"
# 插件作者
plugin_author = "jxxghp,InfinityPacer"
# 作者主页
@@ -924,7 +924,7 @@ class BrushFlow(_PluginBase):
},
'content': [
{
'component': 'VTextField',
'component': 'VCronField',
'props': {
'model': 'cron',
'label': '执行周期',

View File

@@ -28,7 +28,7 @@ class FFmpegThumb(_PluginBase):
# 插件图标
plugin_icon = "ffmpeg.png"
# 插件版本
plugin_version = "2.0"
plugin_version = "2.1"
# 插件作者
plugin_author = "jxxghp"
# 作者主页
@@ -176,7 +176,7 @@ class FFmpegThumb(_PluginBase):
},
'content': [
{
'component': 'VTextField',
'component': 'VCronField',
'props': {
'model': 'cron',
'label': '定时扫描周期',

View File

@@ -33,7 +33,7 @@ class IYUUAutoSeed(_PluginBase):
# 插件图标
plugin_icon = "IYUU.png"
# 插件版本
plugin_version = "2.5"
plugin_version = "2.6"
# 插件作者
plugin_author = "jxxghp"
# 作者主页
@@ -309,7 +309,7 @@ class IYUUAutoSeed(_PluginBase):
},
'content': [
{
'component': 'VTextField',
'component': 'VCronField',
'props': {
'model': 'cron',
'label': '执行周期',

View File

@@ -27,7 +27,7 @@ class LibraryScraper(_PluginBase):
# 插件图标
plugin_icon = "scraper.png"
# 插件版本
plugin_version = "2.0"
plugin_version = "2.1"
# 插件作者
plugin_author = "jxxghp"
# 作者主页
@@ -205,7 +205,7 @@ class LibraryScraper(_PluginBase):
},
'content': [
{
'component': 'VTextField',
'component': 'VCronField',
'props': {
'model': 'cron',
'label': '执行周期',

View File

@@ -23,7 +23,7 @@ class MoviePilotUpdateNotify(_PluginBase):
# 插件图标
plugin_icon = "Moviepilot_A.png"
# 插件版本
plugin_version = "2.0"
plugin_version = "2.1"
# 插件作者
plugin_author = "thsrite"
# 作者主页
@@ -288,7 +288,7 @@ class MoviePilotUpdateNotify(_PluginBase):
},
'content': [
{
'component': 'VTextField',
'component': 'VCronField',
'props': {
'model': 'cron',
'label': '检查周期',

View File

@@ -38,7 +38,7 @@ class PersonMeta(_PluginBase):
# 插件图标
plugin_icon = "actor.png"
# 插件版本
plugin_version = "2.0.1"
plugin_version = "2.1"
# 插件作者
plugin_author = "jxxghp"
# 作者主页
@@ -199,7 +199,7 @@ class PersonMeta(_PluginBase):
},
'content': [
{
'component': 'VTextField',
'component': 'VCronField',
'props': {
'model': 'cron',
'label': '媒体库扫描周期',

View File

@@ -33,7 +33,7 @@ class RssSubscribe(_PluginBase):
# 插件图标
plugin_icon = "rss.png"
# 插件版本
plugin_version = "2.0"
plugin_version = "2.1"
# 插件作者
plugin_author = "jxxghp"
# 作者主页
@@ -249,7 +249,7 @@ class RssSubscribe(_PluginBase):
},
'content': [
{
'component': 'VTextField',
'component': 'VCronField',
'props': {
'model': 'cron',
'label': '执行周期',

View File

@@ -24,7 +24,7 @@ class SyncCookieCloud(_PluginBase):
# 插件图标
plugin_icon = "Cookiecloud_A.png"
# 插件版本
plugin_version = "2.1"
plugin_version = "2.2"
# 插件作者
plugin_author = "thsrite"
# 作者主页
@@ -243,7 +243,7 @@ class SyncCookieCloud(_PluginBase):
},
'content': [
{
'component': 'VTextField',
'component': 'VCronField',
'props': {
'model': 'cron',
'label': '执行周期',

View File

@@ -26,7 +26,7 @@ class TorrentRemover(_PluginBase):
# 插件图标
plugin_icon = "delete.jpg"
# 插件版本
plugin_version = "2.1.1"
plugin_version = "2.2"
# 插件作者
plugin_author = "jxxghp"
# 作者主页
@@ -207,7 +207,7 @@ class TorrentRemover(_PluginBase):
},
'content': [
{
'component': 'VTextField',
'component': 'VCronField',
'props': {
'model': 'cron',
'label': '执行周期',

View File

@@ -28,7 +28,7 @@ class TorrentTransfer(_PluginBase):
# 插件图标
plugin_icon = "seed.png"
# 插件版本
plugin_version = "1.8"
plugin_version = "1.9"
# 插件作者
plugin_author = "jxxghp"
# 作者主页
@@ -259,7 +259,7 @@ class TorrentTransfer(_PluginBase):
},
'content': [
{
'component': 'VTextField',
'component': 'VCronField',
'props': {
'model': 'cron',
'label': '执行周期',