v39.0.2.2

This commit is contained in:
Changhua 2023-09-25 22:49:18 +08:00
parent dccf0b206f
commit c907f5268f
2 changed files with 15 additions and 3 deletions

View File

@ -87,6 +87,14 @@ def main():
# ret = wcf.del_chatroom_members("chatroom id", "wxid1,wxid2,wxid3,...") # ret = wcf.del_chatroom_members("chatroom id", "wxid1,wxid2,wxid3,...")
# LOG.info(f"add_chatroom_members: {ret}") # LOG.info(f"add_chatroom_members: {ret}")
# 获取群成员
# members = wcf.get_chatroom_members('xxxxxxxx@chatroom')
# LOG.info(f"get_chatroom_members: {members}")
# 获取群成员名片
# alias = wcf.get_alias_in_chatroom("wxid_xxxxxxxx", "xxxxxxxx@chatroom")
# LOG.info(f"get_alias_in_chatroom: {alias}")
sleep(5) sleep(5)
wcf.refresh_pyq(0) # 刷新朋友圈第一页 wcf.refresh_pyq(0) # 刷新朋友圈第一页
# wcf.refresh_pyq(id) # 从 id 开始刷新朋友圈 # wcf.refresh_pyq(id) # 从 id 开始刷新朋友圈
@ -129,11 +137,15 @@ python -m grpc_tools.protoc --python_out=. --proto_path=../../../WeChatFerry/rpc
``` ```
## 版本更新 ## 版本更新
### 39.0.2.1 (2023.08.01) ### 39.0.2.2 (2023.09.25)
* 发送文件支持网络路径 * 获取群成员
* 获取群成员名片
<details><summary>点击查看更多</summary> <details><summary>点击查看更多</summary>
### 39.0.2.1 (2023.08.01)
* 发送文件支持网络路径
### 39.0.2.0 (2023.07.16) ### 39.0.2.0 (2023.07.16)
* 获取朋友圈消息 * 获取朋友圈消息

View File

@ -1,7 +1,7 @@
#! /usr/bin/env python3 #! /usr/bin/env python3
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
__version__ = "39.0.2.1" __version__ = "39.0.2.2"
import atexit import atexit
import base64 import base64