Skip to content

Commit

Permalink
release: 1.4.14
Browse files Browse the repository at this point in the history
  • Loading branch information
mhayashi committed Dec 17, 2015
1 parent e47716c commit 5d002dd
Show file tree
Hide file tree
Showing 38 changed files with 11 additions and 4 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
# 1.4.14 (2015/12/17)

## Bug Fixes

- Fixes the issue that causes a crash if the app uses Apptimize
- Fixes the bug of User Profile API for C++
- Fixes event tracking API to suppport i18n

# 1.4.9 (2015/12/12)

## Enhancements
Expand Down
Binary file modified Repro.embeddedframework/Repro.framework/Info.plist
Binary file not shown.
Binary file modified Repro.embeddedframework/Repro.framework/Repro
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion cpp/ReproCpp.mm
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@

void ReproCpp::setUserProfile(const std::map<std::string, std::string> &profile) {
std::map<std::string, std::string>::const_iterator iter;
NSMutableDictionary *dict = nil;
NSMutableDictionary *dict = [[NSMutableDictionary alloc] init];
for (iter = profile.begin(); iter != profile.end(); iter++) {
NSString *key = [NSString stringWithUTF8String:iter->first.c_str()];
NSString *value = [NSString stringWithUTF8String:iter->second.c_str()];
Expand Down

0 comments on commit 5d002dd

Please sign in to comment.