Skip to content

Commit

Permalink
Merge pull request #402 from BlinkID/jenkins/stable-build
Browse files Browse the repository at this point in the history
Jenkins/stable build
  • Loading branch information
tonikreso committed Nov 3, 2023
2 parents b392091 + 7fa333e commit 1dc5ec3
Show file tree
Hide file tree
Showing 857 changed files with 7,607 additions and 3,593 deletions.
18 changes: 9 additions & 9 deletions BlinkID.xcframework/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -6,34 +6,34 @@
<array>
<dict>
<key>LibraryIdentifier</key>
<string>ios-arm64</string>
<string>ios-arm64_x86_64-maccatalyst</string>
<key>LibraryPath</key>
<string>BlinkID.framework</string>
<key>SupportedArchitectures</key>
<array>
<string>arm64</string>
<string>x86_64</string>
</array>
<key>SupportedPlatform</key>
<string>ios</string>
<key>SupportedPlatformVariant</key>
<string>maccatalyst</string>
</dict>
<dict>
<key>LibraryIdentifier</key>
<string>ios-arm64_x86_64-simulator</string>
<string>ios-arm64</string>
<key>LibraryPath</key>
<string>BlinkID.framework</string>
<key>SupportedArchitectures</key>
<array>
<string>arm64</string>
<string>x86_64</string>
</array>
<key>SupportedPlatform</key>
<string>ios</string>
<key>SupportedPlatformVariant</key>
<string>simulator</string>
</dict>
<dict>
<key>LibraryIdentifier</key>
<string>ios-arm64_x86_64-maccatalyst</string>
<string>ios-arm64_x86_64-simulator</string>
<key>LibraryPath</key>
<string>BlinkID.framework</string>
<key>SupportedArchitectures</key>
Expand All @@ -44,15 +44,15 @@
<key>SupportedPlatform</key>
<string>ios</string>
<key>SupportedPlatformVariant</key>
<string>maccatalyst</string>
<string>simulator</string>
</dict>
</array>
<key>CFBundlePackageType</key>
<string>XFWK</string>
<key>CFBundleShortVersionString</key>
<string>6.2.1</string>
<string>6.3.0</string>
<key>CFBundleVersion</key>
<string>6.2.1</string>
<string>6.3.0</string>
<key>XCFrameworkFormatVersion</key>
<string>1.0</string>
</dict>
Expand Down
Binary file modified BlinkID.xcframework/ios-arm64/BlinkID.framework/BlinkID
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -273,6 +273,16 @@ MB_INIT_UNAVAILABLE
*/
@property (nonatomic, readonly, nullable) MBDataMatchResult *dataMatchResult;

/**
* face image location from the document if enabled with `MBFaceImage returnFaceImage` property.
*/
@property (nonatomic, readonly) CGRect faceImageLocation;

/**
* side of document that face image is located on if enabled with `MBFaceImage returnFaceImage` property.
*/
@property (nonatomic, readonly) MBSide faceImageSide;

@end

NS_ASSUME_NONNULL_END
Original file line number Diff line number Diff line change
Expand Up @@ -65,27 +65,6 @@ MB_CLASS_AVAILABLE_IOS(13.0)
*/
@property (nonatomic, assign) CGFloat flashlightWarningCornerRadius;

/**
* Reticle error color
*
* Default: red alpha .4f
*/
@property (nonatomic, strong) UIColor *reticleErrorColor;

/**
* Success flash color
*
* Default: white
*/
@property (nonatomic, strong) UIColor *successFlashColor;

/**
* Image that animates when scanning is successful
*
* Default: check mark image
*/
@property (nonatomic, strong) UIImage *successScanningImage;

/**
* First image in animation queu that is shown on first side finished scanning
*
Expand Down Expand Up @@ -235,6 +214,55 @@ MB_CLASS_AVAILABLE_IOS(13.0)
*/
@property (nonatomic) UIImage *helpButtonDarkImage;

/**
* Default Reticle image
*
* Default: nil
*/
@property (nullable, nonatomic, strong) UIImage *defaultReticleImage;

/**
* Image that animates when scanning is successful
*
* Default: check mark image
*/
@property (nonatomic, strong) UIImage *successScanningImage;

/**
* Reticle error image
*
* Default: nil
*/
@property (nullable, nonatomic, strong) UIImage *errorReticleImage;

/**
* Reticle animation color that is active before a card is detected
*
* Default: white
*/
@property (nonatomic, strong) UIColor *reticleColor;

/**
* Reticle error color
*
* Default: red alpha .4f
*/
@property (nonatomic, strong) UIColor *reticleDefaultColor;

/**
* Reticle error color
*
* Default: red alpha .4f
*/
@property (nonatomic, strong) UIColor *reticleErrorColor;

/**
* Success flash color
*
* Default: white
*/
@property (nonatomic, strong) UIColor *successFlashColor;

@end

