Skip to content

Commit

Permalink
Merge branch 'DDSDK-4.12.2-bugfix' into 'master'
Browse files Browse the repository at this point in the history
v4.12.2 v2

See merge request gamesanalytics/ios-sdk-v4!48
  • Loading branch information
unity-thull committed Oct 29, 2020
2 parents 89410ab + 3e99469 commit 69d265e
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 5 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.2](https://github.com/deltaDNA/ios-sdk/releases/tag/4.12.2) (2020-10-28)
### Fixed
- `imageMessageAction` events will now be sent correctly

## [4.12.1](https://github.com/deltaDNA/ios-sdk/releases/tag/4.12.1) (2020-07-01)
### Added
- added support for rich push notifications
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.1'
s.version = '4.12.2'
s.license = { :type => 'APACHE', :file => 'LICENSE' }
s.summary = 'A gaming analytics platform.'
s.homepage = 'https://deltadna.com'
Expand Down
3 changes: 2 additions & 1 deletion DeltaDNA/DDNAImageMessage.m
Original file line number Diff line number Diff line change
Expand Up @@ -525,7 +525,8 @@ - (void)actionHandlerFor:(NSString*)name withAction: (NSDictionary*)action
[self.actionEvent setParam:name forKey:@"imActionName"];
[self.actionEvent setParam:type forKey:@"imActionType"];
if (value != nil) {
[self.actionEvent setParam:value forKey:@"imActionValue"];
NSString* valueString = [NSString stringWithFormat: @"%@", value];
[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.11.6";
NSString *const DDNA_SDK_VERSION = @"iOS SDK v4.12.2";
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.11.6'
pod 'DeltaDNA', '~> 4.12.2'

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.11.6'
pod 'DeltaDNA', '~> 4.12.2'

target 'MyAppTests' do
inherit! :search_paths
Expand Down

0 comments on commit 69d265e

Please sign in to comment.