Skip to content

Commit 4cc5df1

Browse files
Merge pull request #80 from Kommunicate-io/release/2.5.0
Release/7.3.0
2 parents 00f7a70 + 48de134 commit 4cc5df1

File tree

5 files changed

+16
-5
lines changed

5 files changed

+16
-5
lines changed

CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,14 @@
1+
# React Native Kommunicate Chat v2.5.0
2+
- [iOS] Added Business Hours feature.
3+
- [iOS] Disabled conversation restart when the restart button is hidden.
4+
- [iOS] Enabled form data persistence in local cache.
5+
- [iOS] Fixed character limit bug in Dialogflow bot.
6+
- [iOS] Resolved bug in Text Area component.
7+
- [Android] Persisted Data in Form Rich Message
8+
- [Android] Added download file listner
9+
- [Android] ReDirected URL from Help center to Browser.
10+
- [Android] Fixed dialogue flow crash
11+
- [Android] Removed restarted coversation from form button
112
# React Native Kommunicate Chat v2.4.3
213
- Fixed Recording button not working properly in iOS.
314
# React Native Kommunicate Chat v2.4.2

RNKommunicateChat.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,5 +14,5 @@ Pod::Spec.new do |s|
1414
s.source_files = "ios/*.{h,m,swift}"
1515
s.requires_arc = true
1616
s.dependency 'React'
17-
s.dependency 'Kommunicate', '~> 7.2.9'
17+
s.dependency 'Kommunicate', '7.3.0'
1818
end

android/build.gradle

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

3636
dependencies {
3737
implementation 'com.facebook.react:react-native:+'
38-
api 'io.kommunicate.sdk:kommunicateui:2.13.2'
38+
api 'io.kommunicate.sdk:kommunicateui:2.13.3'
3939
}

ios/RNKommunicateChat.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -604,7 +604,7 @@ class RNKommunicateChat : RCTEventEmitter, KMPreChatFormViewControllerDelegate,
604604

605605
func updateUser (displayName: String?, imageLink : String?, status: String?, metadata: NSMutableDictionary?,phoneNumber: String?,email : String?, callback: RCTResponseSenderBlock!) {
606606

607-
let theUrlString = "\(ALUserDefaultsHandler.getBASEURL() as String)/rest/ws/user/update"
607+
let theUrlString = "\(KMCoreUserDefaultsHandler.getBASEURL() as String)/rest/ws/user/update"
608608

609609
let dictionary = NSMutableDictionary()
610610
if (displayName != nil) {
@@ -650,7 +650,7 @@ class RNKommunicateChat : RCTEventEmitter, KMPreChatFormViewControllerDelegate,
650650
}
651651

652652
//Update the local contact
653-
let alContact = ALContactDBService().loadContact(byKey: "userId", value: ALUserDefaultsHandler.getUserId())
653+
let alContact = ALContactDBService().loadContact(byKey: "userId", value: KMCoreUserDefaultsHandler.getUserId())
654654
if alContact == nil {
655655
callback(["Error", "User not found"])
656656
return

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "react-native-kommunicate-chat",
3-
"version": "2.4.3",
3+
"version": "2.5.0",
44
"description": "",
55
"main": "index.js",
66
"scripts": {

0 commit comments

Comments
 (0)