Skip to content

Commit 0d0b785

Browse files
committed
Release commit 2.14.1
1 parent 3b36c00 commit 0d0b785

File tree

5 files changed

+10
-6
lines changed

5 files changed

+10
-6
lines changed

OneSignal.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |s|
22
s.name = "OneSignal"
3-
s.version = "2.14.0"
3+
s.version = "2.14.1"
44
s.summary = "OneSignal push notification library for mobile apps."
55
s.homepage = "https://onesignal.com"
66
s.license = { :type => 'MIT', :file => 'LICENSE' }

OneSignalDynamic.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |s|
22
s.name = "OneSignalDynamic"
3-
s.version = "2.14.0"
3+
s.version = "2.14.1"
44
s.summary = "OneSignal push notification library for mobile apps."
55
s.homepage = "https://onesignal.com"
66
s.license = { :type => 'MIT', :file => 'LICENSE' }

iOS_SDK/OneSignalSDK/Framework/OneSignal.framework/Versions/A/Headers/OneSignal.h

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ typedef NS_ENUM(NSUInteger, OSNotificationDisplayType) {
5959
/*Notification is silent, or app is in focus but InAppAlertNotifications are disabled*/
6060
OSNotificationDisplayTypeNone,
6161

62-
/*Default UIAlertView display*/
62+
/*Default UIAlertController display*/
6363
OSNotificationDisplayTypeInAppAlert,
6464

6565
/*iOS native notification display*/
@@ -210,13 +210,18 @@ typedef NS_ENUM(NSUInteger, OSNotificationDisplayType) {
210210
- (void)handleMessageAction:(OSInAppMessageAction * _Nonnull)action NS_SWIFT_NAME(handleMessageAction(action:));
211211
@end
212212

213-
/* OneSignal Session Types */
213+
/* OneSignal Influence Types */
214214
typedef NS_ENUM(NSUInteger, Session) {
215215
DIRECT,
216216
INDIRECT,
217217
UNATTRIBUTED,
218218
DISABLED
219219
};
220+
/* OneSignal Influence Channels */
221+
typedef NS_ENUM(NSUInteger, OSInfluenceChannel) {
222+
IN_APP_MESSAGE,
223+
NOTIFICATION,
224+
};
220225

221226
@interface OSOutcomeEvent : NSObject
222227

@@ -352,7 +357,6 @@ typedef void (^OSHandleInAppMessageActionClickBlock)(OSInAppMessageAction* actio
352357
/*Block for handling outcome event being sent successfully*/
353358
typedef void (^OSSendOutcomeSuccess)(OSOutcomeEvent* outcome);
354359

355-
356360
/*Dictionary of keys to pass alongside the init settings*/
357361

358362
/*Let OneSignal directly prompt for push notifications on init*/
Binary file not shown.

iOS_SDK/OneSignalSDK/Source/OneSignal.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@ @interface OneSignal (SessionStatusDelegate)
136136

137137
@implementation OneSignal
138138

139-
NSString* const ONESIGNAL_VERSION = @"021400";
139+
NSString* const ONESIGNAL_VERSION = @"021401";
140140
static NSString* mSDKType = @"native";
141141
static BOOL coldStartFromTapOnNotification = NO;
142142

0 commit comments

Comments
 (0)