v3.7.0.30.23

This commit is contained in:
Changhua 2023-04-13 00:44:24 +08:00
parent 24ae07507c
commit cc0f2f6fdf
5 changed files with 12 additions and 3 deletions

View File

@ -11,6 +11,7 @@
* 获取所有好友
* 获取数据库
* 获取某数据库下的表
* 获取用户信息
* 发送文本消息(可 @
* 发送图片
* 发送文件
@ -21,6 +22,7 @@
* 执行 SQL 查询
* 接受好友申请
* 添加群成员
* 解密图片
![Demo](demo.gif)
@ -114,6 +116,11 @@ RPC 的通信部分和序列化 / 反序列化部分。
跟 `launcher` 类似,命令行版启动器。
## 版本更新
### v3.7.0.30.23 (2023.04.13)
* 解密图片
* 获取登录账号信息
* 获取联系人备注
### v3.7.0.30.222023.04.09
将监听端口调整为可配置。

View File

@ -16,6 +16,7 @@ pip install --upgrade wcferry
* 获取所有好友:`get_friends`
* 获取数据库:`get_dbs`
* 获取某数据库下的表:`get_tables`
* 获取用户信息:`get_user_info`
* 发送文本消息(可 @`send_text`
* 发送图片:`send_image`
* 发送文件:`send_file`
@ -26,6 +27,7 @@ pip install --upgrade wcferry
* 执行 SQL 查询:`query_sql`
* 接受好友申请:`accept_new_friend`
* 添加群成员:`add_chatroom_members`
* 解密图片:`decrypt_image`
详情查看 [client.py](wcferry/client.py)。

View File

@ -19,7 +19,7 @@ WCF_ROOT = os.path.abspath(os.path.dirname(__file__))
sys.path.insert(0, WCF_ROOT)
import wcf_pb2 # noqa
__version__ = "3.7.0.30.22"
__version__ = "3.7.0.30.23"
def _retry():

Binary file not shown.

View File

@ -51,7 +51,7 @@ END
//
VS_VERSION_INFO VERSIONINFO
FILEVERSION 22,0,0,0
FILEVERSION 23,0,0,0
PRODUCTVERSION 3,7,0,30
FILEFLAGSMASK 0x3fL
#ifdef _DEBUG
@ -69,7 +69,7 @@ BEGIN
BEGIN
VALUE "CompanyName", "WeChatFerry"
VALUE "FileDescription", "WeChatFerry"
VALUE "FileVersion", "22.0.0.0"
VALUE "FileVersion", "23.0.0.0"
VALUE "InternalName", "spy.dll"
VALUE "LegalCopyright", "Copyright (C) 2023"
VALUE "OriginalFilename", "spy.dll"