fix:更新插件属性

This commit is contained in:
SengokuCola
2025-06-20 00:02:19 +08:00
parent 250baa0172
commit 79bcb5b783
16 changed files with 142 additions and 89 deletions

View File

@@ -344,11 +344,8 @@ class CoreActionsPlugin(BasePlugin):
注意插件基本信息优先从_manifest.json文件中读取
"""
# 插件基本信息作为fallback优先从manifest读取
plugin_name = "core_actions"
plugin_description = "系统核心动作插件,提供基础聊天交互功能"
plugin_version = "1.0.0"
plugin_author = "MaiBot团队"
# 插件基本信息
plugin_name = "core_actions" # 内部标识符
enable_plugin = True
config_file_name = "config.toml"

View File

@@ -1,7 +1,7 @@
{
"manifest_version": 1,
"name": "豆包图片生成插件 (Doubao Image Generator)",
"version": "1.2.0",
"version": "2.0.0",
"description": "基于火山引擎豆包模型的AI图片生成插件支持智能LLM判定、高质量图片生成、结果缓存和多尺寸支持。",
"author": {
"name": "MaiBot团队",

View File

@@ -399,10 +399,7 @@ class DoubaoImagePlugin(BasePlugin):
"""
# 插件基本信息
plugin_name = "doubao_pic_plugin"
plugin_description = "基于火山引擎豆包模型的AI图片生成插件"
plugin_version = "2.0.0"
plugin_author = "MaiBot开发团队"
plugin_name = "doubao_pic_plugin" # 内部标识符
enable_plugin = True
config_file_name = "config.toml"

View File

@@ -1,19 +1,19 @@
{
"manifest_version": 1,
"name": "mute_plugin",
"name": "群聊禁言管理插件 (Mute Plugin)",
"version": "2.0.0",
"description": "群聊禁言管理插件,提供智能禁言功能",
"author": {
"name": "MaiBot开发团队",
"url": ""
"url": "https://github.com/MaiM-with-u"
},
"license": "GPL-v3.0-or-later",
"host_application": {
"min_version": "0.8.0",
"max_version": "0.8.0"
},
"keywords": [],
"categories": [],
"keywords": ["mute", "ban", "moderation", "admin", "management", "group"],
"categories": ["Moderation", "Group Management", "Admin Tools"],
"default_locale": "zh-CN",
"locales_path": "_locales"
}

View File

@@ -357,10 +357,7 @@ class MutePlugin(BasePlugin):
"""
# 插件基本信息
plugin_name = "mute_plugin"
plugin_description = "群聊禁言管理插件,提供智能禁言功能"
plugin_version = "2.0.0"
plugin_author = "MaiBot开发团队"
plugin_name = "mute_plugin" # 内部标识符
enable_plugin = True
config_file_name = "config.toml"

View File

@@ -1,7 +1,7 @@
{
"manifest_version": 1,
"name": "文本转语音插件 (Text-to-Speech)",
"version": "1.1.0",
"version": "0.1.0",
"description": "将文本转换为语音进行播放的插件,支持多种语音模式和智能语音输出场景判断。",
"author": {
"name": "MaiBot团队",

View File

@@ -101,10 +101,7 @@ class TTSPlugin(BasePlugin):
"""
# 插件基本信息
plugin_name = "tts_plugin"
plugin_description = "文字转语音插件"
plugin_version = "0.1.0"
plugin_author = "MaiBot开发团队"
plugin_name = "tts_plugin" # 内部标识符
enable_plugin = True
config_file_name = "config.toml"

View File

@@ -1,19 +1,19 @@
{
"manifest_version": 1,
"name": "vtb_plugin",
"name": "虚拟主播情感表达插件 (VTB Plugin)",
"version": "0.1.0",
"description": "虚拟主播情感表达插件",
"author": {
"name": "MaiBot开发团队",
"url": ""
"url": "https://github.com/MaiM-with-u"
},
"license": "GPL-v3.0-or-later",
"host_application": {
"min_version": "0.8.0",
"max_version": "0.8.0"
},
"keywords": [],
"categories": [],
"keywords": ["vtb", "vtuber", "emotion", "expression", "virtual", "streamer"],
"categories": ["Entertainment", "Virtual Assistant", "Emotion"],
"default_locale": "zh-CN",
"locales_path": "_locales"
}

View File

@@ -107,10 +107,7 @@ class VTBPlugin(BasePlugin):
"""
# 插件基本信息
plugin_name = "vtb_plugin"
plugin_description = "虚拟主播情感表达插件"
plugin_version = "0.1.0"
plugin_author = "MaiBot开发团队"
plugin_name = "vtb_plugin" # 内部标识符
enable_plugin = True
config_file_name = "config.toml"