add 签到插件提示

This commit is contained in:
jxxghp
2025-03-26 19:56:12 +08:00
parent 3e5707a5da
commit c5eb20cb59
4 changed files with 48 additions and 4 deletions

View File

@@ -3,11 +3,12 @@
"name": "站点自动签到",
"description": "自动模拟登录、签到站点。",
"labels": "站点",
"version": "2.4.3",
"version": "2.4.4",
"icon": "signin.png",
"author": "thsrite",
"level": 2,
"history": {
"v2.4.4": "增加保号风险提示",
"v2.4.3": "修复空签到失败问题",
"v2.4.2": "修复PT时间签到失败问题",
"v2.4.1": "修复海胆签到失败问题",

View File

@@ -38,11 +38,12 @@
"name": "站点自动签到",
"description": "自动模拟登录、签到站点。",
"labels": "站点",
"version": "2.5.3",
"version": "2.5.4",
"icon": "signin.png",
"author": "thsrite",
"level": 2,
"history": {
"v2.5.4": "增加保号风险提示",
"v2.5.3": "优化执行周期输入需要MoviePilot v2.2.1+",
"v2.5.2": "修复HDArea签到",
"v2.5.1": "修复空签到失败问题",

View File

@@ -37,7 +37,7 @@ class AutoSignIn(_PluginBase):
# 插件图标
plugin_icon = "signin.png"
# 插件版本
plugin_version = "2.5.3"
plugin_version = "2.5.4"
# 插件作者
plugin_author = "thsrite"
# 作者主页
@@ -505,6 +505,27 @@ class AutoSignIn(_PluginBase):
]
}
]
},
{
'component': 'VRow',
'content': [
{
'component': 'VCol',
'props': {
'cols': 12,
},
'content': [
{
'component': 'VAlert',
'props': {
'type': 'warning',
'variant': 'tonal',
'text': '不是所有的站点都会把程序自动登录/签到定义为用户活跃(比如馒头),提示签到/登录成功仍然存在掉号风险!请结合站点公告说明自行把握。'
}
}
]
}
]
}
]
}

View File

@@ -38,7 +38,7 @@ class AutoSignIn(_PluginBase):
# 插件图标
plugin_icon = "signin.png"
# 插件版本
plugin_version = "2.4.3"
plugin_version = "2.4.4"
# 插件作者
plugin_author = "thsrite"
# 作者主页
@@ -508,6 +508,27 @@ class AutoSignIn(_PluginBase):
]
}
]
},
{
'component': 'VRow',
'content': [
{
'component': 'VCol',
'props': {
'cols': 12,
},
'content': [
{
'component': 'VAlert',
'props': {
'type': 'warning',
'variant': 'tonal',
'text': '不是所有的站点都会把程序自动登录/签到定义为用户活跃(比如馒头),提示签到/登录成功仍然存在掉号风险!请结合站点公告说明自行把握。'
}
}
]
}
]
}
]
}