Skip to content

Commit

Permalink
release notes synced
Browse files Browse the repository at this point in the history
  • Loading branch information
atovpeko committed Mar 5, 2024
1 parent b5ca781 commit f21cc5c
Show file tree
Hide file tree
Showing 24 changed files with 1,852 additions and 34 deletions.
2 changes: 1 addition & 1 deletion extensions-marketplace/develop/integrate/superclarity.mdx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
title: "Super Clarity"
title: "Super Clarity (beta)"
sidebar_position: 7
type: docs
description: >
Expand Down
2 changes: 1 addition & 1 deletion shared/chat-sdk/reference/release-notes/ios.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ v1.2.0 was released on December 6, 2023.
- Added the function of pinning a conversation:
- `AgoraChatManager#pinConversation`: Pins a conversation.
- `AgoraChatManager#getPinnedConversationsFromServerWithCursor`: Retrieves the pinned conversations from the server.
- Added the `AgoraChatManager#getConversationsFromServerWithCursor` method to retrieve the conversation list from the server.
- Added the `AgoraChatManager#getConversationsFromServerWithCursor` method to retrieve the conversation list from the server. Marked `getConversationsFromServer` and `getConversationsFromServerByPage:pageSize:completion:` deprecated.
- Added the `AgoraChatManager#getAllConversations:` method to retrieve local conversations in the reverse chronological order of when conversations are active.
- Added `AgoraChatFetchServerMessagesOption` as the parameter configuration class for retrieving historical messages from the server.
- Added the `AgoraChatManager#fetchMessagesFromServerBy` method to retrieve historical messages of a conversation from the server according to `AgoraChatFetchServerMessagesOption`, the parameter configuration class for retrieving historical messages.
Expand Down
11 changes: 9 additions & 2 deletions shared/chat-sdk/reference/release-notes/react-native.mdx
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
<PlatformWrapper platform="react-native">

## v1.2.1

v1.2.1 was released on February 2, 2024.

#### Improvements

- Updated native Android dependencies to support Android 14 (API34).

## v1.2.0

v1.2.0 was released on December 6, 2023.
Expand All @@ -17,8 +25,7 @@ v1.2.0 was released on December 6, 2023.
- Added the function of pinning a conversation:
- `ChatManager.pinConversation`: Pins a conversation.
- `ChatManager.fetchPinnedConversationsFromServerWithCursor`: Retrieves a list of pinned conversations from the server.
- Added the `ChatManager.fetchConversationsFromServerWithCursor` method to retrieve the conversation list from the server.
Marked the `ChatManager.fetchAllConversations` method deprecated.
- Marked the `ChatManager.fetchAllConversations` method deprecated.
- Added the `ChatManager.fetchHistoryMessagesByOptions` method to retrieve historical messages of a conversation from the server according to `ChatFetchMessageOptions`, the parameter configuration class for pulling historical messages.
- Added `ChatFetchMessageOptions` as the parameter configuration class for pulling historical messages from the server.
- Added the function of managing custom attributes of group members:
Expand Down
2 changes: 1 addition & 1 deletion shared/chat-sdk/reference/release-notes/web.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ v1.2.0 was released on December 6, 2023.
- Added the function of pinning a conversation:
- `pinConversation`: Pins a conversation.
- `getServerPinnedConversations`: Retrieves the pinned conversations from the server.
- Added the `getServerConversations` method to retrieve the conversation list from the server.
- Added the `getServerConversations` method to retrieve the conversation list from the server. Marked `getConversationlist` deprecated.
- Added the `searchOptions` parameter object to the `getHistoryMessages` method for pulling historical messages from the server.
- Added the function of managing custom attributes of group members:
- `setGroupMemberAttributes`: Sets custom attributes of a group member.
Expand Down
2 changes: 1 addition & 1 deletion shared/flexible-classroom/release-notes/android.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -300,7 +300,7 @@ As of v1.1.5.1, developers can set the latency level of an audience member. By d
- Ultra-low latency: The latency from the sender to the receiver is 400 ms to 800 ms.
- Low latency: The latency from the sender to the receiver is 1500 ms to 2000 ms.

The charges for low latency and ultra-low latency are different. For details, see the [pricing page](/interactive-live-streaming/reference/pricing).
The charges for low latency and ultra-low latency are different. For details, see the [pricing page](/interactive-live-streaming/overview/pricing).

**Support for setting whether students automatically send streams after going onto the "stage"**

Expand Down
2 changes: 1 addition & 1 deletion shared/flexible-classroom/release-notes/ios.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -317,7 +317,7 @@ As of v1.1.5, developers can set the latency level of an audience member. By def
- Ultra-low latency: The latency from the sender to the receiver is 400 ms to 800 ms.
- Low latency: The latency from the sender to the receiver is 1500 ms to 2000 ms.

The charges for low latency and ultra-low latency are different. For details, see the [pricing page](/interactive-live-streaming/reference/pricing).
The charges for low latency and ultra-low latency are different. For details, see the [pricing page](/interactive-live-streaming/overview/pricing).

**Support for setting whether students automatically send streams after going onto the "stage" (Android/iOS)**

Expand Down
37 changes: 34 additions & 3 deletions shared/flexible-classroom/release-notes/js.mdx
Original file line number Diff line number Diff line change
@@ -1,3 +1,34 @@
## v2.9.20

v2.9.20 was released on January 17, 2024.

#### New features

This release adds a notification which occurs when it takes too long to start the whiteboard.

#### Improvements

This release made the following improvements:

