Skip to content

Commit dbff744

Browse files
committed
v2.8.5
0 parents  commit dbff744

File tree

126 files changed

+23234
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

126 files changed

+23234
-0
lines changed

.flake8

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
[flake8]
2+
exclude =
3+
virtualenvs,
4+
Ariadne,
5+
test.py,
6+
**/Ark/
7+
max-line-length = 120
8+
statistics = True
9+
ignore =
10+
W503,
11+
E203

.gitattributes

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
*.js linguist-language=Python

.github/ISSUE_TEMPLATE/bug.yaml

Lines changed: 72 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,72 @@
1+
name: Bug 反馈
2+
description: 从这里提交错误报告
3+
title: "[Bug]:"
4+
labels: ["bug", "triage"]
5+
body:
6+
- type: markdown
7+
attributes:
8+
value: |
9+
请先确保你完整阅读了项目的 [部署方法](_docs/deploy.md),并且成功安装了所需的所有依赖。
10+
> 上游错误请不要在此处提交,请自行提交到相应的 Issue。
11+
12+
如果您在检查了所有的配置等后依然出现错误,请在下方填写错误报告,并且提供以下信息:
13+
14+
- type: textarea
15+
id: issue-description
16+
attributes:
17+
label: 问题简述
18+
description: 在下方详细写出你遇到的问题,以及问题是如何发生的。
19+
validations:
20+
required: true
21+
22+
- type: input
23+
id: mirai-version
24+
attributes:
25+
label: Mirai 版本号
26+
description: 在此处填写你的 Mirai 版本号。
27+
validations:
28+
required: true
29+
30+
- type: input
31+
id: mirai-api-http-version
32+
attributes:
33+
label: Mirai API HTTP 版本号
34+
description: 在此处填写你的 Mirai API HTTP 版本号。
35+
validations:
36+
required: true
37+
38+
- type: textarea
39+
id: mirai-config
40+
attributes:
41+
label: Mirai 配置
42+
description: 请完整复制 Mirai 的配置文件,并且将其粘贴到此处,请自行处理隐私信息。
43+
render: YAML
44+
validations:
45+
required: true
46+
47+
- type: textarea
48+
id: abot-config
49+
attributes:
50+
label: Abot 配置
51+
description: 请完整复制 Abot 的配置文件,并且将其粘贴到此处,请自行处理隐私信息。
52+
render: YAML
53+
validations:
54+
required: true
55+
56+
- type: textarea
57+
id: mirai-log
58+
attributes:
59+
label: 在此处填写 Mirai 日志
60+
description: 请完整复制 Mirai 的控制台日志,并且将其粘贴到此处。
61+
render: Text
62+
validations:
63+
required: true
64+
65+
- type: textarea
66+
id: abot-log
67+
attributes:
68+
label: 在此处填写 Abot 日志
69+
description: 请完整复制 Abot 的控制台日志,并且将其粘贴到此处。
70+
render: Text
71+
validations:
72+
required: true

.gitignore

Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
.vscode/
2+
__pycache__/
3+
.idea/
4+
temp/
5+
voice_file
6+
config.json
7+
*.db*
8+
test.py
9+
config.yaml
10+
groupdata.json
11+
userlist.json
12+
grouplist.json
13+
qr.jpg
14+
data.json
15+
*.pem
16+
/font
17+
/virtualenvs
18+
/python*
19+
/util/browser/data/*
20+
21+
/saya/Ark/
22+
/saya/ArkrecWIKI/
23+
/saya/ArkTools/
24+
/saya/2048/
25+
/saya/ArkFriend/
26+
/saya/ChaoxingSign
27+
/saya/e
28+
29+
/mirai/
30+
util/UpImage.py
31+
saya/BilibiliDynamic/dynamic_list.json
32+
archive/
33+
cache/
34+
data/
35+
logs/
36+
saya/ArkNews/pushed_list.json
37+
saya/DriftingBottle/image
38+
start.sh
39+
saya/Test.py
40+
saya/STGBot/__init__.py

0 commit comments

Comments
 (0)