Archived
1
0
Fork 0
This repository has been archived on 2024-04-26. You can view files and clone it, but cannot push or open issues or pull requests.
akari-bot/.gitignore

37 lines
565 B
Text
Raw Normal View History

2020-08-04 09:23:59 +00:00
*.env
2021-06-19 12:58:26 +00:00
__pycache__/
2021-02-19 10:13:31 +00:00
config/*.cfg
config/*.toml
2020-08-13 04:59:23 +00:00
.idea
2022-01-20 13:31:50 +00:00
.vscode
2020-10-04 07:25:33 +00:00
assets/mcversion.txt
2020-08-19 04:41:47 +00:00
mcvrss.txt
2021-04-08 12:23:38 +00:00
assets/usercard/*
2021-04-02 16:35:26 +00:00
test*
2021-04-08 12:23:38 +00:00
assets/Favicon/*
2021-02-01 15:13:11 +00:00
assets/cache/*
2021-08-25 15:15:20 +00:00
*.db
cache/*
2021-08-07 07:56:48 +00:00
assets/mcjira*
2021-10-01 02:28:33 +00:00
assets/feedback_*.txt
2021-02-12 16:44:53 +00:00
assets/cytoid-avatar/
2021-03-05 16:19:06 +00:00
assets/cytoid-cover/
2021-10-12 15:02:36 +00:00
assets/maimai*
2023-04-30 16:31:17 +00:00
assets/phigros*
2022-06-12 07:07:53 +00:00
bots/**/assets
2021-10-08 11:54:27 +00:00
core/unused_bots/**/assets
2021-08-02 04:40:29 +00:00
.version*
2022-01-13 15:50:17 +00:00
.pid_last
2021-05-28 15:23:59 +00:00
.cache_loader
2021-10-14 15:18:47 +00:00
assets/arc**
2021-11-01 17:12:04 +00:00
assets/version*
2022-01-13 15:50:17 +00:00
assets/mcnews.txt
2022-01-17 13:28:49 +00:00
*.log
2022-04-02 14:45:17 +00:00
assets/mcbeversion.txt
2022-06-17 05:59:15 +00:00
!modules/chemical_code/answer.db
2022-06-18 16:21:59 +00:00
!test_commands.txt
2023-02-09 03:10:34 +00:00
modules/natural/dataset.jsonl
2023-04-30 00:54:42 +00:00
.chroma
modules/ask/tools/self_knowledge/data
feat: partial matrix support (#680) * build(deps): add matrix-nio * build(deps): update requirements.txt for matrix-nio * feat: add example config for matrix * feat: init matrix support * feat: do init sync to avoid receiving old messages * feat: store next sync batch with file * feat: parse matrix message * feat: check moderator permission * feat: redacting message * feat: toMessageChain for m.text and m.image * feat: drop m.notice messages * feat: sending messages * fix: power level fetching * fix: rich reply fallback stripping * style: less log * feat: guess image content type * fix: image upload * feat: sending audio * chore: add todo * chore: add todo * fix: use FinS.result to store room id As the spec, room_id is an opaque identifier, and at least all valid ASCII characters except '/' and ':' can be included in room_id. This means in some servers, '|' may be included in room_id. * fix: print RoomSendError * fix: public rooms with two user are regarded as DM * feat: resolving pm * fix: nio.ErrorResponse * feat: add post test * feat: pm post test * Revert "feat: pm post test" This reverts commit 3688213c802562b7f27ecf8fe88269d911036d60. * Revert "feat: add post test" This reverts commit 259fcf54ca92a6d20ada99ddcda7fcc8ded63675. * feat: create TPM room * feat: send typing notifications * feat: leave empty room * feat: rich reply formatted fallback support * fix: import * fix: include body in formatted rich reply fallbacks * fix: escape line breaks in html * fix: <br/> tag * feat: improve matrix direct messaging * feat: parse m.emote as m.text * fix: command run blockingly * fix: message send error handle * fix: keep DM room * fix: reuse of DM rooms * feat: add error log * docs: add deploy guide for matrix * docs: add matrix to readme * docs: add more warning * style: remove explictly type declartion (poljar/matrix-nio#417) * feat: receive audio message * feat: standard rich-reply fallback for m.emote * chore: add matrix to bug report issues template
2023-07-30 09:41:01 +00:00
matrix_store