Skip to content

Commit

Permalink
Merge branch 'main' into nightly
Browse files Browse the repository at this point in the history
  • Loading branch information
danni-cool committed Oct 29, 2023
2 parents 6d33d26 + 4f63ca9 commit 2192f1b
Show file tree
Hide file tree
Showing 5 changed files with 34 additions and 14 deletions.
3 changes: 2 additions & 1 deletion .eslintignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
node_modules
root
docs
docs
*.md
3 changes: 2 additions & 1 deletion .prettierignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
yarn.lock
package-lock.json
pnpm-lock.yaml
pnpm-lock.yml
pnpm-lock.yml
*.md
18 changes: 18 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,27 @@
## [2.2.2](https://github.com/danni-cool/docker-wechatbot-webhook/compare/v2.2.1...v2.2.2) (2023-10-29)


### Bug Fixes

* 修复发送文件链接不带文件格式时无法正确解析的问题 & 移除 fetch 请求库 使用原生支持 ([b0b86b6](https://github.com/danni-cool/docker-wechatbot-webhook/commit/b0b86b623ff939bcaa4aced79a215103e7e7f1ee))


### Refactor

* 💡 优化代码 ([8f66412](https://github.com/danni-cool/docker-wechatbot-webhook/commit/8f664127e06d32bfc6eecef1c64e34041030b3a0))


### Performance Improvements

* docker 构建优化 ([efdb9e0](https://github.com/danni-cool/docker-wechatbot-webhook/commit/efdb9e086210cc1fac843001b5603cec797592b3))

## [2.2.1](https://github.com/danni-cool/docker-wechatbot-webhook/compare/v2.2.0...v2.2.1) (2023-10-23)

### Refactor

- 💡 移除patch补丁,更新依赖 ([aacc5a7](https://github.com/danni-cool/docker-wechatbot-webhook/commit/aacc5a7c152a1b0eec1533c6ef2a478b504cdae2))


## [2.2.0](https://github.com/danni-cool/docker-wechatbot-webhook/compare/v2.1.0...v2.2.0) (2023-10-22)

### Features
Expand Down
22 changes: 11 additions & 11 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,12 +32,12 @@ dannicool/docker-wechatbot-webhook

#### 可选参数

> Tips:需要增加参数使用 -e,多行用 \ 隔开,例如 -e RECVD_MSG_API="<https://example.com/your/url>" \
> Tips:需要增加参数使用 -e,多行用 \ 隔开,例如 -e RECVD_MSG_API="<https://example.com/your/url>" \
| 功能 | 环境变量 | 案例 | 备注 |
| -------------------- | --------------- | ---------------------------------------------- | ---------------------------------------------------------------------------------- |
| 收消息 | RECVD_MSG_API | RECVD_MSG_API="<https://example.com/your/url>" | 如果想自己处理收到消息的逻辑,比如根据消息联动,填上你的处理逻辑 url,该行可以省略 |
| 自定义登录 API token | LOGIN_API_TOKEN | LOGIN_API_TOKEN=abcdefg123 | 你也可以自定义一个自己的登录令牌,不配置的话,默认会生成一个 |
| 功能 | 环境变量 | 案例 | 备注 |
|--|--|--|--|
| 收消息 | RECVD_MSG_API | RECVD_MSG_API="<https://example.com/your/url>" | 如果想自己处理收到消息的逻辑,比如根据消息联动,填上你的处理逻辑 url,该行可以省略 |
| 自定义登录 API token | LOGIN_API_TOKEN | LOGIN_API_TOKEN=abcdefg123 | 你也可以自定义一个自己的登录令牌,不配置的话,默认会生成一个 |

## 👨🏻‍💻 登录wx

Expand Down Expand Up @@ -65,12 +65,12 @@ docker logs -f wxBotWebhook

> json 请求发送文件只支持外链
| 参数 | 说明 | 数据类型 | 默认值 | 可否为空 | 可选参数 |
| ------- | ----------------------------------------------------------------------------------------------------------------------------------------- | ----------------- | ------- | -------- | ---------------- | --------------------------- |
| to | **消息接收方**,传入`String` 默认是发给昵称(群名同理), 传入`Object` 结构支持发给备注过的人,比如:`{alias: '备注名'}`,群名不支持备注名 | `String` `Object` | - | Y | - |
| isRoom | **是否发的群消息**,这个参数决定了找人的时候找的是群还是人,因为昵称其实和群名相同在技术处理上 | `Boolean` | `false` | Y | `true` `false` |
| type | **消息类型**,消息不支持自动拆分,请手动调多次,发送的文件 Url 在微信里长啥样,是文件后缀决定的。 | `String` | - | N | `text` `fileUrl` | 支持 **文字****文件**|
| content | **消息内容**,如果希望发多个Url并解析,type 指定为 fileUrl 同时,content 里填 url 以英文逗号分隔 | `String` | - | N | - |
| 参数 | 说明 | 数据类型 | 默认值 | 可否为空 | 可选参数 |
| -- | -- | -- | -- | -- | -- |
| to | **消息接收方**,传入`String` 默认是发给昵称(群名同理), 传入`Object` 结构支持发给备注过的人,比如:`{alias: '备注名'}`,群名不支持备注名 | `String` `Object` | - | Y | - |
| isRoom | **是否发的群消息**,这个参数决定了找人的时候找的是群还是人,因为昵称其实和群名相同在技术处理上 | `Boolean` | `false` | Y | `true` `false` |
| type | **消息类型**,消息不支持自动拆分,请手动调多次,发送的文件 Url 在微信里长啥样,是文件后缀决定的。| `String` | - | N | `text` `fileUrl` | 支持 **文字****文件** |
| content | **消息内容**,如果希望发多个Url并解析,type 指定为 fileUrl 同时,content 里填 url 以英文逗号分隔 | `String` | - | N | - |

#### Example(curl)

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "docker-wechatbot-webhook",
"version": "2.2.1",
"version": "2.2.2",
"description": "给微信里加个 webhook 机器人,支持docker部署",
"main": "index.js",
"scripts": {
Expand Down

0 comments on commit 2192f1b

Please sign in to comment.