-
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.
* refactor: 重构嵌套层级过多的函数,分离出其中一部分为独立函数 * fix(plugin_loading): 确保插件加载顺序 * fix(run_handlers): 修正参数列表问题 * refactor(handlers): 去除未使用的参数 * fix(rss_parsing): 修正 `save_first_time_fetch()` 的逻辑 * fix(ParsingRss): 修正 `start()` 的相关逻辑 * feat(fetch): 为方便测试,在 debug 环境下不使用缓存 * feat(config): 新增配置项 `enable_boot_message` ,用来控制启动后是否发送提示消息 (close #412) * fix(parsing): 修正解析处理相关逻辑 * feat(config): 新增配置项 `enable_boot_message` ,用来控制启动后是否发送提示消息 * chore(release): v2.6.17
- Loading branch information
Showing
27 changed files
with
546 additions
and
516 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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[tool.poetry] | ||
name = "ELF_RSS" | ||
version = "2.6.16" | ||
version = "2.6.17" | ||
description = "QQ机器人 RSS订阅 插件,订阅源建议选择 RSSHub" | ||
authors = ["Quan666 <[email protected]>"] | ||
license = "GPL-3.0-only" | ||
|
@@ -52,7 +52,7 @@ show_error_codes = true | |
strict = true | ||
|
||
[tool.ruff] | ||
select = ["F", "E", "W", "I"] | ||
select = ["F", "E", "W", "I", "UP"] | ||
target-version = "py38" | ||
line-length = 120 | ||
|
||
|
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.