Skip to content

Commit

Permalink
Release 1.3.7
Browse files Browse the repository at this point in the history
1. 修复可视化埋点中,预定义属性的Bug
  • Loading branch information
Yuhan ZOU committed Mar 28, 2016
1 parent 73b5bc5 commit edafb08
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion SensorsAnalyticsSDK/SensorsAnalyticsSDK.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = "SensorsAnalyticsSDK"
s.version = "1.3.6"
s.version = "1.3.7"
s.summary = "The offical iOS SDK of Sensors Analytics."
s.homepage = "http://www.sensorsdata.cn"
s.source = { :git => 'https://github.com/sensorsdata/sa-sdk-ios.git', :tag => "v#{s.version}" }
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ - (void)execute {
NSString *label = (cell && cell.textLabel && cell.textLabel.text) ? cell.textLabel.text : @"";
NSDictionary *properties = @{
@"$vtrack_cell_index": [NSString stringWithFormat: @"%ld", (unsigned long)indexPath.row],
@"$vtrack_cell_sction": [NSString stringWithFormat: @"%ld", (unsigned long)indexPath.section],
@"$vtrack_cell_section": [NSString stringWithFormat: @"%ld", (unsigned long)indexPath.section],
@"$vtrack_cell_label": label
};
[self track:[self eventName] withProperties:properties];
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
#import "SASwizzler.h"
#import "SensorsAnalyticsSDK.h"

#define VERSION @"1.3.6"
#define VERSION @"1.3.7"

@implementation SensorsAnalyticsDebugException

Expand Down

0 comments on commit edafb08

Please sign in to comment.