chore(python): bump to v39.4.4.0

This commit is contained in:
Changhua 2025-03-24 22:50:15 +08:00
parent 3d6af178f4
commit 59bccbb931
2 changed files with 6 additions and 5 deletions

View File

@ -44,8 +44,8 @@ python -m grpc_tools.protoc --python_out=. --proto_path=../../../WeChatFerry/rpc
## 版本更新 ## 版本更新
### v39.4.3.0 ### v39.4.4.0
* 实现通过好友申请功能 * 实现发送 XML 功能
<details><summary>点击查看更多</summary> <details><summary>点击查看更多</summary>
@ -59,6 +59,7 @@ python -m grpc_tools.protoc --python_out=. --proto_path=../../../WeChatFerry/rpc
功能: 功能:
* 获取登录二维码
* 查询登录状态 * 查询登录状态
* 获取登录账号信息 * 获取登录账号信息
* 获取消息类型 * 获取消息类型
@ -70,6 +71,7 @@ python -m grpc_tools.protoc --python_out=. --proto_path=../../../WeChatFerry/rpc
* 发送图片消息 * 发送图片消息
* 发送文件消息 * 发送文件消息
* 发送卡片消息 * 发送卡片消息
* 发送 XML
* 发送 GIF 消息 * 发送 GIF 消息
* 拍一拍群友 * 拍一拍群友
* 转发消息 * 转发消息
@ -77,7 +79,7 @@ python -m grpc_tools.protoc --python_out=. --proto_path=../../../WeChatFerry/rpc
* 关闭接收消息 * 关闭接收消息
* 查询数据库 * 查询数据库
* 获取朋友圈消息 * 获取朋友圈消息
* 下载图片 * 下载图片、视频、文件
* 解密图片 * 解密图片
* 通过好友申请 * 通过好友申请
* 添加群成员 * 添加群成员

View File

@ -1,7 +1,7 @@
#! /usr/bin/env python3 #! /usr/bin/env python3
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
__version__ = "39.4.3.0" __version__ = "39.4.4.0"
import atexit import atexit
import base64 import base64
@ -409,7 +409,6 @@ class Wcf():
Returns: Returns:
int: 0 为成功其他失败 int: 0 为成功其他失败
""" """
raise Exception("Not implemented, yet")
req = wcf_pb2.Request() req = wcf_pb2.Request()
req.func = wcf_pb2.FUNC_SEND_XML # FUNC_SEND_XML req.func = wcf_pb2.FUNC_SEND_XML # FUNC_SEND_XML
req.xml.receiver = receiver req.xml.receiver = receiver