Skip to content

Commit

Permalink
Release v6.12.0 (#426)
Browse files Browse the repository at this point in the history
  • Loading branch information
mparadina authored Nov 7, 2024
1 parent 56b9b59 commit 67fbb2b
Show file tree
Hide file tree
Showing 422 changed files with 5,390 additions and 3,586 deletions.
14 changes: 7 additions & 7 deletions BlinkID.xcframework/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -8,40 +8,40 @@
<key>BinaryPath</key>
<string>BlinkID.framework/BlinkID</string>
<key>LibraryIdentifier</key>
<string>ios-arm64</string>
<string>ios-arm64_x86_64-simulator</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>BinaryPath</key>
<string>BlinkID.framework/BlinkID</string>
<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>
</array>
<key>CFBundlePackageType</key>
<string>XFWK</string>
<key>CFBundleShortVersionString</key>
<string>6.11.1</string>
<string>6.12.0</string>
<key>CFBundleVersion</key>
<string>6.11.1</string>
<string>6.12.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 @@ -175,6 +175,14 @@ MB_INIT
*/
@property (nonatomic, assign) BOOL combineFrameResults;

/**
* Scan only the data page ( page containing MRZ ) of the passport.
* If set to `NO`, it will be required to scan the second page of certain passports.
*
* Default: YES
*/
@property (nonatomic, assign) BOOL scanPassportDataPageOnly;

@end

@protocol MBBlinkIdMultiSideRecognizerDelegate <NSObject>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,48 @@ MB_CLASS_AVAILABLE_IOS(13.0)
*/
@property(nonatomic, strong) NSString *flipInstructions;

/**
* Instructions to scan the passport, shown when scanning of the first side is done, before scanning the second
* side of the document.
* Default: Move to the page on top
*/
@property(nonatomic, strong) NSString *turnTopPageInstructions;

/**
* Instructions to scan the passport, shown when scanning of the first side is done, before scanning the second
* side of the document.
* Default: Move to the page on left
*/
@property(nonatomic, strong) NSString *turnLeftPageInstructions;

/**
* Instructions to scan the passport, shown when scanning of the first side is done, before scanning the second
* side of the document.
* Default: Move to the page on right
*/
@property(nonatomic, strong) NSString *turnRightPageInstructions;

/**
* Instructions to scan the passport, shown when scanning of the first side is done, before scanning the second
* side of the document.
* Default: Move to the page on top
*/
@property(nonatomic, strong) NSString *scanTopPageInstructions;

/**
* Instructions to scan the passport, shown when scanning of the first side is done, before scanning the second
* side of the document.
* Default: Move to the page on left
*/
@property(nonatomic, strong) NSString *scanLeftPageInstructions;

/**
* Instructions to scan the passport, shown when scanning of the first side is done, before scanning the second
* side of the document.
* Default: Move to the page on right
*/
@property(nonatomic, strong) NSString *scanRightPageInstructions;

/**
* Instructions for the user to move the document closer.
* Default: Move closer
Expand Down Expand Up @@ -203,6 +245,24 @@ MB_CLASS_AVAILABLE_IOS(13.0)
*/
@property(nonatomic, strong) NSString *scanningWrongSideMessage;

/**
* Instructions for the user when wrong side of passport is being scanned.
* Default: Move to the top
*/
@property(nonatomic, strong) NSString *scanningWrongSidePassportTopMessage;

/**
* Instructions for the user when wrong side of passport is being scanned.
* Default: Move to the right
*/
@property(nonatomic, strong) NSString *scanningWrongSidePassportRightMessage;

/**
* Instructions for the user when wrong side of passport is being scanned.
* Default: Move to the left
*/
@property(nonatomic, strong) NSString *scanningWrongSidePassportLeftMessage;

/**
* Designated initializer. Initializes the object with default settings.
*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -263,6 +263,69 @@ MB_CLASS_AVAILABLE_IOS(13.0)
*/
@property (nonatomic, strong) UIColor *successFlashColor;

/**
* Passport animation images.
*
* Default: passport_bottom
*/
@property (nonatomic, strong) UIImage *passportBottomImage;

/**
* Passport animation images.
*
* Default: passport-top
*/
@property (nonatomic, strong) UIImage *passportTopImage;

/**
* Passport animation images.
*
* Default: passport_highlight
*/
@property (nonatomic, strong) UIImage *passportHighlightImage;

/**
* Passport animation images.
*
* Default: passport_bottom
*/
@property (nonatomic, strong) UIImage *passportBottomRightImage;

/**
* Passport animation images.
*
* Default: passport-top
*/
@property (nonatomic, strong) UIImage *passportTopRightImage;

/**
* Passport animation images.
*
* Default: passport_highlight
*/
@property (nonatomic, strong) UIImage *passportHighlightRightImage;

/**
* Passport animation images.
*
* Default: passport_bottom
*/
@property (nonatomic, strong) UIImage *passportBottomLeftImage;

/**
* Passport animation images.
*
* Default: passport-top
*/
@property (nonatomic, strong) UIImage *passportTopLeftImage;

/**
* Passport animation images.
*
* Default: passport_highlight
*/
@property (nonatomic, strong) UIImage *passportHighlightLeftImage;

@end

NS_ASSUME_NONNULL_END
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,16 @@ MB_CLASS_AVAILABLE_IOS(13.0)
*
* @param urlString The URL string for ping proxy
*/
- (void)setPingProxyUrl:(NSString * _Nonnull)urlString;
- (void)setMicroblinkProxyUrl:(NSString * _Nonnull)urlString;

/**
* Set the URL for baltazar proxy.
* This method is used if for setting baltazar proxy URL if that right is enabled in license.
* URL must be https.
*
* @param urlString The URL string for baltazar proxy
*/
- (void)setBaltazarProxyUrl:(NSString * _Nonnull)urlString;

@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.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Loading

0 comments on commit 67fbb2b

Please sign in to comment.