v39.0.4
This commit is contained in:
parent
40eff8eab3
commit
39b7ee4a75
46
README.MD
46
README.MD
@ -41,7 +41,7 @@
|
|||||||
* 删除群成员
|
* 删除群成员
|
||||||
* 解密图片
|
* 解密图片
|
||||||
* 获取朋友圈消息
|
* 获取朋友圈消息
|
||||||
* 某功能(Breaking Change)
|
* 下载图片、文件、视频
|
||||||
|
|
||||||
</details>
|
</details>
|
||||||
|
|
||||||
@ -59,10 +59,15 @@
|
|||||||
|后台回复 `WeChatFerry` 加群交流|如果你觉得有用|
|
|后台回复 `WeChatFerry` 加群交流|如果你觉得有用|
|
||||||
|
|
||||||
## 快速开始
|
## 快速开始
|
||||||
下载 [最新发布的版本](https://github.com/lich0821/WeChatFerry/releases/latest)。根据技术栈,选择客户端,将相应 `dll` 和 `exe` 文件放到对应位置。
|
### Python
|
||||||
|
[](https://pypi.python.org/pypi/wcferry) [](https://pypi.python.org/pypi/wcferry) [](https://wechatferry.readthedocs.io/zh/latest/?badge=latest)
|
||||||
|
|
||||||
### Go
|
* 安装
|
||||||
参考 [Go README.MD](clients/go/README.md)
|
```sh
|
||||||
|
pip install --upgrade wcferry
|
||||||
|
```
|
||||||
|
|
||||||
|
* 参考框架:[🤖WeChatRobot](https://github.com/lich0821/WeChatRobot)
|
||||||
|
|
||||||
### HTTP
|
### HTTP
|
||||||
[](https://pypi.python.org/pypi/wcfhttp) [](https://pypi.python.org/pypi/wcfhttp) [](https://wechatferry.readthedocs.io/zh/latest/?badge=latest)
|
[](https://pypi.python.org/pypi/wcfhttp) [](https://pypi.python.org/pypi/wcfhttp) [](https://wechatferry.readthedocs.io/zh/latest/?badge=latest)
|
||||||
@ -87,19 +92,15 @@ wcfhttp
|
|||||||
wcfhttp --cb http://your_host:your_port/callback
|
wcfhttp --cb http://your_host:your_port/callback
|
||||||
```
|
```
|
||||||
|
|
||||||
|
---
|
||||||
|
其余客户端,可下载 [最新发布的版本](https://github.com/lich0821/WeChatFerry/releases/latest),根据技术栈,选择客户端,将相应 `dll` 和 `exe` 文件放到对应位置。
|
||||||
|
|
||||||
|
### Go
|
||||||
|
参考 [Go README.MD](clients/go/README.md)
|
||||||
|
|
||||||
### Java
|
### Java
|
||||||
参考 [Java README.MD](clients/java/README.MD)
|
参考 [Java README.MD](clients/java/README.MD)
|
||||||
|
|
||||||
### Python
|
|
||||||
[](https://pypi.python.org/pypi/wcferry) [](https://pypi.python.org/pypi/wcferry) [](https://wechatferry.readthedocs.io/zh/latest/?badge=latest)
|
|
||||||
|
|
||||||
* 安装
|
|
||||||
```sh
|
|
||||||
pip install --upgrade wcferry
|
|
||||||
```
|
|
||||||
|
|
||||||
* 参考框架:[🤖WeChatRobot](https://github.com/lich0821/WeChatRobot)
|
|
||||||
|
|
||||||
### Rust
|
### Rust
|
||||||
参考 [Rust README.MD](clients/rust/README.MD)
|
参考 [Rust README.MD](clients/rust/README.MD)
|
||||||
|
|
||||||
@ -139,10 +140,16 @@ vcpkg integrate install
|
|||||||
### 编译
|
### 编译
|
||||||
使用 VS2019 打开工程,编译即可。
|
使用 VS2019 打开工程,编译即可。
|
||||||
|
|
||||||
注:如果遇到执行 `protoc` 时的 9009 错误,检查是否是 python3 环境有问题,或者 protoc 命令的环境变量配置不正确。
|
**注**:如果遇到执行 `protoc` 时的 9009 错误,检查是否是 python3 环境有问题,或者 protoc 命令的环境变量配置不正确。
|
||||||
|
|
||||||
### 运行
|
### 运行
|
||||||
双击 `Release` 里的 `launcher.exe`,`启动`。
|
有两种方式(二选一):
|
||||||
|
1. 运行 `wcf.exe` 启动
|
||||||
|
```sh
|
||||||
|
wcf.exe --help
|
||||||
|
```
|
||||||
|
|
||||||
|
2. 双击 `Release` 里的 `launcher.exe`,`启动`。
|
||||||
|
|
||||||
## 项目结构
|
## 项目结构
|
||||||
```sh
|
```sh
|
||||||
@ -207,8 +214,8 @@ Rust 客户端。
|
|||||||
|
|
||||||
## 版本更新
|
## 版本更新
|
||||||
|
|
||||||
### v39.0.3 (2023.09.28)
|
### v39.0.4 (2023.11.21)
|
||||||
* 修复登录账号昵称超长报错问题
|
* 下载图片、文件和视频
|
||||||
|
|
||||||
<details><summary>点击查看更多</summary>
|
<details><summary>点击查看更多</summary>
|
||||||
|
|
||||||
@ -220,6 +227,9 @@ Rust 客户端。
|
|||||||
* `y` 是 `WeChatFerry` 的版本,从 0 开始
|
* `y` 是 `WeChatFerry` 的版本,从 0 开始
|
||||||
* `z` 是各客户端的版本,从 0 开始
|
* `z` 是各客户端的版本,从 0 开始
|
||||||
|
|
||||||
|
### v39.0.3 (2023.09.28)
|
||||||
|
* 修复登录账号昵称超长报错问题
|
||||||
|
|
||||||
### v39.0.2 (2023.07.16)
|
### v39.0.2 (2023.07.16)
|
||||||
* 修复朋友圈消息 `is_group` 为 `True` 问题
|
* 修复朋友圈消息 `is_group` 为 `True` 问题
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user