Skip to content

Commit

Permalink
release: 1.2.10
Browse files Browse the repository at this point in the history
  • Loading branch information
mhayashi committed Sep 10, 2015
1 parent 94bbdb1 commit fcd084b
Show file tree
Hide file tree
Showing 37 changed files with 43 additions and 0 deletions.
25 changes: 25 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,28 @@
# 1.2.10 (2015/09/08)

## Feature

- iOS 9 support
- Bitcode
- Enables Bitcode
- ATS
- Fix uploading
- **Attention:** In-app message and web view tracking won't work on iOS 9 until Oct 1 if your app enables ATS.
- Split screen multitasking
- Fix screen recording

## Improvement

- Major improvement for uploading
- **Attention:** MobileCoreServices.framework is required from this version
- In-app message API for c++ application

## Bug Fix

- Fixes the bug where in-app message sometimes not displaying
- Fixes the bug where it sometimes fails to track touches
- Fixes the bug where Usability testing doesn't work for some localization settings.

# 1.0.5 (2015/08/17)

- In-app message
Expand Down
5 changes: 5 additions & 0 deletions LICENSE
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,9 @@ This product includes a part of 'Mixpanel iOS SDK' (https://github.com/mixpanel/

----------------------------------------------------------------

This product includes 'AFNetworking' (https://github.com/AFNetworking/AFNetworking), which is released under the following license(s):
MIT <http://opensource.org/licenses/mit-license.html>

----------------------------------------------------------------

All other components of this product are: Copyright (c) 2014 Repro, Inc. All rights reserved.
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.
4 changes: 4 additions & 0 deletions cpp/ReproCpp.h
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,10 @@ class ReproCpp {
// Usablity Testing
static void enableUsabilityTesting();

// In App Message
static void disableInAppMessageOnActive();
static void showInAppMessage();

};

#endif
Expand Down
9 changes: 9 additions & 0 deletions cpp/ReproCpp.mm
Original file line number Diff line number Diff line change
Expand Up @@ -94,3 +94,12 @@
void ReproCpp::enableUsabilityTesting() {
[Repro enableUsabilityTesting];
}

// In App Message
void ReproCpp::disableInAppMessageOnActive() {
[Repro disableInAppMessageOnActive];
}

void ReproCpp::showInAppMessage() {
[Repro showInAppMessage];
}

0 comments on commit fcd084b

Please sign in to comment.