Skip to content

Commit

Permalink
Added iOS SDK for 3.11.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Daniel Albertini committed Apr 14, 2017
1 parent b9bcd02 commit 3bcbe0b
Show file tree
Hide file tree
Showing 17 changed files with 63 additions and 15 deletions.
4 changes: 2 additions & 2 deletions src/ios/anyline_sdk/Anyline.framework/Anyline
Git LFS file not shown
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,8 @@ extern CGFloat const ALDocumentRatioLetterPortrait;
*/
- (void)setDocumentRatios:(NSArray<NSNumber*>*)ratios;

- (BOOL)triggerPictureCornerDetectionAndReturnError:(NSError **)error;

@end

@protocol AnylineDocumentModuleDelegate <NSObject>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,8 @@ typedef NS_ENUM(NSInteger, ALScanMode) {
ALSerialNumber,
ALWaterMeterBlackBackground __deprecated_msg("Deprecated since 3.8. ALAnalogMeter is used instead."), ALWaterMeterWhiteBackground __deprecated_msg("Deprecated since 3.8. ALAnalogMeter is used instead."),
ALDigitalMeter,
ALHeatMeter4, ALHeatMeter5, ALHeatMeter6
ALHeatMeter4, ALHeatMeter5, ALHeatMeter6,
ALAutoAnalogDigitalMeter
};

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,13 @@ typedef NS_ENUM(NSInteger, ALOCRScanMode) {
* The GRID mode is optimal for characters with equal size laid out in a grid
* with a constant font, background and character count (like loyalty codes inside bottle caps).
*/
ALGrid
ALGrid,
/**
* The AUTO mode is optimal if you want to scan more than one usecase in one mode.
* You can also allow lower case letters.
* MULTILINE is not supported yet.
*/
ALAuto
};

/**
Expand Down Expand Up @@ -190,6 +196,7 @@ typedef NS_ENUM(NSInteger, ALOCRScanMode) {
*/
@property (nonatomic, assign) BOOL isBrightTextOnDark;


@end

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@
<key>CFBundleInfoDictionaryVersion</key>
<string>6.0</string>
<key>CFBundleShortVersionString</key>
<string>3.10.0</string>
<string>3.11.0</string>
<key>CFBundleVersion</key>
<string>1289</string>
<string>1305</string>
<key>GITHash</key>
<string>ca074eddfdbe7acfbdd003c2f02a73ab1f1aedcd</string>
<string>1166d050ae00adba6c472f2a49a983d0df292a21</string>
</dict>
</plist>
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@
<key>CFBundleInfoDictionaryVersion</key>
<string>6.0</string>
<key>CFBundleShortVersionString</key>
<string>3.10.0</string>
<string>3.11.0</string>
<key>CFBundleVersion</key>
<string>1289</string>
<string>1305</string>
<key>GITHash</key>
<string>88a7e532488981bab14eb09f2561441fc6ba439f</string>
<string>1166d050ae00adba6c472f2a49a983d0df292a21</string>
</dict>
</plist>

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
{
"captureResolution":"1080p",
"cutout" : {
"style": "rect",
"width": 720,
"alignment": "top_half",
"ratioFromSize" : {
"width": 720,
"height": 320
},
"offset": {
"x": 0,
"y": -30
},
"strokeWidth": 2,
"strokeColor": "FFFFFF",
"cornerRadius": 4,
"outerColor": "000000",
"outerAlpha": 0.5,
"feedbackStrokeColor": "0099FF"
},
"flash" : {
"mode" : "manual",
"alignment" : "top_left"
},
"visualFeedback": {
"style": "CONTOUR_RECT",
"strokeColor": "0099FF",
"fillColor": "220099FF"
},
"beepOnResult": false,
"vibrateOnResult": true,
"blinkAnimationOnResult": true,
"cancelOnResult": true,
"reportingEnabled": true
}

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
"alignment" : "top_left"
},
"visualFeedback": {
"style": "rect",
"style": "CONTOUR_RECT",
"strokeColor": "0099FF",
"fillColor": "220099FF"
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
"alignment" : "top_left"
},
"visualFeedback": {
"style": "rect",
"style": "RECT",
"strokeColor": "0099FF",
"fillColor": "220099FF"
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
"alignment" : "top_left"
},
"visualFeedback": {
"style": "rect",
"style": "RECT",
"strokeColor": "0099FF",
"fillColor": "220099FF"
},
Expand Down
Binary file not shown.
Binary file not shown.
Binary file not shown.

Large diffs are not rendered by default.

0 comments on commit 3bcbe0b

Please sign in to comment.