Skip to content

Commit 70601f1

Browse files
committed
v5.0.3
1 parent 00168d7 commit 70601f1

File tree

91 files changed

+8819
-761
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

91 files changed

+8819
-761
lines changed

calls_uikit/CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
1+
## 5.0.3
2+
3+
## Enhancements
4+
- Updated `cometchat_sdk` to version `4.0.23`.
5+
- Updated `cometchat_uikit_shared` to version `5.0.3`.
6+
7+
## Fixes
8+
- Fixed an issue where the ringtone continued ringing even after the call had ended following a single ring.
9+
110
## 5.0.2
211

312
## Enhancements

calls_uikit/android/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ android {
6161

6262
defaultConfig {
6363
minSdkVersion 24
64-
buildConfigField("String", "SDK_VERSION", "\"5.0.2\"")
64+
buildConfigField("String", "SDK_VERSION", "\"5.0.3\"")
6565
}
6666

6767
dependencies {}

calls_uikit/ios/cometchat_calls_uikit.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
#
55
Pod::Spec.new do |s|
66
s.name = 'cometchat_calls_uikit'
7-
s.version = '5.0.2'
7+
s.version = '5.0.3'
88
s.summary = 'Flutter plugin featuring custom audio and video call widgets. Integrate seamlessly with Cometchat Chat UI Kit or use independently for streamlined development.'
99
s.description = <<-DESC
1010
A new Flutter plugin project.

calls_uikit/lib/src/call_logs/cometchat_call_logs/cometchat_call_logs.dart

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -595,7 +595,7 @@ class _CometChatCallLogsState extends State<CometChatCallLogs> {
595595
bottom: spacing.padding ?? 2,
596596
),
597597
child: Text(
598-
"No Call Logs Yet",
598+
cc.Translations.of(context).noCallLogsYet,
599599
textAlign: TextAlign.center,
600600
style: TextStyle(
601601
color: style.emptyStateTextColor ?? colorPalette.textPrimary,
@@ -608,7 +608,7 @@ class _CometChatCallLogsState extends State<CometChatCallLogs> {
608608
),
609609
),
610610
Text(
611-
"Make or receive calls to see your call history\nlisted here.",
611+
cc.Translations.of(context).makeOrReceiveCalls,
612612
textAlign: TextAlign.center,
613613
style: TextStyle(
614614
color: style.emptyStateSubTitleTextColor ??

calls_uikit/lib/src/incoming_call/cometchat_incoming_call_controller.dart

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,9 @@ class CometChatIncomingCallController extends GetxController with CallListener {
7575
CometChatUIKit.soundManager.play(
7676
sound: Sound.incomingCall,
7777
packageName: customSoundForCallsPackage ?? UIConstants.packageName,
78-
customSound: customSoundForCalls);
78+
customSound: customSoundForCalls,
79+
isLooping: true
80+
);
7981
developer.log('sound playing');
8082
} catch (_) {
8183
developer.log("Sound not played");

calls_uikit/lib/src/outgoing_call/cometchat_outgoing_call_controller.dart

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,8 @@ class CometChatOutgoingCallController extends GetxController
6565
CometChatUIKit.soundManager.play(
6666
sound: Sound.outgoingCall,
6767
packageName: customSoundForCallsPackage ?? UIConstants.packageName,
68-
customSound: customSoundForCalls);
68+
customSound: customSoundForCalls,
69+
isLooping: true);
6970
developer.log('sound playing');
7071
} catch (_) {
7172
developer.log("Sound not played");

calls_uikit/pubspec.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: cometchat_calls_uikit
22
description: Flutter plugin featuring custom audio and video call widgets. Integrate seamlessly with Cometchat Chat UI Kit or use independently for streamlined development.
3-
version: 5.0.2
3+
version: 5.0.3
44
homepage: https://www.cometchat.com/
55

66
environment:
@@ -12,7 +12,7 @@ dependencies:
1212
sdk: flutter
1313
intl: any
1414
get: ^4.6.5
15-
cometchat_sdk: ^4.0.22
15+
cometchat_sdk: ^4.0.23
1616
cometchat_calls_sdk: ^4.1.0
1717
cometchat_uikit_shared:
1818
path: ../shared_uikit

chat_uikit/CHANGELOG.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,19 @@
1+
## 5.0.3
2+
3+
## Enhancements
4+
- Updated `cometchat_sdk` to version `4.0.23`.
5+
- Updated `cometchat_uikit_shared` to version `5.0.3`.
6+
7+
## Fixes
8+
- Fixed an issue where the dateSeparatorPattern in CometChatMessageList was not functioning as expected.
9+
- Resolved a problem where the FooterView would close unexpectedly when interacting with the MessageComposer in the Flutter UI Kit.
10+
- Fixed a bug causing the app to open twice when accepting a VOIP call from the background.
11+
- Addressed the appearance of duplicate date separators in message threads after sending a new message.
12+
- Resolved an issue where the reply compose box would disappear when replying to sticker messages.
13+
- Fixed a UI issue where the send button was misaligned and other buttons became unusable when replying to video, sticker, or poll messages.
14+
- Corrected the display of translated messages to prevent the original word from appearing below the translation.
15+
- Fixed a visual glitch where a dark screen briefly flashed when reopening a deleted chat from the search view.
16+
117
## 5.0.2
218

319
## Enhancements

chat_uikit/android/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ android {
6161

6262
defaultConfig {
6363
minSdkVersion 21
64-
buildConfigField("String", "SDK_VERSION", "\"5.0.2\"")
64+
buildConfigField("String", "SDK_VERSION", "\"5.0.3\"")
6565
}
6666

6767
dependencies {

chat_uikit/ios/cometchat_chat_uikit.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
#
55
Pod::Spec.new do |s|
66
s.name = 'cometchat_chat_uikit'
7-
s.version = '5.0.2'
7+
s.version = '5.0.3'
88
s.summary = 'CometChat Flutter UI KIt'
99
s.description = <<-DESC
1010
CometChat Flutter UI KIt

0 commit comments

Comments
 (0)