Skip to content

Commit

Permalink
v2.8.5
Browse files Browse the repository at this point in the history
  • Loading branch information
djkcyl committed Feb 17, 2022
0 parents commit dbff744
Show file tree
Hide file tree
Showing 126 changed files with 23,234 additions and 0 deletions.
11 changes: 11 additions & 0 deletions .flake8
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
[flake8]
exclude =
virtualenvs,
Ariadne,
test.py,
**/Ark/
max-line-length = 120
statistics = True
ignore =
W503,
E203
1 change: 1 addition & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
*.js linguist-language=Python
72 changes: 72 additions & 0 deletions .github/ISSUE_TEMPLATE/bug.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,72 @@
name: Bug 反馈
description: 从这里提交错误报告
title: "[Bug]:"
labels: ["bug", "triage"]
body:
- type: markdown
attributes:
value: |
请先确保你完整阅读了项目的 [部署方法](_docs/deploy.md),并且成功安装了所需的所有依赖。
> 上游错误请不要在此处提交,请自行提交到相应的 Issue。
如果您在检查了所有的配置等后依然出现错误,请在下方填写错误报告,并且提供以下信息:
- type: textarea
id: issue-description
attributes:
label: 问题简述
description: 在下方详细写出你遇到的问题,以及问题是如何发生的。
validations:
required: true

- type: input
id: mirai-version
attributes:
label: Mirai 版本号
description: 在此处填写你的 Mirai 版本号。
validations:
required: true

- type: input
id: mirai-api-http-version
attributes:
label: Mirai API HTTP 版本号
description: 在此处填写你的 Mirai API HTTP 版本号。
validations:
required: true

- type: textarea
id: mirai-config
attributes:
label: Mirai 配置
description: 请完整复制 Mirai 的配置文件,并且将其粘贴到此处,请自行处理隐私信息。
render: YAML
validations:
required: true

- type: textarea
id: abot-config
attributes:
label: Abot 配置
description: 请完整复制 Abot 的配置文件,并且将其粘贴到此处,请自行处理隐私信息。
render: YAML
validations:
required: true

- type: textarea
id: mirai-log
attributes:
label: 在此处填写 Mirai 日志
description: 请完整复制 Mirai 的控制台日志,并且将其粘贴到此处。
render: Text
validations:
required: true

- type: textarea
id: abot-log
attributes:
label: 在此处填写 Abot 日志
description: 请完整复制 Abot 的控制台日志,并且将其粘贴到此处。
render: Text
validations:
required: true
40 changes: 40 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
.vscode/
__pycache__/
.idea/
temp/
voice_file
config.json
*.db*
test.py
config.yaml
groupdata.json
userlist.json
grouplist.json
qr.jpg
data.json
*.pem
/font
/virtualenvs
/python*
/util/browser/data/*

/saya/Ark/
/saya/ArkrecWIKI/
/saya/ArkTools/
/saya/2048/
/saya/ArkFriend/
/saya/ChaoxingSign
/saya/e

/mirai/
util/UpImage.py
saya/BilibiliDynamic/dynamic_list.json
archive/
cache/
data/
logs/
saya/ArkNews/pushed_list.json
saya/DriftingBottle/image
start.sh
saya/Test.py
saya/STGBot/__init__.py
Loading

0 comments on commit dbff744

Please sign in to comment.