Skip to content

Commit

Permalink
Merge pull request #355 from BlinkID/jenkins/stable-build
Browse files Browse the repository at this point in the history
Jenkins/stable build
  • Loading branch information
tonikreso committed Sep 28, 2021
2 parents 5e0a902 + 1084a94 commit 86faa26
Show file tree
Hide file tree
Showing 669 changed files with 6,660 additions and 4,272 deletions.
17 changes: 17 additions & 0 deletions CHANGELOG.md
@@ -1,5 +1,22 @@
# Release notes

## 5.14.0
### Back side support added:
- Thailand - ID Card

### Changes to BlinkID(Combined) Recognizer
- Added new result members - `fathersName` and `mothersName` both in BlinkID and BlinkIDCombined Recognizers, as well as in VIZ result

### Improvements
- We can now extract `fathers_name` and `mothers_name` from Mexico Voter ID Card
- Australian Driving Licenses for New South Wales, Northern Territory, Queensland, Victoria and Western Australia now have the driver license unique card number field extracted as `document_additional_number`

### Changes to BarcodeRecognizer
- We’ve removed support for `aztec` and `dataMatrix` barcode formats from BarcodeRecognizer

### Changes to MRTDRecognizer
- Added `MRTD_TYPE_BORDER_CROSSING_CARD` to MRTD enum

## 5.13.0
### New additions to our supported document list

Expand Down
Binary file modified Microblink.framework/BlinkID_Analyzer_general_6.6.0.strop
Binary file not shown.
Binary file modified Microblink.framework/BlinkID_BlurClassifier_general_6.2.0.strop
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file modified Microblink.framework/BlinkID_Detector_general_6.7.0.strop
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file modified Microblink.framework/BlinkID_Ocr_general_6.14.0.strop
Binary file not shown.
Binary file modified Microblink.framework/BlinkID_Ocr_mrz_6.4.0.strop
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
10 changes: 10 additions & 0 deletions Microblink.framework/Headers/MBBlinkIdCombinedRecognizerResult.h
Expand Up @@ -85,6 +85,16 @@ MB_INIT_UNAVAILABLE
*/
@property (nonatomic, readonly, nullable) NSString *lastName;

/**
* The father's name of the document owner.
*/
@property (nonatomic, readonly, nullable) NSString *fathersName;

/**
* The mother's name of the document owner.
*/
@property (nonatomic, readonly, nullable) NSString *mothersName;

/**
* The sex of the document owner.
*/
Expand Down
10 changes: 10 additions & 0 deletions Microblink.framework/Headers/MBBlinkIdRecognizerResult.h
Expand Up @@ -82,6 +82,16 @@ MB_INIT_UNAVAILABLE
*/
@property (nonatomic, readonly, nullable) NSString *lastName;

/**
* The father's name of the document owner.
*/
@property (nonatomic, readonly, nullable) NSString *fathersName;

/**
* The mother's name of the document owner.
*/
@property (nonatomic, readonly, nullable) NSString *mothersName;

/**
* The sex of the document owner.
*/
Expand Down
5 changes: 4 additions & 1 deletion Microblink.framework/Headers/MBMrzResult.h
Expand Up @@ -39,7 +39,10 @@ typedef NS_ENUM(NSInteger, MBMrtdDocumentType) {
MBMrtdTypeDl,

/** China mainland travel permit */
MBMrtdTypeInternalTravelDocument
MBMrtdTypeInternalTravelDocument,

/** Border crossing card */
MBMrtdTypeBorderCrossingCard

};

Expand Down
2 changes: 2 additions & 0 deletions Microblink.framework/Headers/MBRecognizer.h
Expand Up @@ -26,6 +26,8 @@ MB_CLASS_AVAILABLE_IOS(8.0)

- (UIInterfaceOrientationMask)getOptimalHudOrientation;

- (NSString *)toJson;

@end

NS_ASSUME_NONNULL_END
10 changes: 10 additions & 0 deletions Microblink.framework/Headers/MBVizResult.h
Expand Up @@ -35,6 +35,16 @@ MB_INIT_UNAVAILABLE
*/
@property (nonatomic, readonly) NSString *fullName;

/**
* The father's name of the document owner.
*/
@property (nonatomic, readonly) NSString *fathersName;

/**
* The mother's name of the document owner.
*/
@property (nonatomic, readonly) NSString *mothersName;

/**
* The additional name information of the document owner.
*/
Expand Down
Binary file modified Microblink.framework/Info.plist
Binary file not shown.
4 changes: 2 additions & 2 deletions Microblink.framework/Microblink
Git LFS file not shown

0 comments on commit 86faa26

Please sign in to comment.