v3.7.0.30.22
This commit is contained in:
parent
f0bc322e7b
commit
374e2d845e
19
README.MD
19
README.MD
@ -1,6 +1,8 @@
|
|||||||
# WeChatFerry
|
# WeChatFerry
|
||||||
一个玩微信的工具。更多介绍见:[WeChatFerry: 一个玩微信的工具](https://mp.weixin.qq.com/s/CGLfSaNDy8MyuyPWGjGJ7w)。
|
一个玩微信的工具。更多介绍见:[WeChatFerry: 一个玩微信的工具](https://mp.weixin.qq.com/s/CGLfSaNDy8MyuyPWGjGJ7w)。
|
||||||
|
|
||||||
|
👉 [WeChatRobot🤖](https://github.com/lich0821/WeChatRobot),一个基于 WeChatFerry 的 Python 机器人框架。
|
||||||
|
|
||||||
目前实现的功能:
|
目前实现的功能:
|
||||||
* 检查登录状态
|
* 检查登录状态
|
||||||
* 获取登录账号的 wxid
|
* 获取登录账号的 wxid
|
||||||
@ -13,6 +15,7 @@
|
|||||||
* 发送图片
|
* 发送图片
|
||||||
* 发送文件
|
* 发送文件
|
||||||
* 发送 XML
|
* 发送 XML
|
||||||
|
* 发送表情
|
||||||
* 允许接收消息
|
* 允许接收消息
|
||||||
* 停止接收消息
|
* 停止接收消息
|
||||||
* 执行 SQL 查询
|
* 执行 SQL 查询
|
||||||
@ -21,15 +24,14 @@
|
|||||||
|
|
||||||

|

|
||||||
|
|
||||||
👉 [WeChatRobot](https://github.com/lich0821/WeChatRobot),一个基于WeChatFerry的Python机器人框架。
|
欢迎加群交流,后台回复 ** `WeChatFerry` **(*注意大小写*):
|
||||||
|
|
||||||
欢迎加群交流,后台回复 `WeChatFerry `:
|
|
||||||
|
|
||||||

|

|
||||||
|
|
||||||
## 快速开始
|
## 快速开始
|
||||||
下载 [最新发布的版本](https://github.com/lich0821/WeChatFerry/releases/latest)。根据技术栈,选择客户端,目前支持:
|
下载 [最新发布的版本](https://github.com/lich0821/WeChatFerry/releases/latest)。根据技术栈,选择客户端,目前支持:
|
||||||
* Python [](https://pypi.python.org/pypi/wcferry) [](https://pypi.python.org/pypi/wcferry)
|
* Python [](https://pypi.python.org/pypi/wcferry) [](https://pypi.python.org/pypi/wcferry)
|
||||||
|
* Java [README](java/README.MD)
|
||||||
|
|
||||||
> [gRPC 分支](https://github.com/lich0821/WeChatFerry/tree/grpc) 支持更多客户端:
|
> [gRPC 分支](https://github.com/lich0821/WeChatFerry/tree/grpc) 支持更多客户端:
|
||||||
> * C/C++
|
> * C/C++
|
||||||
@ -43,13 +45,13 @@
|
|||||||
pip install --upgrade wcferry
|
pip install --upgrade wcferry
|
||||||
```
|
```
|
||||||
|
|
||||||
* 运行
|
* 参考框架:[🤖WeChatRobot](https://github.com/lich0821/WeChatRobot)
|
||||||
|
|
||||||
参考 [README.MD](python/README.MD)。
|
### Java
|
||||||
|
参考 [README.MD](java/README.MD)
|
||||||
|
|
||||||
## 一起开发
|
## 一起开发
|
||||||
### 安装开发环境
|
### 安装开发环境
|
||||||
参见 [A gRPC Demo](https://github.com/lich0821/gRpcDemo/blob/wx/README.MD)。
|
|
||||||
#### 安装 vcpkg
|
#### 安装 vcpkg
|
||||||
* 安装,参考[Vcpkg: 总览](https://github.com/microsoft/vcpkg/blob/master/README_zh_CN.md)。
|
* 安装,参考[Vcpkg: 总览](https://github.com/microsoft/vcpkg/blob/master/README_zh_CN.md)。
|
||||||
```sh
|
```sh
|
||||||
@ -94,7 +96,7 @@ WeChatFerry
|
|||||||
```
|
```
|
||||||
|
|
||||||
### launcher
|
### launcher
|
||||||
图形启动器,调用 `sdk` 将 `spy` 注入微信。其他客户端可通过 RPC 连接到 `spy` 进行消息传递。监听的地址为 `tcp://0.0.0.0:10086` 和 `tcp://0.0.0.0:10087`。
|
图形启动器,调用 `sdk` 将 `spy` 注入微信。其他客户端可通过 RPC 连接到 `spy` 进行消息传递。默认监听的地址为 `tcp://0.0.0.0:10086` 和 `tcp://0.0.0.0:10087`。
|
||||||
|
|
||||||
### python
|
### python
|
||||||
Python 客户端。
|
Python 客户端。
|
||||||
@ -112,6 +114,9 @@ RPC 的通信部分和序列化 / 反序列化部分。
|
|||||||
跟 `launcher` 类似,命令行版启动器。
|
跟 `launcher` 类似,命令行版启动器。
|
||||||
|
|
||||||
## 版本更新
|
## 版本更新
|
||||||
|
### v3.7.0.30.22(2023.04.09)
|
||||||
|
将监听端口调整为可配置。
|
||||||
|
|
||||||
### v3.7.0.30.21(2023.03.15)
|
### v3.7.0.30.21(2023.03.15)
|
||||||
* 发送表情
|
* 发送表情
|
||||||
|
|
||||||
|
@ -19,7 +19,7 @@ WCF_ROOT = os.path.abspath(os.path.dirname(__file__))
|
|||||||
sys.path.insert(0, WCF_ROOT)
|
sys.path.insert(0, WCF_ROOT)
|
||||||
import wcf_pb2 # noqa
|
import wcf_pb2 # noqa
|
||||||
|
|
||||||
__version__ = "3.7.0.30.21"
|
__version__ = "3.7.0.30.22"
|
||||||
|
|
||||||
|
|
||||||
def _retry():
|
def _retry():
|
||||||
|
BIN
spy/spy.aps
BIN
spy/spy.aps
Binary file not shown.
@ -51,7 +51,7 @@ END
|
|||||||
//
|
//
|
||||||
|
|
||||||
VS_VERSION_INFO VERSIONINFO
|
VS_VERSION_INFO VERSIONINFO
|
||||||
FILEVERSION 20,0,0,0
|
FILEVERSION 22,0,0,0
|
||||||
PRODUCTVERSION 3,7,0,30
|
PRODUCTVERSION 3,7,0,30
|
||||||
FILEFLAGSMASK 0x3fL
|
FILEFLAGSMASK 0x3fL
|
||||||
#ifdef _DEBUG
|
#ifdef _DEBUG
|
||||||
@ -69,7 +69,7 @@ BEGIN
|
|||||||
BEGIN
|
BEGIN
|
||||||
VALUE "CompanyName", "WeChatFerry"
|
VALUE "CompanyName", "WeChatFerry"
|
||||||
VALUE "FileDescription", "WeChatFerry"
|
VALUE "FileDescription", "WeChatFerry"
|
||||||
VALUE "FileVersion", "20.0.0.0"
|
VALUE "FileVersion", "22.0.0.0"
|
||||||
VALUE "InternalName", "spy.dll"
|
VALUE "InternalName", "spy.dll"
|
||||||
VALUE "LegalCopyright", "Copyright (C) 2023"
|
VALUE "LegalCopyright", "Copyright (C) 2023"
|
||||||
VALUE "OriginalFilename", "spy.dll"
|
VALUE "OriginalFilename", "spy.dll"
|
||||||
|
Loading…
Reference in New Issue
Block a user