Skip to content

Commit

Permalink
Merge pull request #26 from PDF417/feature/v5.0.1
Browse files Browse the repository at this point in the history
updated to version v5.0.1
  • Loading branch information
dgust6 authored Jul 11, 2016
2 parents c48ed51 + a6f5b8a commit 90bd664
Show file tree
Hide file tree
Showing 14 changed files with 79 additions and 32 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
# Release notes

## 5.0.1

- iOS updates:

- Added option to mirror input images to PPCameraSettings

- iOS bugfixes:

- ITF reader now accepts barcode sizes ranging between [6,50]

## 5.0.0

- iOS updates:
Expand Down
Binary file modified MicroBlink.bundle/Info.plist
Binary file not shown.
6 changes: 3 additions & 3 deletions MicroBlink.framework/Headers/PPBaseOverlayViewController.h
Original file line number Diff line number Diff line change
Expand Up @@ -13,17 +13,17 @@
NS_ASSUME_NONNULL_BEGIN

/**
* Common base class for PhotoPay default overlay view controllers
* Common base class for default overlay view controllers
*/
PP_CLASS_AVAILABLE_IOS(6.0) @interface PPBaseOverlayViewController : PPOverlayViewController

/**
* Registers a subview for overlay events.
* Registers a subview for PPOverlaySubview protocol events.
*/
- (void)registerOverlaySubview:(UIView<PPOverlaySubview>*)subview;

/**
* Unregisters a subview for overlay events.
* Unregisters a subview for PPOverlaySubview protocol events.
*/
- (void)unregisterOverlaySubview:(UIView<PPOverlaySubview>*)subview;

Expand Down
14 changes: 14 additions & 0 deletions MicroBlink.framework/Headers/PPCameraSettings.h
Original file line number Diff line number Diff line change
Expand Up @@ -112,6 +112,20 @@ PP_CLASS_AVAILABLE_IOS(6.0)
*/
@property (nonatomic, assign) CGPoint focusPoint;

/**
* Tells whether camera input images should be mirrored horizontally before processing
*
* Default: NO
*/
@property (nonatomic) BOOL cameraMirroredHorizontally;

/**
* Tells whether camera input images should be mirrored vertically before processing
*
* Default: NO
*/
@property (nonatomic) BOOL cameraMirroredVertically;

/**
* Designated initializer. Initializes the object with default settings (see above for defaults)
*
Expand Down
3 changes: 0 additions & 3 deletions MicroBlink.framework/Headers/PPMetadataSettings.h
Original file line number Diff line number Diff line change
Expand Up @@ -25,23 +25,20 @@ PP_CLASS_AVAILABLE_IOS(6.0) @interface PPMetadataSettings : NSObject <NSCopying>

/**
* If YES, currently processed video frame will be captured.
* TODO: tell which type exactly
*
* Default: NO
*/
@property (nonatomic, assign) BOOL currentFrame;

/**
* If YES, image on which scan gave valid scaning result will be saved
* TODO: tell which type exactly
*
* Default: NO
*/
@property (nonatomic, assign) BOOL successfulFrame;

/**
* If YES, dewarped images in the recognition process will be saved
* TODO: tell which type exactly
*
* Default: NO
*/
Expand Down
16 changes: 10 additions & 6 deletions MicroBlink.framework/Headers/PPModernBaseOverlayViewController.h
Original file line number Diff line number Diff line change
Expand Up @@ -10,16 +10,20 @@

NS_ASSUME_NONNULL_BEGIN

/**
* Base class of all default overlays included in SDK. This class is an abstract class and should be subclassed.
*/
PP_CLASS_AVAILABLE_IOS(6.0) @interface PPModernBaseOverlayViewController : PPBaseOverlayViewController

/**
* Button to cancel scanning/dismiss view.
*/
@property (nonatomic, strong) UIButton *cancelButton;
@property (nonatomic, strong) UIButton *torchButton;

- (void)applyViewShadow:(UIView*)view;

- (void)applyViewShadow:(UIView*)view radius:(CGFloat)radius;

- (void)applyFrameWithTouchInset:(UIButton*)button frame:(CGRect)frame inset:(CGSize)inset;
/**
* Button for displaying flash.
*/
@property (nonatomic, strong) UIButton *torchButton;

@end

Expand Down
14 changes: 0 additions & 14 deletions MicroBlink.framework/Headers/PPScanSettings.h
Original file line number Diff line number Diff line change
Expand Up @@ -89,20 +89,6 @@ PP_CLASS_AVAILABLE_IOS(6.0) @interface PPScanSettings : NSObject <NSCopying>
*/
@property (nonatomic, assign) PPFrameQualityEstimationMode frameQualityEstimationMode;

/**
* Tells whether camera input images should be mirrored horizontally before processing
*
* Default: NO
*/
@property (nonatomic) BOOL cameraMirroredHorizontally;

/**
* Tells whether camera input images should be mirrored vertically before processing
*
* Default: NO
*/
@property (nonatomic) BOOL cameraMirroredVertically;

/**
* Designated initializer. Initializes the object with default settings (see above for defaults)
*
Expand Down
Loading

0 comments on commit 90bd664

Please sign in to comment.