Skip to content

Commit

Permalink
release: 0.9.7
Browse files Browse the repository at this point in the history
  • Loading branch information
Distiller committed May 16, 2015
1 parent b2baf5c commit 9c3d99d
Show file tree
Hide file tree
Showing 50 changed files with 22 additions and 9 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
# 0.9.7 (2015/05/17)

- Enables to pause screen recording while scrolling
- Fixes screen recording while showing customized UIWindow
- Fixes OS version to include patch version
- Changes arrow mark's color of Usability testing view

# 0.8.0 (2015/04/27)

- Pause automatically when openURL is called
Expand Down
10 changes: 2 additions & 8 deletions Example/ReproExample/ReproExample.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -388,10 +388,7 @@
INFOPLIST_FILE = ReproExample/Info.plist;
IPHONEOS_DEPLOYMENT_TARGET = 6.0;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
OTHER_LDFLAGS = (
"-ObjC",
"-all_load",
);
OTHER_LDFLAGS = "-ObjC";
PRODUCT_NAME = "$(TARGET_NAME)";
};
name = Debug;
Expand All @@ -408,10 +405,7 @@
INFOPLIST_FILE = ReproExample/Info.plist;
IPHONEOS_DEPLOYMENT_TARGET = 6.0;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
OTHER_LDFLAGS = (
"-ObjC",
"-all_load",
);
OTHER_LDFLAGS = "-ObjC";
PRODUCT_NAME = "$(TARGET_NAME)";
};
name = Release;
Expand Down
2 changes: 1 addition & 1 deletion Example/ReproExample/ReproExample/FirstViewController.h
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

#import <UIKit/UIKit.h>

@interface FirstViewController : UIViewController
@interface FirstViewController : UIViewController <UITextFieldDelegate>


@end
Expand Down
9 changes: 9 additions & 0 deletions Example/ReproExample/ReproExample/FirstViewController.m
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,9 @@ - (void)viewDidLoad {
[super viewDidLoad];
// Do any additional setup after loading the view, typically from a nib.

_idField.delegate = self;
_passwordField.delegate = self;

[Repro mask:_passwordField];
[Repro mask:_idField];
}
Expand All @@ -29,4 +32,10 @@ - (void)didReceiveMemoryWarning {
// Dispose of any resources that can be recreated.
}

- (BOOL)textFieldShouldReturn:(UITextField *)textField
{
[textField resignFirstResponder];
return YES;
}

@end
3 changes: 3 additions & 0 deletions Example/ReproExample/ReproExample/SecondViewController.m
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
//

#import "SecondViewController.h"
#import <Repro/Repro.h>

@interface SecondViewController ()
@property (weak, nonatomic) IBOutlet UIWebView *webView;
Expand All @@ -25,6 +26,8 @@ - (void)viewDidLoad {

NSURL *url = [NSURL URLWithString:@"http://cdn.repro.io.s3.amazonaws.com/index.html"];
[_webView loadRequest:[NSURLRequest requestWithURL:url]];

[Repro startWebViewTracking:self];
}

- (void)webViewDidStartLoad:(UIWebView*)webView {
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.
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.

0 comments on commit 9c3d99d

Please sign in to comment.