feat: Upgrade to 2.3.3+1

This commit is contained in:
anonymous 2023-10-30 11:02:55 +08:00
parent 9c11e66fd5
commit 32e43471f4
3 changed files with 3 additions and 2 deletions

View File

@ -7,6 +7,7 @@
## Bug Fixes ## Bug Fixes
* Fixed an issue on time tag creator. * Fixed an issue on time tag creator.
* Fixed an issue on Video Message LocalURL.
# 2.3.2 # 2.3.2

View File

@ -660,7 +660,7 @@ class TUIChatGlobalModel extends ChangeNotifier implements TIMUIKitClass {
final originalImageType = PlatformUtils().isIOS ? 1 : 0; final originalImageType = PlatformUtils().isIOS ? 1 : 0;
if (!isImageType && !isVideoType) { if (!isImageType && !isVideoType) {
_updateMessageLocationAndDownloadFile(messageProgress); _updateMessageLocationAndDownloadFile(messageProgress);
} else if ((isImageType && messageProgress.type == originalImageType) || isVideoType) { } else if ((isImageType && messageProgress.type == originalImageType) || (isVideoType && !messageProgress.isSnapshot)) {
Future.delayed(const Duration(seconds: 1), () => _updateMessageAndDownloadFile(message, messageProgress)); Future.delayed(const Duration(seconds: 1), () => _updateMessageAndDownloadFile(message, messageProgress));
} else { } else {
return; return;

View File

@ -1,6 +1,6 @@
name: tencent_cloud_chat_uikit name: tencent_cloud_chat_uikit
description: A powerful chat UI component library and business logic for Tencent Cloud Chat, creating seamless in-app chat modules for delightful user experiences. description: A powerful chat UI component library and business logic for Tencent Cloud Chat, creating seamless in-app chat modules for delightful user experiences.
version: 2.3.3 version: 2.3.3+1
homepage: https://trtc.io/products/chat?utm_source=gfs&utm_medium=link&utm_campaign=%E6%B8%A0%E9%81%93&_channel_track_key=k6WgfCKn homepage: https://trtc.io/products/chat?utm_source=gfs&utm_medium=link&utm_campaign=%E6%B8%A0%E9%81%93&_channel_track_key=k6WgfCKn
repository: https://github.com/TencentCloud/chat-uikit-flutter repository: https://github.com/TencentCloud/chat-uikit-flutter
documentation: https://comm.qq.com/im/doc/flutter/en/TUIKit/readme.html documentation: https://comm.qq.com/im/doc/flutter/en/TUIKit/readme.html