Skip to content

Commit

Permalink
Update PushyOptions interface to require v10.4.2 or higher for debug …
Browse files Browse the repository at this point in the history
…and autoMarkSuccess options
  • Loading branch information
sunnylqm committed Apr 22, 2024
1 parent 470c0ae commit 835cbc2
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions site/pages/docs/api.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,14 +34,14 @@ interface PushyOptions {
| "onAppStart" // 仅在app启动时
| "onAppResume" // 仅在app从后台切换到前台时
| "both"; // 默认值,同时包含前两个场景
| null; // 不自动检查更新,必须手动调用checkUpdate方法,此选项需v10.4.1或更高版本
| null; // 不自动检查更新,必须手动调用checkUpdate方法,此选项需v10.4.2或更高版本
// 是否在热更重启后自动标记为成功,默认为true
autoMarkSuccess?: boolean;
// 是否在若干ms后自动清除最后的报错,默认为不清除
dismissErrorAfter?: number;
// 是否在开发环境中检查热更,默认为false。如需在开发环境中调试热更,请打开此选项。
// 但即便打开此选项,也仅能检查、下载热更,并不能实际应用热更。实际应用热更必须在release包中进行。
// 此选项需v10.4.1或更高版本
// 此选项需v10.4.2或更高版本
debug?: boolean;
}

Expand Down
2 changes: 1 addition & 1 deletion site/pages/docs/changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ title: 更新日志
type: 其他
---

### 10.4.1(2024-04-18
### 10.4.2(2024-04-22

- 加入 debug 参数,允许在开发环境中调试热更
- 热更策略中加入 null 选项,即禁止自动检查,完全手动控制
Expand Down

0 comments on commit 835cbc2

Please sign in to comment.