Skip to content

Commit

Permalink
Merge pull request #418 from Iterable/import-6.2.13-diffs-to-master
Browse files Browse the repository at this point in the history
Import 6.2.13 diffs to master, prepare for 6.2.14
  • Loading branch information
roninopf committed Oct 28, 2020
2 parents fa423b5 + fadbe7c commit a815f94
Show file tree
Hide file tree
Showing 5 changed files with 22 additions and 7 deletions.
13 changes: 13 additions & 0 deletions CHANGELOG.md
Expand Up @@ -2,6 +2,19 @@
All notable changes to this project will be documented in this file.
This project adheres to [Semantic Versioning](http://semver.org/).

## 6.2.14
#### Added
- Added in-app animations

#### Fixed
- Fixed non-inbox in-apps showing up in the inbox if multiple were about to be shown

## 6.2.13
#### Fixed
- Made `IterablePushNotificationMetadata` struct public.
- Optimized auth token refresh.
- Use `systemBackground` color for iOS 14.

## 6.2.12
#### Added
- Added authentication support
Expand Down
2 changes: 1 addition & 1 deletion Iterable-iOS-AppExtensions.podspec
@@ -1,7 +1,7 @@
Pod::Spec.new do |s|
s.name = "Iterable-iOS-AppExtensions"
s.module_name = "IterableAppExtensions"
s.version = "6.2.12"
s.version = "6.2.14"
s.summary = "App Extensions for Iterable SDK"

s.description = <<-DESC
Expand Down
2 changes: 1 addition & 1 deletion Iterable-iOS-SDK.podspec
@@ -1,7 +1,7 @@
Pod::Spec.new do |s|
s.name = "Iterable-iOS-SDK"
s.module_name = "IterableSDK"
s.version = "6.2.12"
s.version = "6.2.14"
s.summary = "Iterable's official SDK for iOS"

s.description = <<-DESC
Expand Down
2 changes: 1 addition & 1 deletion swift-sdk/IterableAPI.swift
Expand Up @@ -9,7 +9,7 @@ import UIKit

@objcMembers public final class IterableAPI: NSObject {
/// The current SDK version
public static let sdkVersion = "6.2.12"
public static let sdkVersion = "6.2.14"

/// The email of the logged in user that this IterableAPI is using
public static var email: String? {
Expand Down
10 changes: 6 additions & 4 deletions swift-sdk/IterableConfig.swift
Expand Up @@ -129,11 +129,13 @@ public class IterableConfig: NSObject {
/// an expiration date field in it
public var expiringAuthTokenRefreshPeriod: TimeInterval = 60.0

/// If set to true, events will be queued locally when network is offline.
/// When the network is online again, the queued events will be sent to our backend.
public var enableOfflineMode = false

/// These are internal. Do not change
internal var apiEndpoint = Endpoint.api
internal var linksEndpoint = Endpoint.links

/// If set to true, events will be queued locally when network is offline.
/// When the network is online again, the queued events will be sent to our backend.
/// This is currently an experimental feature.
/// Please *DO NOT* enable this option without talking to your customer service rep.
internal var enableOfflineMode = false
}

0 comments on commit a815f94

Please sign in to comment.