Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions docs/document/harmonyos/quickstart.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@

## 前提条件

- DevEco Studio NEXT Developer Beta2(5.0.3.502)及以上;
- DevEco Studio NEXT Release(5.0.3.900)及以上;
- HarmonyOS SDK API 12 及以上;
- 有效的环信即时通讯 IM 开发者账号和 App key,见 [环信即时通讯云控制台](https://console.easemob.com/user/login)。

Expand All @@ -36,7 +36,7 @@

4. 点击 **Finish**。根据屏幕提示,安装所需插件。

上述步骤使用 **DevEco Studio NEXT Developer Beta2(5.0.3.502)** 示例。
上述步骤使用 **DevEco Studio NEXT Release(5.0.3.900)** 示例。

### 2. 在工程 `build-profile.json5` 中设置支持字节码 HAR 包。

Expand Down
10 changes: 10 additions & 0 deletions docs/document/harmonyos/releasenote.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,16 @@

<Toc />

## 版本 V1.4.2 Dev 2024-11-04(开发版)

### 优化

- 优化 [ChatManager#fetchHistoryMessages](message_retrieve.html#从服务器获取指定会话的消息) 中自动下载缩略图的逻辑。

### 修复

- 修复消息扩展属性中不支持其他平台整型、浮点型等数据类型的问题。

## 版本 V1.4.1 Dev 2024-10-28(开发版)

### 新增特性
Expand Down
4 changes: 2 additions & 2 deletions docs/document/web/push/push_notification_mode_dnd.md
Original file line number Diff line number Diff line change
Expand Up @@ -120,13 +120,13 @@ WebIM.conn.getSilentModeForAll()

## 获取设置了推送通知方式的所有会话

你可以调用 `getAllSilentModeConversations` 方法获取设置了推送通知方式的所有会话。
你可以调用 `getSilentModeRemindTypeConversations` 方法获取设置了推送通知方式的所有会话。

[推送通知方式](#推送通知方式)包含以下三类:接收所有离线消息的推送通知、仅接收提及某些用户的消息的推送通知、不接收离线消息的推送通知。

```javascript
// pageSize 的取值范围为 [1,100],默认值为 10。
connection.getAllSilentModeConversations({pageSize: 10})
connection.getSilentModeRemindTypeConversations({pageSize: 10})
```

## 设置单个会话的推送通知
Expand Down