mirror of
https://github.com/nonebot/nonebot2.git
synced 2024-11-24 09:05:04 +08:00
Bump version to 0.4.3
This commit is contained in:
parent
ca16f620c4
commit
3f66c14241
@ -1340,7 +1340,7 @@ sidebar: auto
|
|||||||
|
|
||||||
## `none.natural_language` 模块
|
## `none.natural_language` 模块
|
||||||
|
|
||||||
### _decorator_ `on_natural_language(keywords=None, *, permission=EVERYBODY, only_to_me=True, only_short_message=True)`
|
### _decorator_ `on_natural_language(keywords=None, *, permission=EVERYBODY, only_to_me=True, only_short_message=True, allow_empty_message=False)`
|
||||||
|
|
||||||
- **说明:**
|
- **说明:**
|
||||||
|
|
||||||
@ -1352,6 +1352,7 @@ sidebar: auto
|
|||||||
- `permission: int`: 自然语言处理器所需要的权限,不满足权限的用户将无法触发该处理器
|
- `permission: int`: 自然语言处理器所需要的权限,不满足权限的用户将无法触发该处理器
|
||||||
- `only_to_me: bool`: 是否只响应确定是在和「我」(机器人)说话的消息
|
- `only_to_me: bool`: 是否只响应确定是在和「我」(机器人)说话的消息
|
||||||
- `only_short_message: bool`: 是否只响应短消息
|
- `only_short_message: bool`: 是否只响应短消息
|
||||||
|
- `allow_empty_message: bool`: 是否响应内容为空的消息(只有@或机器人昵称)
|
||||||
|
|
||||||
- **要求:**
|
- **要求:**
|
||||||
|
|
||||||
|
@ -4,7 +4,7 @@ sidebar: auto
|
|||||||
|
|
||||||
# 更新日志
|
# 更新日志
|
||||||
|
|
||||||
## next
|
## v0.4.3
|
||||||
|
|
||||||
- 自然语言处理器支持响应只有机器人昵称而没有实际内容的消息,通过 `on_natural_language` 的 `allow_empty_message` 参数开启(默认关闭)
|
- 自然语言处理器支持响应只有机器人昵称而没有实际内容的消息,通过 `on_natural_language` 的 `allow_empty_message` 参数开启(默认关闭)
|
||||||
|
|
||||||
|
2
setup.py
2
setup.py
@ -5,7 +5,7 @@ with open('README.md', 'r', encoding='utf-8') as f:
|
|||||||
|
|
||||||
setup(
|
setup(
|
||||||
name='none-bot',
|
name='none-bot',
|
||||||
version='0.4.2',
|
version='0.4.3',
|
||||||
packages=find_packages(include=('none', 'none.*')),
|
packages=find_packages(include=('none', 'none.*')),
|
||||||
url='https://github.com/richardchien/none-bot',
|
url='https://github.com/richardchien/none-bot',
|
||||||
license='MIT License',
|
license='MIT License',
|
||||||
|
Loading…
Reference in New Issue
Block a user