@netless/slide 0.8.5 → 0.8.7-deta-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
@@ -266,3 +266,14 @@
266
266
 
267
267
  * 兼容 ios webview 无法以 Audio 播放 MP4
268
268
  * 兼容 ios webview 设置 Audio.volume 无效
269
+
270
+ #### 0.8.5
271
+
272
+ * 修复 ios canvas 2d 内存泄露
273
+ * 修复部分切页动画黑屏
274
+
275
+ #### 0.8.6
276
+
277
+ * 支持通过动画后变色来暂停触发器序列中的无限动画
278
+ * 支持艺术字效果
279
+ * 修复公式排版错位问题
package/lib/Slide.d.ts CHANGED
@@ -1,5 +1,5 @@
1
1
  import { SlideError, ILoaderDelegate } from "@netless/ppt-player";
2
- import { useSlidePlugin } from "@netless/plugin-system";
2
+ import { IPlugin } from "@netless/plugin-system";
3
3
  export { ErrorType } from "@netless/ppt-player";
4
4
  export type { ILoaderDelegate } from "@netless/ppt-player";
5
5
  export * from "./global";
@@ -332,7 +332,11 @@ export declare class Slide extends Slide_base {
332
332
  static _tempLog: string;
333
333
  static _tempLogIndex: number;
334
334
  static flushLog(force?: boolean): Promise<void>;
335
- static usePlugin: typeof useSlidePlugin;
335
+ static remoteLogAddress: string | null;
336
+ static stopRemoteLog(): void;
337
+ static startRemoteLog(address: string): Promise<void>;
338
+ static appendLogString(logStr: string): void;
339
+ static usePlugin: (plugin: IPlugin) => void;
336
340
  private iosResetCache;
337
341
  private iosNewPlayer?;
338
342
  private needClearCacheImage;