@netless/slide 1.4.32 → 1.4.34
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/README.md +9 -0
- package/lib/RenderingTaskManager.js +1 -0
- package/lib/Slide.d.ts +0 -1
- package/lib/Slide.js +1 -1
- package/lib/SyncTaskManager.js +1 -1
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -4,6 +4,15 @@
|
|
|
4
4
|
|
|
5
5
|
## changelog
|
|
6
6
|
|
|
7
|
+
### 1.4.34 (2025-6-10)
|
|
8
|
+
* 修复偶现小内存设备上出现的不同步问题
|
|
9
|
+
|
|
10
|
+
### 1.4.33 (2025-6-10)
|
|
11
|
+
* 修复渲染多次有错误的页面时, 无法继续跳转正常的页面问题
|
|
12
|
+
|
|
13
|
+
### 1.4.32 (2025-5-21)
|
|
14
|
+
* 添加 `userAddClick` 模式, 使得用户可以添加点击事件, 并传入 `slide` 使用
|
|
15
|
+
|
|
7
16
|
### 1.4.31 (2025-5-19)
|
|
8
17
|
* 修复 `pcm` 裸数据播放时, 音视频播放问题
|
|
9
18
|
|
|
@@ -104,6 +104,7 @@ var RenderingTaskManager = /** @class */ (function () {
|
|
|
104
104
|
_this.tasks.splice(selfIndex, 1);
|
|
105
105
|
_this.replaceIdleTask();
|
|
106
106
|
}
|
|
107
|
+
_this.eventHub.emit("task-error-".concat(task.id));
|
|
107
108
|
});
|
|
108
109
|
}
|
|
109
110
|
RenderingTaskManager.prototype.replaceIdleTask = function () {
|
package/lib/Slide.d.ts
CHANGED