NS_ASSUME_NONNULL_END
Original file line number Diff line number Diff line change
Expand Up @@ -235,6 +235,16 @@ MB_INIT_UNAVAILABLE
*/
@property (nonatomic, readonly, nullable) MBImage *barcodeCameraFrame;

/**
* face image location from the document if enabled with `MBFaceImage returnFaceImage` property.
*/
@property (nonatomic, readonly) CGRect faceImageLocation;

/**
* side of document that face image is located on if enabled with `MBFaceImage returnFaceImage` property.
*/
@property (nonatomic, readonly) MBSide faceImageSide;

@end

NS_ASSUME_NONNULL_END
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,18 @@ MB_CLASS_AVAILABLE_IOS(13.0) MB_FINAL
/** Starts animating the reticle. Does nothing if the reticle is already animating. */
- (void)animateArcRotation;

/**
* Custom reticle image. Shown instead of default circle.
* Content mode: center.
* Size: 88 x 88.
* Default: nil
*/
@property(nullable, nonatomic, strong) UIImage *reticleImage;
/** Custom tint color used for arc and progress animation. Default white. */
@property(nonatomic, strong) UIColor *reticleColor;
/** Custom tint color used for tinting reticleImage. Ignored if white. */
@property(nonatomic, strong) UIColor *reticleDefaultColor;

@end

NS_ASSUME_NONNULL_END
Original file line number Diff line number Diff line change
Expand Up @@ -263,7 +263,8 @@ typedef NS_ENUM(NSInteger, MBCountry) {
MBCountryYemen,
MBCountryYugoslavia,
MBCountryZambia,
MBCountryZimbabwe
MBCountryZimbabwe,
MBSchengenArea
};

typedef NS_ENUM(NSInteger, MBRegion) {
Expand Down Expand Up @@ -452,7 +453,8 @@ typedef NS_ENUM(NSInteger, MBType) {
MBTypeProvisionalDl,
MBTypeRefugeePassport,
MBTypeSpecialId,
MBTypeUniformedServicesId
MBTypeUniformedServicesId,
MBImmigrantVisa
};

#endif /* MBClassInfoTypes_h */
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,15 @@ NS_ASSUME_NONNULL_BEGIN
MB_CLASS_AVAILABLE_IOS(13.0) MB_FINAL
@interface MBErrorReticle : MBSubview

/** Custom tint color used for tinting reticleImage. Ignored if white. */
@property(nonatomic, strong) UIColor *errorColor;
/**
* Custom reticle image. Shown instead of default circle.
* Content mode: center.
* Size: 88 x 88.
* Default: nil
*/
@property(nonatomic, strong) UIImage *errorReticleImage;

@end

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
#define MBFaceImageResult_h

#import "MBImage.h"
#import "MBStringResult.h"

@protocol MBFaceImageResult

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,13 @@ typedef NS_ENUM(NSInteger, MBCardOrientation) {
MBCardOrientationVertical
};

typedef NS_ENUM(NSInteger, MBRotation) {
MBRotationZero,
MBRotationClockwise90,
MBRotationCounterClockwise90,
MBRotationUpsideDown
};

MB_CLASS_AVAILABLE_IOS(13.0) MB_FINAL
@interface MBImageAnalysisResult : NSObject

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@
//

#import <Foundation/Foundation.h>
#import "MBOcrLayout.h"
#import "MBRecognizerRunnerViewController.h"

@class MBOcrLayout;
@protocol MBRecognizerRunnerViewController;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,12 @@ typedef NS_ENUM(NSInteger, MBAlphabetType) {
MBAlphabetTypeCyrillic
};

typedef NS_ENUM(NSInteger, MBSide) {
MBSideNone = 0,
MBSideFront,
MBSideBack
};

/**
* Class for all obtaining original string per alphabet type
*/
Expand All @@ -37,6 +43,26 @@ MB_CLASS_AVAILABLE_IOS(13.0)
*/
- (NSString *)valueForAlphabetType:(MBAlphabetType)alphabetType;

/**
* @return the CGRect location, if result is detected, else CGRectNull. Priority given to Latin alphabet.
*/
@property(nonatomic, readonly) CGRect location;

/**
* @return location of the specified alphabet type.
*/
- (CGRect)locationForAlphabetType:(MBAlphabetType)alphabetType;

/**
* @return the MBSide side, if result is detected, else MBSideNone. Priority given to Latin alphabet.
*/
@property(nonatomic, readonly) MBSide side;

/**
* @return side of the specified alphabet type.
*/
- (MBSide)sideForAlphabetType:(MBAlphabetType)alphabetType;

- (instancetype _Nonnull)init NS_UNAVAILABLE;

@end
Expand Down
Binary file modified BlinkID.xcframework/ios-arm64/BlinkID.framework/Info.plist
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.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading

0 comments on commit 1dc5ec3

Please sign in to comment.