Bump to v39.3.2.0

This commit is contained in:
Changhua 2024-11-03 17:03:02 +08:00
parent 3aeae5338d
commit 95fe5264a4
3 changed files with 303 additions and 12 deletions

View File

@ -44,8 +44,8 @@ python -m grpc_tools.protoc --python_out=. --proto_path=../../../WeChatFerry/rpc
## 版本更新
### v39.2.4.0 (2024.07.08)
* 修复 wxid 问题
### v39.3.2.0
* 适配 `3.9.11.25`
<details><summary>点击查看更多</summary>
@ -70,14 +70,15 @@ python -m grpc_tools.protoc --python_out=. --proto_path=../../../WeChatFerry/rpc
* 发送图片消息
* 发送文件消息
* 发送卡片消息
* 发送 GIF
* 发送 XML 消息
* 发送 GIF 消息
* 拍一拍群友
* 转发消息
* 开启接收消息
* 关闭接收消息
* 查询数据库
* 获取朋友圈消息
* 下载图片、视频、文件
* 下载图片
* 解密图片
* 添加群成员
* 删除群成员

View File

@ -1,7 +1,7 @@
#! /usr/bin/env python3
# -*- coding: utf-8 -*-
__version__ = "39.2.4.0"
__version__ = "39.3.2.0"
import atexit
import base64
@ -20,7 +20,7 @@ import pynng
import requests
from google.protobuf import json_format
from wcferry import wcf_pb2
from wcferry.roomdata_pb2 import RoomData
from wcferry.wcf_pb2 import RoomData
from wcferry.wxmsg import WxMsg

File diff suppressed because one or more lines are too long