Skip to content

Commit

Permalink
Release 6.12.3
Browse files Browse the repository at this point in the history
  • Loading branch information
hiteshjain29 committed Sep 8, 2022
1 parent a555026 commit c53cf69
Show file tree
Hide file tree
Showing 5 changed files with 18 additions and 14 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.MD
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
## 6.12.2
### Fix
- App Freezing on ios 16 after campaign finished/cancelled
## 6.12.2
### Fix
- Text alignment with Chinese letters
- Max moods rating ( Getting mood rating as 6)
- Avoid storing empty Standard Event Modules (Triggering a campaign on launch)
Expand Down
4 changes: 2 additions & 2 deletions Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@

import PackageDescription

let version = "6.12.2"
let checksum = "4e63e9bc1b50758197eb12a9a11719cd2ef738de3353d02ac01eb265f3a92027"
let version = "6.12.3"
let checksum = "af25a78866cf6a0c261c2dc1be3b47953338f4d7fb760f0741e447e1c9525fb2"
let url = "https://github.com/usabilla/usabilla-u4a-ios-swift-sdk/releases/download/v\(version)/UsabillaXCFramework.zip"

let package = Package(
Expand Down
22 changes: 11 additions & 11 deletions Readme.MD
Original file line number Diff line number Diff line change
Expand Up @@ -49,22 +49,22 @@ Read the [Default Events](#defaultevents) section for a explanation of the new f
- [ThreadSafe](#ThreadSafe)
- [Telemetry data collection](#Telemetry-data-collection)
- [Getting User feedback in app](#Getting-user-feedback-in-app)
- [Default Events](#defaultevents)
- [Standard Events](#standardevents)

* * *

## Requirements
- iOS 10.0+
- Xcode 12+
- iOS 11+
- Xcode 13+
- Swift 4.0+

**Note : v`6.8.5` can be used for `Xcode 10.3`& v`6.12.0` for `Xcode 11.`**
**Note : v`6.12.2` can be used for `Xcode 12` & for `Xcode 14+` use v`6.12.3` onwards.**

## Installation

You can install the Usabilla SDK using Cocoapods, Carthage or manually.

The SDK framework is build with Module Format Stability (as of 6.4.3). It should compile and run with any version of Xcode 12+
The latest versions of SDK are build with Module Format Stability.
Previous versions are available at our git-repository. For Carthage please check the Carthage section

### SPM
Expand All @@ -85,7 +85,7 @@ use_frameworks!

target 'YourProjectTarget' do

pod 'Usabilla', '~> 6.12.2'
pod 'Usabilla', '~> 6.12.3'

End
```
Expand All @@ -96,7 +96,7 @@ For other Xcode version, use:
```ruby
pod 'Usabilla', :podspec => 'https://raw.githubusercontent.com/usabilla/usabilla-u4a-ios-swift-sdk/Xcode-x.y.z/Usabilla.podspec'
```
replace Xcode-x.y.z with the required version eg. Xcode-10.3. Available versions `Xcode-12.5.1`.
replace Xcode-x.y.z with the required version eg. Xcode-12.5.1. Available versions `Xcode-14.0`.

Then, run the following command:

Expand Down Expand Up @@ -124,7 +124,7 @@ For other Xcode version, use:
```yaml
binary "https://raw.githubusercontent.com/usabilla/usabilla-u4a-ios-swift-sdk/Xcode-x.y.z/Usabilla.json"
```
replace Xcode-x.y.z with the required version eg. Xcode-10.3. Available versions `Xcode-12.5.1`.
replace Xcode-x.y.z with the required version eg. Xcode-12.5.1. Available versions `Xcode-14.0`.

**Note : Carthage - `0.38.0` encourage using XCFrameworks and Usabilla SDK for carthage supports XCFrameworks from `6.9.0` onwards**

Expand Down Expand Up @@ -866,11 +866,11 @@ The data can be obtained like this

```

## Default Events
## Standard Events

From SDK **`v6.12.0`** onwards we are introducing a new feature **Default Events**.
From SDK **`v6.12.2`** onwards we are introducing a new feature **Standard Events**.

**Note : Now with Default Events you can show campaigns in your application(Host application embedded with GetFeedback Digital/ Usabilla SDK) without adding any extra lines of code. You just have to create Standard Campaigns(Campaigns with Default/System Events) with your `User-Account` at `GetFeedback`.**
**Note : Now with Standard Events you can show campaigns in your application(Host application embedded with GetFeedback Digital/ Usabilla SDK) without adding any extra lines of code. You just have to create Standard Campaigns(Campaigns with Default/System Events) with your `User-Account` at `GetFeedback`.**

Currently we are supporting these lifecycle / system events :
- `LAUNCH` : Define as when the app is entering foreground
Expand Down
1 change: 1 addition & 0 deletions Usabilla.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
{
"6.12.3": "https://github.com/usabilla/usabilla-u4a-ios-swift-sdk/releases/download/v6.12.3/UsabillaXCFramework.zip",
"6.12.2": "https://github.com/usabilla/usabilla-u4a-ios-swift-sdk/releases/download/v6.12.2/UsabillaXCFramework.zip",
"6.12.1": "https://github.com/usabilla/usabilla-u4a-ios-swift-sdk/releases/download/v6.12.1/UsabillaXCFramework.zip",
"6.12.0": "https://github.com/usabilla/usabilla-u4a-ios-swift-sdk/releases/download/v6.12.0/UsabillaXCFramework.zip",
Expand Down
2 changes: 1 addition & 1 deletion Usabilla.podspec
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
version = "6.12.2"
version = "6.12.3"

Pod::Spec.new do |s|

Expand Down

0 comments on commit c53cf69

Please sign in to comment.