Skip to content

Commit

Permalink
fix!: 事件响应器现在将阻断事件的传播 (#326)
Browse files Browse the repository at this point in the history
  • Loading branch information
he0119 authored Aug 15, 2024
1 parent 18eae62 commit 93a926c
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 0 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/lang/zh-CN/

- 添加命令的帮助信息

### Changed

- 事件响应器现在将阻断事件的传播

## [0.7.3] - 2024-07-13

### Fixed
Expand Down
4 changes: 4 additions & 0 deletions nonebot_plugin_wordcloud/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -140,6 +140,7 @@ def operate(self, interface: Arparma):
),
),
use_cmd_start=True,
block=True,
)


Expand Down Expand Up @@ -292,6 +293,7 @@ async def handle_wordcloud(
),
permission=admin_permission(),
use_cmd_start=True,
block=True,
)
set_mask_cmd.shortcut(
"设置词云默认形状",
Expand Down Expand Up @@ -342,6 +344,7 @@ async def handle_save_mask(
),
permission=admin_permission(),
use_cmd_start=True,
block=True,
)
remove_mask_cmd.shortcut(
"删除词云默认形状",
Expand Down Expand Up @@ -395,6 +398,7 @@ async def _(
),
permission=admin_permission(),
use_cmd_start=True,
block=True,
)
schedule_cmd.shortcut(
r"词云(?P<type>每日)定时发送状态",
Expand Down

0 comments on commit 93a926c

Please sign in to comment.