Skip to content

Commit d6425ea

Browse files
Update SDK to 0.10.7
1 parent 1e8a1e0 commit d6425ea

File tree

5 files changed

+19
-5
lines changed

5 files changed

+19
-5
lines changed

CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,17 @@
1+
## 0.10.7 (08/08/2023)
2+
### Features
3+
* Say hi to bot actions! Certain actions may need to be performed before or after the execution of a response in a bot conversation to complete the process. These changes can be anything in the chat screen, API triggers, pop-up feedbacks or articles, handover to agents, stop/Minimize conversations etc. You will be able to configure this via the bot builder using actions in iOS.
4+
* We are adding support for multi-select as a new input type for your customers. Customers will now be able to pick and choose multiple choices that appears as buttons in Android.
5+
6+
### Enhancement
7+
* Handle disabling of reply editor when bot response is pending in iOS.
8+
* Improved displaying of last message in topic list with multiline text in iOS.
9+
* Update UI for single select button in Android.
10+
11+
### Bug fixes
12+
* Fix sporadic crash while setting user properties in iOS
13+
* Fix triggering bot flow messages even when bot is unpublished in iOS.
14+
115
## 0.10.6 (05/07/2023)
216
### Features
317
* Support for multi-select Carousel as a new input type for your customers. Customers will now be able to pick and choose multiple choices that appears as a series of options with a horizontal scroll (carousel) on the screen. The options list can also contain images in iOS.

android/build.gradle

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

3636
dependencies {
3737
implementation 'com.android.support:localbroadcastmanager:28.0.0'
38-
implementation 'com.github.freshworks:freshchat-android:5.9.0'
38+
implementation 'com.github.freshworks:freshchat-android:5.9.2'
3939
}
4040

4141

ios/freshchat_sdk.podspec

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
#
55
Pod::Spec.new do |s|
66
s.name = 'freshchat_sdk'
7-
s.version = '0.10.6'
7+
s.version = '0.10.7'
88
s.summary = 'Freshchat Flutter SDK - iOS'
99
s.description = <<-DESC
1010
Freshchat Flutter SDK - iOS.
@@ -17,7 +17,7 @@ Pod::Spec.new do |s|
1717
s.public_header_files = 'Classes/**/*.h'
1818
s.dependency 'Flutter'
1919
s.platform = :ios
20-
s.dependency "FreshchatSDK", '5.8.0'
20+
s.dependency "FreshchatSDK", '5.9.0'
2121

2222
# Flutter.framework does not contain a i386 slice. Only x86_64 simulators are supported.
2323
s.pod_target_xcconfig = { 'DEFINES_MODULE' => 'YES', 'VALID_ARCHS[sdk=iphonesimulator*]' => 'x86_64' }

lib/freshchat_sdk.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -229,7 +229,7 @@ class Freshchat {
229229
final String sdkVersion = await _channel.invokeMethod('getSdkVersion');
230230
final String operatingSystem = Platform.operatingSystem;
231231
// As there is no simple way to get current freshchat flutter sdk version, we are hardcoding here.
232-
final String allSdkVersion = "flutter-0.10.6-$operatingSystem-$sdkVersion ";
232+
final String allSdkVersion = "flutter-0.10.7-$operatingSystem-$sdkVersion ";
233233
return allSdkVersion;
234234
}
235235

pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ description: Freshchat is a modern messaging software for sales and customer eng
33
repository: https://github.com/freshworks/freshchat-flutter-sdk
44

55
# Whenever this version is updated, it must also be updated in Freshchat::getSdkVersion()
6-
version: 0.10.6
6+
version: 0.10.7
77
homepage: https://www.freshworks.com/
88

99
environment:

0 commit comments

Comments
 (0)