Skip to content

Commit

Permalink
Release v8.0.0
Browse files Browse the repository at this point in the history
Release v8.0.0
  • Loading branch information
yeskay-zohocorp committed Dec 15, 2023
1 parent 5b0b7a8 commit 2afc266
Show file tree
Hide file tree
Showing 7 changed files with 17 additions and 9 deletions.
6 changes: 5 additions & 1 deletion Example/Sample-SwiftUI/Sample/MobilistenImplementation.swift
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,11 @@ class MobilistenImplementation {


class func showLauncher(_ status: Bool) {
ZohoSalesIQ.showLauncher(status)
if status {
ZohoSalesIQ.Launcher.show(.always)
} else {
ZohoSalesIQ.Launcher.show(.never)
}
}

/**
Expand Down
2 changes: 1 addition & 1 deletion Example/Sample-UIKit/Sample/AppDelegate.swift
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ class AppDelegate: UIResponder, UIApplicationDelegate, UNUserNotificationCenterD
let accessKey = "<#Enter Access key#>"

ZohoSalesIQ.initWithAppKey(appKey, accessKey: accessKey)
ZohoSalesIQ.showLauncher(true)
ZohoSalesIQ.Launcher.show(.always)
ZohoSalesIQ.Chat.setVisibility(.attenderImageOnLauncher, visible: true)
ZohoSalesIQ.delegate = self
ZohoSalesIQ.Chat.delegate = self
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,11 @@ class MainViewController: UIViewController {
*/
@objc func showLauncherAction(_ segmentedControl: UISegmentedControl) {
let show = segmentedControl.selectedSegmentIndex == 0 ? true : false
ZohoSalesIQ.showLauncher(show)
if show {
ZohoSalesIQ.Launcher.show(.always)
} else {
ZohoSalesIQ.Launcher.show(.never)
}
}

/**
Expand Down
2 changes: 1 addition & 1 deletion Mobilisten.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |spec|
spec.name = "Mobilisten"
spec.version = "7.0.0"
spec.version = "8.0.0"
spec.summary = "Mobilisten iOS SDK"
spec.license = { :type => "MIT", :text=> <<-LICENSE
MIT License
Expand Down
Binary file modified Mobilisten.zip
Binary file not shown.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
[![Platform](https://img.shields.io/badge/platforms-iOS-orange.svg)](https://cocoapods.org/pods/Mobilisten)
[![SupportedLanguages](https://img.shields.io/badge/languages-Swift%20%7C%20%20ObjectiveC-green.svg)](https://www.zoho.com/salesiq/help/developer-section/ios-mobile-sdk-installation.html)
[![Version](https://img.shields.io/badge/version-7.0.0-blue.svg)](https://cocoapods.org/pods/Mobilisten)
[![Version](https://img.shields.io/badge/version-8.0.0-blue.svg)](https://cocoapods.org/pods/Mobilisten)
[![Cocoapods CDI](https://github.com/zoho/SalesIQ-Mobilisten-iOS/workflows/Cocoapods%20CD/badge.svg)](https://github.com/zoho/SalesIQ-Mobilisten-iOS/actions?query=workflow%3A%22Cocoapods+CD%22)

# SalesIQ Mobilisten iOS SDK 7.0.0
# SalesIQ Mobilisten iOS SDK 8.0.0

Connect with customers at every step of their journey. Give them the best in-app live chat experience with Mobilisten. Mobilisten enables customers to reach you from any screen on your app, get their questions answered, and make better purchase decisions.

Expand All @@ -19,7 +19,7 @@ platform :ios, '11.0'

target 'Project Target' do
use_frameworks!
pod 'Mobilisten', '7.0.0'
pod 'Mobilisten', '8.0.0'
end
```

Expand Down
4 changes: 2 additions & 2 deletions compatibility_matrix.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[
{
"Xcode Version": "12 and Above",
"Mobilisten Version": "7.0.0"
"Xcode Version": "13 and Above",
"Mobilisten Version": "8.0.0"
}
]

0 comments on commit 2afc266

Please sign in to comment.