Skip to content

Commit 132e4f4

Browse files
committed
feat: update ezuikit_static
1 parent 234e63d commit 132e4f4

File tree

17 files changed

+818
-398
lines changed

17 files changed

+818
-398
lines changed

CHANGELOG.md

+15
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,18 @@
1+
2+
### v8.1.9 (2025-04-16)
3+
4+
#### Feat
5+
6+
- 新增日志打印配置项 `loggerOptions``setLoggerOptions` api, 具体请参考[参数说明](./README.md), [issues #202](https://github.com/Ezviz-OpenBiz/EZUIKit-JavaScript-npm/issues/202), [issues #176](https://github.com/Ezviz-OpenBiz/EZUIKit-JavaScript-npm/issues/176), [issues #205](https://github.com/Ezviz-OpenBiz/EZUIKit-JavaScript-npm/issues/205), [issues #81](https://github.com/Ezviz-OpenBiz/EZUIKit-JavaScript-npm/issues/81)
7+
8+
- 新增一些事件, 如 `videoInfo``audioInfo``firstFrameDisplay`等, 具体请参考[事件](./README.md)
9+
10+
#### Fixed
11+
12+
- 修复调用录制api, ui 没有同步问题
13+
- 修复调用对讲api, ui 没有同步问题
14+
- 修复了一些小bug [issues #178](https://github.com/Ezviz-OpenBiz/EZUIKit-JavaScript-npm/issues/178), [issues #199](https://github.com/Ezviz-OpenBiz/EZUIKit-JavaScript-npm/issues/199), [issues #206](https://github.com/Ezviz-OpenBiz/EZUIKit-JavaScript-npm/issues/206),
15+
116
## v8.1.8(2025-03-19)
217

318
#### Feat

README.md

+681-98
Large diffs are not rendered by default.

dependencies.txt

+2-11
Original file line numberDiff line numberDiff line change
@@ -7,15 +7,6 @@ Author: Ezviz-OpenBiz
77

88
---
99

10-
Name: @ezuikit/utils-logger
11-
Version: 1.0.1
12-
License: MIT
13-
Private: false
14-
Description: logger utils
15-
Author: Ezviz-OpenBiz
16-
17-
---
18-
1910
Name: dayjs
2011
Version: 1.11.13
2112
License: MIT
@@ -253,7 +244,7 @@ SOFTWARE.
253244
---
254245

255246
Name: @ezuikit/player-plugin-record
256-
Version: 8.1.8-beta.4
247+
Version: 8.1.8-beta.3
257248
License: MIT
258249
Private: false
259250
Description: 萤石ezopne协议播放器录制插件
@@ -262,7 +253,7 @@ Author: Ezviz-OpenBiz
262253
---
263254

264255
Name: @ezuikit/player-ezopen
265-
Version: 8.1.8-beta.8
256+
Version: 8.1.9-beta.3
266257
License: MIT
267258
Private: false
268259
Description: 萤石ezopne协议播放器

ezuikit.js

+20-13
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

ezuikit_static/PlayCtrlWasm/playCtrl1/HasSIMD/Decoder.js

+24-26
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

ezuikit_static/PlayCtrlWasm/playCtrl1/NoSIMD/Decoder.js

+24-26
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

ezuikit_static/PlayCtrlWasm/playCtrl3/hasWorker/HasSIMD/Decoder.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Binary file not shown.

ezuikit_static/PlayCtrlWasm/playCtrl3/hasWorker/NoSIMD/Decoder.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Binary file not shown.

ezuikit_static/PlayCtrlWasm/playCtrl3/noWorker/Decoder.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Binary file not shown.

index.js

+8-15
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

index.mjs

+8-15
Large diffs are not rendered by default.

package.json

+7-6
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "ezuikit-js",
3-
"version": "8.1.8-beta.1",
3+
"version": "8.1.9-beta.1",
44
"description": "ezuikit javascript for npm",
55
"main": "index.js",
66
"module": "index.mjs",
@@ -26,24 +26,25 @@
2626
"open"
2727
],
2828
"dependencies": {
29-
"@ezuikit/player-ezopen": "8.1.8-beta.8",
30-
"@ezuikit/utils-collect": "0.1.0",
29+
"@ezuikit/player-ezopen": "8.1.9-beta.3",
30+
"@ezuikit/utils-collect": "0.1.1",
3131
"@ezuikit/utils-i18n": "^1.0.1",
32+
"@ezuikit/utils-logger": "^1.0.1",
3233
"@ezuikit/utils-tools": "^1.0.4",
3334
"@juggle/resize-observer": "^3.4.0",
3435
"abortcontroller-polyfill": "^1.7.5",
3536
"debounce-promise": "^3.1.2",
3637
"deepmerge": "^4.3.1",
37-
"delegate": "3.2.0",
3838
"formdata-polyfill": "^4.0.10",
3939
"jquery": "^3.3.1",
4040
"lodash-es": "^4.17.21",
4141
"screenfull": "^5.2.0",
42-
"uuid": "^8.3.0"
42+
"uuid": "^8.3.0",
43+
"delegate": "3.2.0"
4344
},
4445
"license": "ISC",
4546
"bugs": {
4647
"url": "https://github.com/Hikvision-Ezviz/EZUIKit-JavaScript-npm/issues"
4748
},
4849
"homepage": "https://github.com/Hikvision-Ezviz/EZUIKit-JavaScript-npm#readme"
49-
}
50+
}

pnpm-lock.yaml

+26-19
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

yarn.lock

-166
This file was deleted.

0 commit comments

Comments
 (0)