Skip to content

Commit

Permalink
Merge pull request #5 from unity/4.12.3
Browse files Browse the repository at this point in the history
4.12.3 Release PR
  • Loading branch information
unity-thull authored and GitHub Enterprise committed Nov 11, 2020
2 parents 69d265e + b4fdf23 commit 770593c
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 4 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Change Log

## [4.12.3](https://github.com/deltaDNA/ios-sdk/releases/tag/4.12.3) (2020-11-11)
### Fixed
- `imageMessageAction` events that use the store action will only contain the iOS app store link

## [4.12.2](https://github.com/deltaDNA/ios-sdk/releases/tag/4.12.2) (2020-10-28)
### Fixed
- `imageMessageAction` events will now be sent correctly
Expand Down
2 changes: 1 addition & 1 deletion DeltaDNA.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = 'DeltaDNA'
s.version = '4.12.2'
s.version = '4.12.3'
s.license = { :type => 'APACHE', :file => 'LICENSE' }
s.summary = 'A gaming analytics platform.'
s.homepage = 'https://deltadna.com'
Expand Down
3 changes: 3 additions & 0 deletions DeltaDNA/DDNAImageMessage.m
Original file line number Diff line number Diff line change
Expand Up @@ -526,6 +526,9 @@ - (void)actionHandlerFor:(NSString*)name withAction: (NSDictionary*)action
[self.actionEvent setParam:type forKey:@"imActionType"];
if (value != nil) {
NSString* valueString = [NSString stringWithFormat: @"%@", value];
if ([type isEqualToStringCaseInsensitive:@"store"]) {
valueString = ((NSDictionary *) value)[@"IOS"];
}
[self.actionEvent setParam:valueString forKey:@"imActionValue"];
}
[[DDNASDK sharedInstance] recordEvent:self.actionEvent];
Expand Down
2 changes: 1 addition & 1 deletion DeltaDNA/DDNASettings.m
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@

#import "DDNASettings.h"

NSString *const DDNA_SDK_VERSION = @"iOS SDK v4.12.2";
NSString *const DDNA_SDK_VERSION = @"iOS SDK v4.12.3";
NSString *const DDNA_ENGAGE_API_VERSION = @"4";

NSString *const DDNA_EVENT_STORAGE_PATH = @"{persistent_path}";
Expand Down
2 changes: 1 addition & 1 deletion README-CN.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ target 'MyApp' do
# 如果你使用Swift或者想要使用动态框架,请取消此行注释
use_frameworks!

pod 'DeltaDNA', '~> 4.12.2'
pod 'DeltaDNA', '~> 4.12.3'

target 'MyAppTests' do
inherit! :search_paths
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ target 'MyApp' do
# Uncomment this line if you're using Swift or would like to use dynamic frameworks
use_frameworks!

pod 'DeltaDNA', '~> 4.12.2'
pod 'DeltaDNA', '~> 4.12.3'

target 'MyAppTests' do
inherit! :search_paths
Expand Down

0 comments on commit 770593c

Please sign in to comment.