-
Notifications
You must be signed in to change notification settings - Fork 57
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* fix(config): 新增配置项 `debug` ,用来控制是否开启 debug 模式 (fix #413) * fix(forward): 修正合并转发相关逻辑 (fixes #417) * fix(sending): 修正消息发送相关逻辑 (fixes #414) * refactor(sub): 为添加订阅相关逻辑加上防呆机制 (resolve #424) * build(deps): 去除没用到的依赖 `typing-extensions`
- Loading branch information
Showing
13 changed files
with
175 additions
and
96 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[tool.poetry] | ||
name = "ELF_RSS" | ||
version = "2.6.17" | ||
version = "2.6.18" | ||
description = "QQ机器人 RSS订阅 插件,订阅源建议选择 RSSHub" | ||
authors = ["Quan666 <[email protected]>"] | ||
license = "GPL-3.0-only" | ||
|
@@ -16,6 +16,7 @@ keywords = ["nonebot", "nonebot2", "rss" ,"elf" ,"rsshub"] | |
python = "^3.8.3" | ||
aiohttp = {extras = ["speedups"], version = "^3.8.4"} | ||
arrow = "^1.2.3" | ||
async-timeout = "^4.0.2" | ||
bbcode = "^1.1.0" | ||
cachetools = "^5.3.0" | ||
emoji = "^2.2.0" | ||
|
@@ -34,7 +35,6 @@ pyquery = "^2.0.0" | |
python-qbittorrent = "^0.4.3" | ||
tenacity = "^8.2.2" | ||
tinydb = "^4.7.1" | ||
typing-extensions = "^4.5.0" | ||
yarl = "^1.9.1" | ||
|
||
[tool.poetry.dev-dependencies] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.