xgplayer 3.0.23 → 3.0.24-beta.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +11 -0
- package/dist/index.min.js +1 -1
- package/dist/index.min.js.map +1 -1
- package/es/_virtual/_rollupPluginBabelHelpers.js +37 -1
- package/es/lang/en.d.ts +1 -0
- package/es/lang/en.js +1 -0
- package/es/lang/jp.d.ts +1 -0
- package/es/lang/jp.js +1 -0
- package/es/lang/zh-cn.d.ts +1 -0
- package/es/lang/zh-cn.js +1 -0
- package/es/lang/zh-hk.d.ts +1 -0
- package/es/lang/zh-hk.js +1 -0
- package/es/player.d.ts +4 -0
- package/es/player.js +150 -133
- package/es/plugins/download/index.d.ts +2 -0
- package/es/plugins/download/index.js +6 -5
- package/es/plugins/download/saveAs.d.ts +44 -0
- package/es/plugins/download/saveAs.js +269 -0
- package/es/plugins/mobile/index.d.ts +6 -0
- package/es/plugins/mobile/index.js +12 -0
- package/es/plugins/pc/index.d.ts +18 -3
- package/es/plugins/pc/index.js +20 -1
- package/es/plugins/poster/index.d.ts +6 -4
- package/es/plugins/poster/index.js +46 -22
- package/es/plugins/track/index.js +6 -4
- package/es/presets/live.d.ts +1 -0
- package/es/presets/mobile.d.ts +1 -0
- package/es/utils/sniffer.d.ts +1 -0
- package/es/utils/sniffer.js +7 -2
- package/es/version.js +1 -1
- package/package.json +4 -5
package/CHANGELOG.md
CHANGED
|
@@ -1,4 +1,15 @@
|
|
|
1
1
|
# 版本更新记录
|
|
2
|
+
## 3.0.24
|
|
3
|
+
>* feat: 🎸 (xgplayer) download support authentication
|
|
4
|
+
>* refactor: 💡 (xgplayer) rm download.js
|
|
5
|
+
>* feat: 🎸 (xgplayer) texttrack i18n, fixed #1840
|
|
6
|
+
>* feat: 🎸 (xgplayer) add runHooks method to enhance hook functionality
|
|
7
|
+
>* feat: (xgplayer) poster support video native poster attributes
|
|
8
|
+
>* fix: 🐛 (xgplayer) enhance touch event handling, fixed #1836
|
|
9
|
+
>* fix: 🐛 (xgplayer) improve URL handling and default definition assignment in player initialization
|
|
10
|
+
>* fix: 🐛 (xgplayer) add catch when exitScreen
|
|
11
|
+
>* fix: 🐛 (xgplayer) Sniffer 兼容 HarmonyOS
|
|
12
|
+
>* chore: 🤖 (xgplayer) update danmu.js dependency to 1.2.1
|
|
2
13
|
## 3.0.23
|
|
3
14
|
>* refactor: 💡 (xgplayer) add playSessionId for once play process
|
|
4
15
|
>* fix: 🐛 (xgplayer) usePluginHooks not use arguments, fixed #1773
|