-
Notifications
You must be signed in to change notification settings - Fork 44
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
12 additions
and
32 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,33 +1,13 @@ | ||
## v3.8.0 | ||
|
||
- **Dependency Update** | ||
The minimum version of `@sendbird/chat` has been bumped to `4.16.0`. | ||
|
||
- **Reaction Support in Supergroup** | ||
Reactions are now supported in supergroups. This update introduces a simplified `ReactedUserInfo` type, replacing the previous `User` and `Member` types for reaction-related data. For more details, please refer to the [#217](https://github.com/sendbird/sendbird-uikit-react-native/pull/217). | ||
|
||
- **RTL Support** | ||
Right-to-left (RTL) support is now automatically activated based on the language. | ||
|
||
```ts | ||
import { I18nManager } from 'react-native'; | ||
|
||
// To allow RTL support, use the following code: | ||
I18nManager.allowRTL(true); | ||
|
||
// To test RTL, you can force RTL by using the following code: | ||
// I18nManager.forceRTL(true); | ||
## v3.8.1 | ||
|
||
- **Added fallback for deleted emoji icons** | ||
Fixed a crash that occurred when a reaction emoji was deleted and could not be found. A question mark icon will now appear as a fallback in such cases. | ||
|
||
- **Support for hiding user ids in mention suggestions** | ||
Added an option to hide user IDs in the mention suggestion list. It can be used as shown below: | ||
```tsx | ||
const module = createGroupChannelModule(); | ||
const GroupChannelFragment = createGroupChannelFragment({ | ||
SuggestedMentionList: (props) => <module.SuggestedMentionList {...props} showUserId={false} />, | ||
}); | ||
``` | ||
|
||
**Android**: Add the following line to your `AndroidManifest.xml` to enable RTL support: | ||
|
||
```xml | ||
<application | ||
android:supportsRtl="true"> | ||
</application> | ||
``` | ||
|
||
**iOS**: For iOS, enable RTL support by adding supported languages in the Localizations section of your Xcode project settings. | ||
|
||
- **Improved stability** | ||
Some bugs related to voice messages have been fixed. |