Skip to content

Commit

Permalink
update setPolling return WindowParams
Browse files Browse the repository at this point in the history
  • Loading branch information
AderanFeng committed Feb 2, 2024
1 parent c850a26 commit 0ad2be0
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 5 deletions.
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,10 @@
# 版本更新记录
## [2.16.80] - 2024-02-01
- 更新 `window-manager` 至 0.4.48
- 新增 `WindowParams.polling` 参数
## [2.16.79] - 2024-01-10
- 更新 `@netless/app-slide` 至 0.2.51, 修复淡入淡出动画闪烁。
更新 `window-manager` 至 0.4.66
- 更新 `window-manager` 至 0.4.66
## [2.16.77] - 2023-12-20
- 更新 `@netless/app-slide` 至 0.2.49, 新增 ppt 事件埋点
- 更新 `white-web-sdk` 至 2.16.48
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ add dependency of whiteboard in the **app/build.gradle** file
```groovy
dependencies {
// Get the latest version number through the release notes.
implementation "com.github.netless-io:whiteboard-android:2.16.79"
implementation "com.github.netless-io:whiteboard-android:2.16.80"
}
```

Expand Down
2 changes: 1 addition & 1 deletion README_zh_CN.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ allprojects {
```groovy
dependencies {
// 数字请根据最新版自行添加
implementation "com.github.netless-io:whiteboard-android:2.16.79"
implementation "com.github.netless-io:whiteboard-android:2.16.80"
}
```

Expand Down
2 changes: 1 addition & 1 deletion sdk/src/main/java/com/herewhite/sdk/WhiteSdk.java
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
* `WhiteSdk` 类。
*/
public class WhiteSdk {
private final static String SDK_VERSION = "2.16.79";
private final static String SDK_VERSION = "2.16.80";

private final static Gson gson = new Gson();
private static AudioMixerBridge sAudioMixerBridge;
Expand Down
3 changes: 2 additions & 1 deletion sdk/src/main/java/com/herewhite/sdk/domain/WindowParams.java
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,8 @@ public Boolean getPolling() {
return polling;
}

public void setPolling(Boolean polling) {
public WindowParams setPolling(Boolean polling) {
this.polling = polling;
return this;
}
}

0 comments on commit 0ad2be0

Please sign in to comment.