@netless/slide 1.4.38 → 1.4.39

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
@@ -4,6 +4,12 @@
4
4
 
5
5
  ## changelog
6
6
 
7
+ ### 1.4.39 (2025-09-15)
8
+ * 针对 IOS 15.4 版本开放 antialias 参数, 修复渲染异常问题
9
+
10
+ ### 1.4.38 (2025-09-05)
11
+ * 添加文本框旋转行书, 修复部分 PPT 文本倒置问题
12
+
7
13
  ### 1.4.37 (2025-7-16)
8
14
  * 添加 `setStageCountLimit` 静态方法, 用于设置强行清除最大限制, 需设置 `window.__nativeTags.platform`
9
15
 
package/lib/Slide.d.ts CHANGED
@@ -274,6 +274,7 @@ export interface ISlideConfig {
274
274
  skipActionWhenFrozen?: boolean;
275
275
  enableAutoForward?: boolean;
276
276
  customLinks?: CustomLink[];
277
+ antialias?: boolean;
277
278
  }
278
279
  interface MediaState {
279
280
  type: "pause" | "play";