- Upgraded the RTM service to v1.5.1.
- Optimized network connection by enabling RTC and RTM Cloud Proxy configurations.
- Enhanced the experience of searching for a member student during interaction.
- Improved the display format of the time span during which a student is in the classroom.

#### Issues fixed

This release fixed the following issues:

- Users could join a room before the room was created.
- The loudspeaker list was incorrectly displayed when a user plugged in or unplugged an external audio device.
- The AI noise suppression switch was incorrectly displayed.
- Some words in the user interface of the group discussion were incorrect.
- Abnormalities occurred when a user left the discussion group.
- Issues occurred with sound card capturing.
- The callback was not triggered when the user attribute in a lecture hall was modified.
- Occasionally, when a student frequently enabled or disabled video from a mobile device, the teacher could not subscribe to the video of the student.
- Occasionally, the teacher/student could not operate the whiteboard after joining a discussion group.
- An occasional error occurred when uploading courseware, which lead to failure in displaying the courseware list.

## v2.9.0

Expand All @@ -7,12 +38,12 @@ v2.9.0 was released on November 22, 2023.

#### New features

This version adds the following new features:
This version adds the following new scenarios:

- Online classroom scenarios and the introduction of a new UI style and interactive experience that are closer to the usage habits of educational users. See the following documentation:

- [Scene SDK](../develop/customize-ui/customize-ui-scene-sdk)
- [API Reference](ui-scene)
- [FcrUIScene SDK](../develop/customize-ui/customize-ui-scene-sdk)
- [API Reference](../client-api/ui-scene)

One-to-one private chat function. This function does not currently support retrieving historical messages from servers on demand.

Expand Down
16 changes: 16 additions & 0 deletions shared/signaling/release-notes/web.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,22 @@ import * as lock from '@docs/shared/signaling/reference/api-ref/shared/_lock.mdx

<PlatformWrapper platform="web">

### v2.1.7

v2.1.7 was released on January 22, 2024.

#### Improvements

1. Optimized the processing logic of expired user status data when disconnected and reconnected.

2. Improved the reliability of message transmission in a Stream Channel under weak network conditions.

#### Fixed issues

- When calling the `getOnlineUsers` method and setting `includeUserId` to `true`, the parameter `includeState` set to `false` was missing from the `nextPage` return value.
- In the case of randomly subscribing to a Topic, what the user `message` received in the event notification `publisher` was inconsistent with the actual message sender.
- After repeatedly subscribing to the same channel, unsubscribing or leaving the channel failed.

### v2.1.5

v2.1.5 was released on October 17, 2023
Expand Down
15 changes: 8 additions & 7 deletions shared/video-sdk/reference/release-notes/android.mdx
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
<PlatformWrapper platform="android">
import KnownIssues from '@docs/shared/video-sdk/reference/known-issues/android.mdx';

If your target platform is Android 12 or higher, add the `android.permission.BLUETOOTH_CONNECT` permission to the `AndroidManifest.xml` file of the Android project to enable the Bluetooth function of the Android system.

### Known issues

See [Known issues](known-issues).
<KnownIssues />

### v4.3.0

Expand Down Expand Up @@ -579,7 +580,7 @@ As of this release, the SDK optimizes the video encoder algorithm and upgrades t

Call the `setVideoEncoderConfiguration` method to set the expected video encoding resolution in the video encoding parameters configuration.

<div class="alert note">The increase in the default resolution affects the aggregate resolution and thus the billing rate. See <a href="./pricing">Pricing</a>.</div>
<div class="alert note">The increase in the default resolution affects the aggregate resolution and thus the billing rate. See <a href="../overview/pricing">Pricing</a>.</div>

#### New features

Expand Down Expand Up @@ -876,10 +877,10 @@ This release optimizes the trigger logic of `onVideoSizeChanged`, which can also

This release fixed the following issues.

1. When calling `setVideoEncoderConfigurationEx` in the channel to increase the resolution of the video, it occasionally failed.
1. When calling `setVideoEncoderConfigurationEx` in the channel to increase the resolution of the video, it occasionally failed.
2. In online meeting scenarios, the local user and the remote user might not hear each other after the local user is interrupted by a call.
3. After calling `setCloudProxy` to set the cloud proxy, calling `joinChannelEx` to join multiple channels failed.
4. When using the Agora media player to play videos, after you play and pause the video, and then call the seek method to specify a new position for playback, the video image might remain unchanged; if you call the resume method to resume playback, the video might be played in a speed faster than the original one.
4. When using the Agora media player to play videos, after you play and pause the video, and then call the seek method to specify a new position for playback, the video image might remain unchanged; if you call the resume method to resume playback, the video might be played in a speed faster than the original one.

#### API changes

Expand Down Expand Up @@ -910,15 +911,15 @@ This release fixed the following issues.

- `enableDualStreamModeEx`



**Deprecated**

- `startEchoTest` [2/3]

**Deleted**

- `enableDualStreamMode` [2/3]
- `enableDualStreamMode` [2/3]

### v4.0.0

Expand Down Expand Up @@ -969,7 +970,7 @@ The UHD resolution (4K, 60 fps) is currently in beta and requires certain device

High resolution typically means higher performance consumption. To avoid a decrease in experience due to insufficient device performance, Agora recommends that you enable FHD and UHD video resolutions on devices with better performance.

The increase in the default resolution affects the aggregate resolution and thus the billing rate. See <a href="./pricing">Pricing</a>.
The increase in the default resolution affects the aggregate resolution and thus the billing rate. See <a href="pricing">Pricing</a>.

**3. Agora media player**

Expand Down
Loading

0 comments on commit f21cc5c

Please sign in to comment.