@netless/slide 0.6.0 → 0.6.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/README.md CHANGED
@@ -608,3 +608,12 @@ const slide = new Slide({
608
608
  * 添加 ISlideRenderOptions.maxResolutionLevel 配置参数
609
609
  * 进一步降低移动设备内存消耗
610
610
  * 支持通过视频帧触发的动画类型 (需要重新发起转换任务)
611
+
612
+ #### 0.6.0
613
+
614
+ * 支持全局音量控制
615
+ * rtc 混音接口, 添加 volume 要求
616
+
617
+ #### 0.6.1
618
+
619
+ * 修复一处内存泄露代码
package/lib/Slide.d.ts CHANGED
@@ -536,7 +536,7 @@ export declare class Slide extends Slide_base {
536
536
  hasPrevStep(): boolean;
537
537
  /**
538
538
  * 设置全局音量, 非同步操作, 只会修改本地音量,不会触发同步事件
539
- * @param v
539
+ * @param v 数值范围 0 ~ 1
540
540
  */
541
541
  updateGlobalVolume(v: number): void;
542
542
  /**