Skip to content

Commit

Permalink
Merge pull request #28 from blinkcard/jenkins/stable-build
Browse files Browse the repository at this point in the history
Jenkins/stable build
  • Loading branch information
mijo-gracanin committed Jun 25, 2022
2 parents b649a4d + 7eedccc commit 51a1854
Show file tree
Hide file tree
Showing 532 changed files with 5,077 additions and 3,908 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
@@ -1,5 +1,5 @@
language: objective-c
osx_image: xcode13.1
osx_image: xcode13.3
xcode_sdk: iphonesimulator15.0

install: true
Expand Down
4 changes: 2 additions & 2 deletions BlinkCard.xcframework/Info.plist
Expand Up @@ -50,9 +50,9 @@
<key>CFBundlePackageType</key>
<string>XFWK</string>
<key>CFBundleShortVersionString</key>
<string>2.5.1</string>
<string>2.6.0</string>
<key>CFBundleVersion</key>
<string>2.5.1</string>
<string>2.6.0</string>
<key>XCFrameworkFormatVersion</key>
<string>1.0</string>
</dict>
Expand Down
Binary file modified BlinkCard.xcframework/ios-arm64/BlinkCard.framework/BlinkCard
Binary file not shown.
@@ -1,4 +1,4 @@
// Generated by Apple Swift version 5.5 (swiftlang-1300.0.31.1 clang-1300.0.29.1)
// Generated by Apple Swift version 5.6 (swiftlang-5.6.0.323.62 clang-1316.0.20.8)
#ifndef BLINKCARD_SWIFT_H
#define BLINKCARD_SWIFT_H
#pragma clang diagnostic push
Expand Down Expand Up @@ -184,6 +184,13 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4)));
#if !defined(IBSegueAction)
# define IBSegueAction
#endif
#if !defined(SWIFT_EXTERN)
# if defined(__cplusplus)
# define SWIFT_EXTERN extern "C"
# else
# define SWIFT_EXTERN extern
# endif
#endif
#if __has_feature(modules)
#if __has_warning("-Watimport-in-framework-header")
#pragma clang diagnostic ignored "-Watimport-in-framework-header"
Expand Down
Expand Up @@ -130,6 +130,14 @@ MB_CLASS_AVAILABLE_IOS(8.0)
*/
@property (nonatomic) BOOL cameraMirroredVertically;

/**
* Set the back side preview camera layer zoom factor. 1.0 means there is no zoom, 2.0 double the zoom - preview layer is 2x zoomed than video output.
* Valid ranges are [1.0, 2.0] - rounded to nearest two decimals. Setting previewZoomScale out of valid ranges throws an exception.
*
* Default: 1.0
*/
@property (nonatomic) CGFloat previewZoomScale;

/**
* Designated initializer. Initializes the object with default settings (see above for defaults)
*
Expand Down
Expand Up @@ -119,6 +119,8 @@ void CGRectClosestTwoCornerPoints(CGRect rect, CGPoint point, CGPoint *point1, C
// the rectangle. Returns NULL_POINT if no interseciton is found.
CGPoint CGLineIntersectsRectAtPoint(CGRect rect, CGLine line);

// Transforms point from one rect to another.
CGPoint CGTransformedPointToDestination(CGPoint point, CGRect originalRect, CGRect destinationRect);

#pragma mark - Arcs

Expand Down
@@ -1,5 +1,5 @@
//
// PPImage.h
// MBImage.h
// BlinkIdFramework
//
// Created by Dino on 25/02/16.
Expand Down
Expand Up @@ -17,4 +17,9 @@
*/
- (void)detectionFinishedWithDisplayablePoints:(MBCDisplayablePointsDetection *)displayablePointsDetection;

/**
* This method should be called when MBCDisplayablePointsDetection is obtained and points need to be drawn/redrawn with camera preview zoom enabled by setting previewZoomScale property on cameraSettings.
*/
- (void)detectionFinishedWithDisplayablePoints:(MBCDisplayablePointsDetection *)displayablePointsDetection originalRectangle:(CGRect)originalRect relativeRectangle:(CGRect)relativeRectangle;

@end
Expand Up @@ -17,4 +17,9 @@
*/
- (void)detectionFinishedWithDisplayableQuad:(MBCDisplayableQuadDetection *)displayableQuadDetection;

/**
* This method should be called when MBCDisplayableQuadDetection is obtained and quad need to be drawn/redrawn with camera preview zoom enabled by setting previewZoomScale property on cameraSettings.
*/
- (void)detectionFinishedWithDisplayableQuad:(MBCDisplayableQuadDetection *)displayableQuadDetection originalRectangle:(CGRect)originalRect relativeRectangle:(CGRect)relativeRectangle;

@end
Expand Up @@ -11,6 +11,10 @@
#import "MBEntity.h"
#import "MBRecognizerResult.h"

#if MB_RESULT_JSONIZATION
@class MBCSignedPayload;
#endif

NS_ASSUME_NONNULL_BEGIN

/**
Expand All @@ -26,6 +30,15 @@ MB_CLASS_AVAILABLE_IOS(8.0)

- (UIInterfaceOrientationMask)getOptimalHudOrientation;

#if MB_RESULT_JSONIZATION
/**
* Returns the signed JSON representation of this entity's current state as a MBCSignedPayload.
*
* @return signed JSON representation of this entity's current state.
*/
- (MBCSignedPayload *)toSignedJson;
#endif

@end

NS_ASSUME_NONNULL_END
Expand Up @@ -10,7 +10,6 @@

#import "MBMicroblinkDefines.h"


NS_ASSUME_NONNULL_BEGIN

MB_CLASS_AVAILABLE_IOS(11.0) MB_FINAL
Expand Down
Binary file modified BlinkCard.xcframework/ios-arm64/BlinkCard.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.
@@ -1,11 +1,11 @@
// swift-interface-format-version: 1.0
// swift-compiler-version: Apple Swift version 5.5 (swiftlang-1300.0.31.1 clang-1300.0.29.1)
// swift-compiler-version: Apple Swift version 5.6 (swiftlang-5.6.0.323.62 clang-1316.0.20.8)
// swift-module-flags: -target arm64-apple-ios11.0 -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -module-name BlinkCard
@_exported import BlinkCard
import Foundation
import Swift
import UIKit
import _Concurrency
extension Foundation.NSMutableAttributedString {
@objc dynamic public convenience init(string: Swift.String, style: UIKit.NSParagraphStyle)
@objc convenience dynamic public init(string: Swift.String, style: UIKit.NSParagraphStyle)
}
Binary file not shown.

This file was deleted.

0 comments on commit 51a1854

Please sign in to comment.