-
Notifications
You must be signed in to change notification settings - Fork 91
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #326 from BlinkID/jenkins/stable-build
Jenkins/stable build
- Loading branch information
Showing
606 changed files
with
18,439 additions
and
5,317 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
Binary file not shown.
Binary file modified
BIN
+0 Bytes
(100%)
Microblink.framework/BlinkID_BlurClassifier_general_6.1.0.strop
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file modified
BIN
+0 Bytes
(100%)
Microblink.framework/BlinkID_MoireClassifier_malaysia_6.0.0.strop
Binary file not shown.
Binary file modified
BIN
+0 Bytes
(100%)
Microblink.framework/BlinkID_MonochromeClassifier_general_6.0.0.strop
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file modified
BIN
+0 Bytes
(100%)
Microblink.framework/BlinkID_RotationClassifier_general_6.1.0.strop
Binary file not shown.
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -34,3 +34,6 @@ | |
|
||
// Logger | ||
#import "MBLogger.h" | ||
|
||
// Theme | ||
#import "MBBlinkIdOverlayTheme.h" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,105 @@ | ||
// | ||
// MBBlinkIdOverlayTheme.h | ||
// MicroblinkDev | ||
// | ||
// Created by Jura Skrlec on 17/09/2020. | ||
// | ||
|
||
#import <Foundation/Foundation.h> | ||
#import "MBMicroblinkDefines.h" | ||
|
||
NS_ASSUME_NONNULL_BEGIN | ||
|
||
MB_CLASS_AVAILABLE_IOS(8.0) | ||
@interface MBBlinkIdOverlayTheme : NSObject | ||
|
||
- (instancetype)init NS_UNAVAILABLE; | ||
+ (instancetype)sharedInstance NS_SWIFT_NAME(shared()); | ||
|
||
/** | ||
* Intructions text font | ||
* | ||
* Default: System 17.f | ||
*/ | ||
@property (nonatomic, strong) UIFont *instructionsFont; | ||
|
||
/** | ||
* Instructions text color | ||
* | ||
* Default: white | ||
*/ | ||
@property (nonatomic, strong) UIColor *instructionsTextColor; | ||
|
||
/** | ||
* Instructions view corner radius | ||
* | ||
* Default: 6 | ||
*/ | ||
@property (nonatomic, assign) CGFloat instructionsCornerRadius; | ||
|
||
/** | ||
* Flashlight warning font | ||
* | ||
* Default: System (iPhone - 14pt, iPad - 16pt) | ||
*/ | ||
@property (nonatomic, strong) UIFont *flashlightWarningFont; | ||
|
||
/** | ||
* Flashlight warning background color | ||
* | ||
* Default: #3A3A3C | ||
*/ | ||
@property (nonatomic, strong) UIColor *flashlightWarningBackgroundColor; | ||
|
||
/** | ||
* Flashlight warning text color | ||
* | ||
* Default: white | ||
*/ | ||
@property (nonatomic, strong) UIColor *flashlightWarningTextColor; | ||
|
||
/** | ||
* Flashlight warning corner radius | ||
* | ||
* Default: 4 | ||
*/ | ||
@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 | ||
* | ||
* Default: check mark image | ||
*/ | ||
@property (nonatomic, strong) UIImage *frontCardImage; | ||
|
||
/** | ||
* Second image in animation array that is shown on first side finished scanning | ||
* | ||
* Default: check mark image | ||
*/ | ||
@property (nonatomic, strong) UIImage *backCardImage; | ||
|
||
@end | ||
|
||
NS_ASSUME_NONNULL_END |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.