Skip to content

Commit fe1c365

Browse files
committed
v5.0.4
1 parent 70601f1 commit fe1c365

File tree

50 files changed

+1941
-1193
lines changed

Some content is hidden

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

50 files changed

+1941
-1193
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.4
2+
3+
## Enhancements
4+
- Updated `cometchat_uikit_shared` to version `5.0.4`.
5+
6+
## Fixes
7+
- Updated call icons in the Call tab to distinguish between incoming and missed calls more clearly.
8+
- Resolved an issue where the app was rejected due to the use of deprecated media permissions. The permissions have been updated to comply with current platform requirements.
9+
110
## 5.0.3
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.3\"")
64+
buildConfigField("String", "SDK_VERSION", "\"5.0.4\"")
6565
}
6666

6767
dependencies {}

calls_uikit/android/src/main/AndroidManifest.xml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
22
package="com.cometchat.cometchat_calls_uikit">
33
<uses-permission android:name="android.permission.INTERNET"/>
4-
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE"/>
54
<uses-permission android:name="android.permission.VIBRATE" />
65
<uses-permission android:name="android.permission.RECORD_AUDIO" />
76
<uses-permission android:name="android.permission.CAMERA" />

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.3'
7+
s.version = '5.0.4'
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/utils/call_utils.dart

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -203,7 +203,7 @@ class CallUtils {
203203
Widget incoming = incomingCallIcon ??
204204
Icon(
205205
Icons.call_received_outlined,
206-
color: style.incomingCallIconColor ?? colorPalette.error,
206+
color: style.incomingCallIconColor ?? colorPalette.success,
207207
size: 16,
208208
);
209209

@@ -216,7 +216,7 @@ class CallUtils {
216216

217217
Widget missed = missedCallIcon ??
218218
Icon(
219-
Icons.call_received_outlined,
219+
Icons.call_missed_outgoing_rounded,
220220
color: style.missedCallIconColor ?? colorPalette.error,
221221
size: 16,
222222
);

calls_uikit/pubspec.yaml

Lines changed: 1 addition & 1 deletion
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.3
3+
version: 5.0.4
44
homepage: https://www.cometchat.com/
55

66
environment:

chat_uikit/CHANGELOG.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,21 @@
1+
## 5.0.4
2+
3+
## Enhancements
4+
- Updated `cometchat_uikit_shared` to version `5.0.4`.
5+
6+
## Fixes
7+
- Fixed an issue where CometChatSDK.framework was missing a dSYM file during iOS build uploads, causing upload failures.
8+
- Resolved a bug causing all screens to suddenly disconnect, improving stability.
9+
- Corrected the group member count display in the Group Info page to accurately reflect member additions and removals.
10+
- Eliminated a brief black screen flicker that appeared when opening a user or group from the search screen.
11+
- Prevented users from submitting edited messages that only include space characters, avoiding unnecessary "edited" status.
12+
- Removed flicker when reopening the app from the background or recent apps list.
13+
- Removed the unnecessary online presence badge on the chat header avatar in one-on-one chats for a cleaner UI.
14+
- Disabled logout functionality when the user has no internet connection, ensuring network-dependent actions behave correctly.
15+
- Adjusted the spacing between the CometChat logo and "Login" text on the login screen to align with design standards.
16+
- Prevented the poll creation page from becoming scrollable, ensuring a stable and consistent user experience during poll creation.
17+
- Resolved an issue where the app was rejected due to the use of deprecated media permissions. The permissions have been updated to comply with current platform requirements.
18+
119
## 5.0.3
220

321
## 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.3\"")
64+
buildConfigField("String", "SDK_VERSION", "\"5.0.4\"")
6565
}
6666

6767
dependencies {

chat_uikit/android/src/main/AndroidManifest.xml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,9 @@
33

44
<uses-permission android:name="android.permission.INTERNET"/>
55

6-
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE"/>
76
<uses-permission android:name="android.permission.VIBRATE" />
87
<uses-permission android:name="android.permission.RECORD_AUDIO" />
98
<uses-permission android:name="android.permission.CAMERA" />
10-
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
119
<queries>
1210
<!-- If your app makes calls -->
1311
<intent>

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.3'
7+
s.version = '5.0.4'
88
s.summary = 'CometChat Flutter UI KIt'
99
s.description = <<-DESC
1010
CometChat Flutter UI KIt

0 commit comments

Comments
 (0)