Skip to content

Commit 1250d7e

Browse files
authored
支持UOS协议 (#40)
* feat: 更新wecha4u版本,支持uos,重构代码逻辑和文件目录,支持更多的事件,全面支持puppet-wechat 所有事件和功能,并提供小程序解析 * 1.13.2 * 1.13.3 * 1.13.4 * 1.13.5 * 1.13.6 * 1.13.7
1 parent bcda65d commit 1250d7e

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

43 files changed

+2266
-481
lines changed

.eslintrc.cjs

+3
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,7 @@ const rules = {
55
module.exports = {
66
extends: '@chatie',
77
rules,
8+
"globals": {
9+
"NodeJS": true
10+
},
811
}

.gitignore

+2
Original file line numberDiff line numberDiff line change
@@ -63,3 +63,5 @@ typings/
6363
/package-lock.json
6464
.DS_Store
6565

66+
# .idea
67+
.idea

README.md

+6
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,12 @@ Learn more about the Puppet at [Wechaty wiki: Puppet](https://github.com/Chatie/
2727

2828
## HISTORY
2929

30+
### v1.13.1 (Nov 18, 2022)
31+
32+
1.Support uos login
33+
34+
2.Refactor the code to support more event
35+
3036
### master v1.0 (Oct 30, 2021)
3137

3238
Release 1.0 of Wechaty Puppet for Wechat4u

package.json

+6-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "wechaty-puppet-wechat4u",
3-
"version": "1.11.1",
3+
"version": "1.13.7",
44
"description": "Wechat4u Puppet for Wechaty",
55
"type": "module",
66
"exports": {
@@ -53,16 +53,19 @@
5353
"@chatie/semver": "^0.4.7",
5454
"@chatie/tsconfig": "^4.6.2",
5555
"@types/promise-retry": "^1.1.3",
56+
"@types/xml2js": "^0.4.11",
5657
"memory-card": "^1.0.3"
5758
},
5859
"peerDependencies": {
59-
"wechaty-puppet": "^1.11.14"
60+
"wechaty-puppet": "^1.18.3"
6061
},
6162
"homepage": "https://github.com/wechaty/wechaty-puppet-wechat4u#readme",
6263
"dependencies": {
6364
"@alloc/quick-lru": "^5.2.0",
65+
"fast-xml-parser": "^3.21.1",
6466
"promise-retry": "^2.0.1",
65-
"wechat4u": "^0.7.7"
67+
"wechat4u": "^0.7.8",
68+
"xml2js": "^0.4.23"
6669
},
6770
"publishConfig": {
6871
"access": "public",

0 commit comments

Comments
 (0)