Compare commits

..

5 Commits

Author SHA1 Message Date
Soulter
611a902000 v3.4.35(fix) 2025-03-04 13:07:21 +08:00
Soulter
c1b3f9dd29 fix: remove fixed imports of platform adapters 2025-03-04 13:04:48 +08:00
Soulter
7c5a88a6a6 Update PLUGIN_PUBLISH.yml 2025-03-04 11:07:46 +08:00
Soulter
be9abfef58 Update PLUGIN_PUBLISH.yml 2025-03-04 10:57:53 +08:00
Soulter
b549c9377e Create PLUGIN_PUBLISH.yml 2025-03-04 10:56:11 +08:00
4 changed files with 40 additions and 20 deletions

View File

@@ -0,0 +1,39 @@
name: '🥳 发布插件'
title: "[Plugin] 插件名"
description: 提交插件到插件市场
labels: [ "plugin-publish" ]
body:
- type: markdown
attributes:
value: |
欢迎发布插件到插件市场!
- type: textarea
attributes:
label: 插件仓库
description: 插件的 GitHub 仓库链接
placeholder: >
如 https://github.com/Soulter/astrbot-github-cards
- type: textarea
attributes:
label: 描述
value: |
插件名:
插件作者:
插件简介:
标签: (可选)
社交链接: (可选, 将会在插件市场作者名称上作为可点击的链接)
description: 必填。请以列表的字段按顺序将插件名、插件作者、插件简介放在这里。
- type: checkboxes
attributes:
label: Code of Conduct
options:
- label: >
我已阅读并同意遵守该项目的 [行为准则](https://docs.github.com/zh/site-policy/github-terms/github-community-code-of-conduct)。
required: true
- type: markdown
attributes:
value: "❤️"

View File

@@ -2,7 +2,7 @@
如需修改配置,请在 `data/cmd_config.json` 中修改或者在管理面板中可视化修改。
"""
VERSION = "3.4.34"
VERSION = "3.4.35"
DB_PATH = "data/data_v3.db"
# 默认配置

View File

@@ -1,19 +0,0 @@
from .aiocqhttp.aiocqhttp_platform_adapter import AiocqhttpAdapter
from .qqofficial.qqofficial_platform_adapter import QQOfficialPlatformAdapter
from .qqofficial_webhook.qo_webhook_adapter import QQOfficialWebhookPlatformAdapter
from .gewechat.gewechat_platform_adapter import GewechatPlatformAdapter
from .telegram.tg_adapter import TelegramPlatformAdapter
from .webchat.webchat_adapter import WebChatAdapter
from .wecom.wecom_adapter import WecomPlatformAdapter
from .lark.lark_adapter import LarkPlatformAdapter
__all__ = [
"AiocqhttpAdapter",
"QQOfficialPlatformAdapter",
"QQOfficialWebhookPlatformAdapter",
"GewechatPlatformAdapter",
"TelegramPlatformAdapter",
"WebChatAdapter",
"WecomPlatformAdapter",
"LarkPlatformAdapter",
]