mirror of
http://shenjack.top:5100/shenjack/icalingua-python-bot.git
synced 2025-04-20 05:59:53 +08:00
24 lines
571 B
Markdown
24 lines
571 B
Markdown
# 0.9 更新日志
|
|
|
|
## 0.9.0
|
|
|
|
### ica 2.0.1
|
|
|
|
> 添加了 `Room` 相关的 api
|
|
|
|
- `IcaStatus` 添加了 `rooms(self) -> list[IcaRoom]` 方法
|
|
- 用于获取当前所有的房间
|
|
|
|
- 添加了 `IcaRoom` 类
|
|
- 用于表示一个房间
|
|
- `room_id -> int` 群号 (i64)
|
|
|
|
- `def is_group(self) -> bool` 是否为群聊
|
|
- `def is_chat(self) -> bool` 是否为私聊
|
|
|
|
- `room_name -> int` 群名 (String)
|
|
- `unread_count -> int` 未读消息数 (u64)
|
|
|
|
- `def new_message_to(self, content: str) -> IcaSendMessage`
|
|
- 用于创建一条指向这个房间的消息
|