Skip to content

Commit

Permalink
51.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
aldrichanyline committed Oct 9, 2023
1 parent 976b1d5 commit 5260070
Show file tree
Hide file tree
Showing 502 changed files with 2,708 additions and 2,652 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,8 @@ @interface ALTINScanViewController () <ALScanPluginDelegate, ALConfigurationDial

@property (nonatomic, assign) NSUInteger dialogIndexSelected;

+ (NSArray<NSString *> *)recalledDOTs;

@end


Expand Down Expand Up @@ -163,6 +165,20 @@ - (void)reloadScanView {
[self changeScanViewMode:(ALTINScanMode)self.dialogIndexSelected];
}

// MARK: - Getters

// A list of recalled DOT values outlined in https://anyline.atlassian.net/browse/SHOW-51
// which should be treated especially with an extra result entry
+ (NSArray<NSString *> *)recalledDOTs {
return @[
@"DOTUTY11M03119",
@"DOTA3E4WBYV2220",
@"DOTNB7T2T8W0403",
@"DOTHCXH03CX4618",
@"DOTFA4FJA90320",
];
}

// MARK: - Handle & present results

- (void)scanPlugin:(ALScanPlugin *)scanPlugin resultReceived:(ALScanResult *)scanResult {
Expand All @@ -172,7 +188,8 @@ - (void)scanPlugin:(ALScanPlugin *)scanPlugin resultReceived:(ALScanResult *)sca
barcodeResult:nil
image:[scanResult croppedImage]
scanPlugin:scanPlugin viewPlugin:self.scanViewPlugin completion:^{
NSArray<ALResultEntry *> *resultData = scanResult.pluginResult.fieldList.resultEntries;
NSArray<ALResultEntry *> *resultData = [self.class resultDataFromScanResult:scanResult];

ALResultViewController *vc = [[ALResultViewController alloc]
initWithResults:resultData];
vc.imagePrimary = scanResult.croppedImage;
Expand All @@ -182,6 +199,26 @@ - (void)scanPlugin:(ALScanPlugin *)scanPlugin resultReceived:(ALScanResult *)sca
}];
}

+ (NSArray<ALResultEntry *> *)resultDataFromScanResult:(ALScanResult *)scanResult {
NSMutableArray *resultEntries = [NSMutableArray arrayWithArray:scanResult.pluginResult.fieldList.resultEntries];
// would add a Tire on Recall entry if the result falls in one of the few values hardcoded here.
BOOL needsRecalledEntry = NO;
for (ALResultEntry *res in resultEntries) {
if ([res.title isEqualToString:@"Tire Identification Number"]) {
// if result somehow split the scan result string with spaces, remove them first.
NSString *tin = [res.value stringByReplacingOccurrencesOfString:@" " withString:@""];
if ([[self.class recalledDOTs] containsObject:tin]) {
needsRecalledEntry = YES;
}
}
}
if (needsRecalledEntry) {
// add it below the first entry
[resultEntries insertObject:[ALResultEntry withTitle:@"Tire on Recall" value:@"YES"] atIndex:1];
}
return resultEntries;
}

// MARK: - Allow changing the scan mode

- (void)showOptionsSelectionDialog {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -93,8 +93,17 @@ class ALResultCell: UITableViewCell {
titleStr = titleStr.replacingOccurrences(of: "@cyr", with: " Cyrillic", options: .caseInsensitive, range: titleRange) as NSString
}

self.titleLabel.text = String(titleStr)
self.valueLabel.text = self.resultEntry?.value.replacingOccurrences(of: "\\n", with: "\n")
// Special formatting for TIN results https://anyline.atlassian.net/browse/SHOW-51
// make it red, and the value bolded, if "Tire on Recall" = "YES"
if titleStr == "Tire on Recall" {
if self.resultEntry?.value == "YES" {
self.titleLabel.attributedText = .init(string: String(titleStr), attributes: [.foregroundColor : UIColor.red])
self.valueLabel.attributedText = .init(string: "YES", attributes: [.foregroundColor : UIColor.red, .font: UIFont.boldSystemFont(ofSize: 16)])
}
} else {
self.titleLabel.text = String(titleStr)
self.valueLabel.text = self.resultEntry?.value.replacingOccurrences(of: "\\n", with: "\n")
}

if self.resultEntry?.shouldSpellOutValue == true && self.resultEntry?.isAvailable == true {
if #available(iOS 13.0, *) {
Expand Down
4 changes: 2 additions & 2 deletions AnylineExamples/AnylineExamples.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -1384,7 +1384,7 @@
LIBRARY_SEARCH_PATHS = (
"$(SDKROOT)/System/Library/Frameworks",
);
MARKETING_VERSION = 51.0.1;
MARKETING_VERSION = 51.1.0;
OTHER_LDFLAGS = "-ObjC";
PRODUCT_BUNDLE_IDENTIFIER = io.anyline.AnylineExamples.bundle;
SDKROOT = iphoneos;
Expand Down Expand Up @@ -1472,7 +1472,7 @@
LIBRARY_SEARCH_PATHS = (
"$(SDKROOT)/System/Library/Frameworks",
);
MARKETING_VERSION = 51.0.1;
MARKETING_VERSION = 51.1.0;
OTHER_LDFLAGS = "-ObjC";
PRODUCT_BUNDLE_IDENTIFIER = io.anyline.AnylineExamples.bundle;
SDKROOT = iphoneos;
Expand Down
2 changes: 1 addition & 1 deletion Documentation/html/Categories/NSArray+ALJSONExtras.html
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ <h2 class="subtitle subtitle-overview">Overview</h2>
<footer>
<div class="footer-copyright">

<p class="copyright">Copyright &copy; 2023 Anyline GmbH. All rights reserved. Updated: 2023-09-20</p>
<p class="copyright">Copyright &copy; 2023 Anyline GmbH. All rights reserved. Updated: 2023-10-09</p>


<p class="generator">Generated by <a href="http://appledoc.gentlebytes.com">appledoc 2.2.1 (build 1334)</a>.</p>
Expand Down
2 changes: 1 addition & 1 deletion Documentation/html/Categories/NSData+ALJSONExtras.html
Original file line number Diff line number Diff line change
Expand Up @@ -230,7 +230,7 @@ <h4 class="method-subtitle">Declared In</h4>
<footer>
<div class="footer-copyright">

<p class="copyright">Copyright &copy; 2023 Anyline GmbH. All rights reserved. Updated: 2023-09-20</p>
<p class="copyright">Copyright &copy; 2023 Anyline GmbH. All rights reserved. Updated: 2023-10-09</p>


<p class="generator">Generated by <a href="http://appledoc.gentlebytes.com">appledoc 2.2.1 (build 1334)</a>.</p>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ <h2 class="subtitle subtitle-overview">Overview</h2>
<footer>
<div class="footer-copyright">

<p class="copyright">Copyright &copy; 2023 Anyline GmbH. All rights reserved. Updated: 2023-09-20</p>
<p class="copyright">Copyright &copy; 2023 Anyline GmbH. All rights reserved. Updated: 2023-10-09</p>


<p class="generator">Generated by <a href="http://appledoc.gentlebytes.com">appledoc 2.2.1 (build 1334)</a>.</p>
Expand Down
2 changes: 1 addition & 1 deletion Documentation/html/Categories/NSString+ALJSONExtras.html
Original file line number Diff line number Diff line change
Expand Up @@ -230,7 +230,7 @@ <h4 class="method-subtitle">Declared In</h4>
<footer>
<div class="footer-copyright">

<p class="copyright">Copyright &copy; 2023 Anyline GmbH. All rights reserved. Updated: 2023-09-20</p>
<p class="copyright">Copyright &copy; 2023 Anyline GmbH. All rights reserved. Updated: 2023-10-09</p>


<p class="generator">Generated by <a href="http://appledoc.gentlebytes.com">appledoc 2.2.1 (build 1334)</a>.</p>
Expand Down
2 changes: 1 addition & 1 deletion Documentation/html/Classes/ALAamva.html
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ <h3 class="method-title"><code><a href="#//api/name/bodyPart">&nbsp;&nbsp;bodyPa
<footer>
<div class="footer-copyright">

<p class="copyright">Copyright &copy; 2023 Anyline GmbH. All rights reserved. Updated: 2023-09-20</p>
<p class="copyright">Copyright &copy; 2023 Anyline GmbH. All rights reserved. Updated: 2023-10-09</p>


<p class="generator">Generated by <a href="http://appledoc.gentlebytes.com">appledoc 2.2.1 (build 1334)</a>.</p>
Expand Down
2 changes: 1 addition & 1 deletion Documentation/html/Classes/ALAllowedLayouts.html
Original file line number Diff line number Diff line change
Expand Up @@ -197,7 +197,7 @@ <h3 class="method-title"><code><a href="#//api/name/mrz">&nbsp;&nbsp;mrz</a></co
<footer>
<div class="footer-copyright">

<p class="copyright">Copyright &copy; 2023 Anyline GmbH. All rights reserved. Updated: 2023-09-20</p>
<p class="copyright">Copyright &copy; 2023 Anyline GmbH. All rights reserved. Updated: 2023-10-09</p>


<p class="generator">Generated by <a href="http://appledoc.gentlebytes.com">appledoc 2.2.1 (build 1334)</a>.</p>
Expand Down
2 changes: 1 addition & 1 deletion Documentation/html/Classes/ALAlphabet.html
Original file line number Diff line number Diff line change
Expand Up @@ -218,7 +218,7 @@ <h3 class="method-title"><code><a href="#//api/name/latin">+&nbsp;latin</a></cod
<footer>
<div class="footer-copyright">

<p class="copyright">Copyright &copy; 2023 Anyline GmbH. All rights reserved. Updated: 2023-09-20</p>
<p class="copyright">Copyright &copy; 2023 Anyline GmbH. All rights reserved. Updated: 2023-10-09</p>


<p class="generator">Generated by <a href="http://appledoc.gentlebytes.com">appledoc 2.2.1 (build 1334)</a>.</p>
Expand Down
2 changes: 1 addition & 1 deletion Documentation/html/Classes/ALArabic.html
Original file line number Diff line number Diff line change
Expand Up @@ -210,7 +210,7 @@ <h4 class="method-subtitle">Declared In</h4>
<footer>
<div class="footer-copyright">

<p class="copyright">Copyright &copy; 2023 Anyline GmbH. All rights reserved. Updated: 2023-09-20</p>
<p class="copyright">Copyright &copy; 2023 Anyline GmbH. All rights reserved. Updated: 2023-10-09</p>


<p class="generator">Generated by <a href="http://appledoc.gentlebytes.com">appledoc 2.2.1 (build 1334)</a>.</p>
Expand Down
2 changes: 1 addition & 1 deletion Documentation/html/Classes/ALArea.html
Original file line number Diff line number Diff line change
Expand Up @@ -1136,7 +1136,7 @@ <h3 class="method-title"><code><a href="#//api/name/wyoming">+&nbsp;wyoming</a><
<footer>
<div class="footer-copyright">

<p class="copyright">Copyright &copy; 2023 Anyline GmbH. All rights reserved. Updated: 2023-09-20</p>
<p class="copyright">Copyright &copy; 2023 Anyline GmbH. All rights reserved. Updated: 2023-10-09</p>


<p class="generator">Generated by <a href="http://appledoc.gentlebytes.com">appledoc 2.2.1 (build 1334)</a>.</p>
Expand Down
2 changes: 1 addition & 1 deletion Documentation/html/Classes/ALAssetContext.html
Original file line number Diff line number Diff line change
Expand Up @@ -623,7 +623,7 @@ <h4 class="method-subtitle">Declared In</h4>
<footer>
<div class="footer-copyright">

<p class="copyright">Copyright &copy; 2023 Anyline GmbH. All rights reserved. Updated: 2023-09-20</p>
<p class="copyright">Copyright &copy; 2023 Anyline GmbH. All rights reserved. Updated: 2023-10-09</p>


<p class="generator">Generated by <a href="http://appledoc.gentlebytes.com">appledoc 2.2.1 (build 1334)</a>.</p>
Expand Down
2 changes: 1 addition & 1 deletion Documentation/html/Classes/ALAssetController.html
Original file line number Diff line number Diff line change
Expand Up @@ -996,7 +996,7 @@ <h4 class="method-subtitle">Declared In</h4>
<footer>
<div class="footer-copyright">

<p class="copyright">Copyright &copy; 2023 Anyline GmbH. All rights reserved. Updated: 2023-09-20</p>
<p class="copyright">Copyright &copy; 2023 Anyline GmbH. All rights reserved. Updated: 2023-10-09</p>


<p class="generator">Generated by <a href="http://appledoc.gentlebytes.com">appledoc 2.2.1 (build 1334)</a>.</p>
Expand Down
2 changes: 1 addition & 1 deletion Documentation/html/Classes/ALAssetControllerFactory.html
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,7 @@ <h4 class="method-subtitle">Declared In</h4>
<footer>
<div class="footer-copyright">

<p class="copyright">Copyright &copy; 2023 Anyline GmbH. All rights reserved. Updated: 2023-09-20</p>
<p class="copyright">Copyright &copy; 2023 Anyline GmbH. All rights reserved. Updated: 2023-10-09</p>


<p class="generator">Generated by <a href="http://appledoc.gentlebytes.com">appledoc 2.2.1 (build 1334)</a>.</p>
Expand Down
2 changes: 1 addition & 1 deletion Documentation/html/Classes/ALAssetUpdateManager.html
Original file line number Diff line number Diff line change
Expand Up @@ -874,7 +874,7 @@ <h4 class="method-subtitle">Declared In</h4>
<footer>
<div class="footer-copyright">

<p class="copyright">Copyright &copy; 2023 Anyline GmbH. All rights reserved. Updated: 2023-09-20</p>
<p class="copyright">Copyright &copy; 2023 Anyline GmbH. All rights reserved. Updated: 2023-10-09</p>


<p class="generator">Generated by <a href="http://appledoc.gentlebytes.com">appledoc 2.2.1 (build 1334)</a>.</p>
Expand Down
2 changes: 1 addition & 1 deletion Documentation/html/Classes/ALAssetUpdateTask.html
Original file line number Diff line number Diff line change
Expand Up @@ -711,7 +711,7 @@ <h4 class="method-subtitle">Declared In</h4>
<footer>
<div class="footer-copyright">

<p class="copyright">Copyright &copy; 2023 Anyline GmbH. All rights reserved. Updated: 2023-09-20</p>
<p class="copyright">Copyright &copy; 2023 Anyline GmbH. All rights reserved. Updated: 2023-10-09</p>


<p class="generator">Generated by <a href="http://appledoc.gentlebytes.com">appledoc 2.2.1 (build 1334)</a>.</p>
Expand Down
2 changes: 1 addition & 1 deletion Documentation/html/Classes/ALAssetUpdateTaskFactory.html
Original file line number Diff line number Diff line change
Expand Up @@ -191,7 +191,7 @@ <h4 class="method-subtitle">Declared In</h4>
<footer>
<div class="footer-copyright">

<p class="copyright">Copyright &copy; 2023 Anyline GmbH. All rights reserved. Updated: 2023-09-20</p>
<p class="copyright">Copyright &copy; 2023 Anyline GmbH. All rights reserved. Updated: 2023-10-09</p>


<p class="generator">Generated by <a href="http://appledoc.gentlebytes.com">appledoc 2.2.1 (build 1334)</a>.</p>
Expand Down
2 changes: 1 addition & 1 deletion Documentation/html/Classes/ALBarcode.html
Original file line number Diff line number Diff line change
Expand Up @@ -316,7 +316,7 @@ <h4 class="method-subtitle">Declared In</h4>
<footer>
<div class="footer-copyright">

<p class="copyright">Copyright &copy; 2023 Anyline GmbH. All rights reserved. Updated: 2023-09-20</p>
<p class="copyright">Copyright &copy; 2023 Anyline GmbH. All rights reserved. Updated: 2023-10-09</p>


<p class="generator">Generated by <a href="http://appledoc.gentlebytes.com">appledoc 2.2.1 (build 1334)</a>.</p>
Expand Down
2 changes: 1 addition & 1 deletion Documentation/html/Classes/ALBarcodeConfig.html
Original file line number Diff line number Diff line change
Expand Up @@ -299,7 +299,7 @@ <h4 class="method-subtitle">Declared In</h4>
<footer>
<div class="footer-copyright">

<p class="copyright">Copyright &copy; 2023 Anyline GmbH. All rights reserved. Updated: 2023-09-20</p>
<p class="copyright">Copyright &copy; 2023 Anyline GmbH. All rights reserved. Updated: 2023-10-09</p>


<p class="generator">Generated by <a href="http://appledoc.gentlebytes.com">appledoc 2.2.1 (build 1334)</a>.</p>
Expand Down
2 changes: 1 addition & 1 deletion Documentation/html/Classes/ALBarcodeFormat.html
Original file line number Diff line number Diff line change
Expand Up @@ -928,7 +928,7 @@ <h3 class="method-title"><code><a href="#//api/name/usps4Cb">+&nbsp;usps4Cb</a><
<footer>
<div class="footer-copyright">

<p class="copyright">Copyright &copy; 2023 Anyline GmbH. All rights reserved. Updated: 2023-09-20</p>
<p class="copyright">Copyright &copy; 2023 Anyline GmbH. All rights reserved. Updated: 2023-10-09</p>


<p class="generator">Generated by <a href="http://appledoc.gentlebytes.com">appledoc 2.2.1 (build 1334)</a>.</p>
Expand Down
2 changes: 1 addition & 1 deletion Documentation/html/Classes/ALBarcodeResult.html
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@ <h4 class="method-subtitle">Declared In</h4>
<footer>
<div class="footer-copyright">

<p class="copyright">Copyright &copy; 2023 Anyline GmbH. All rights reserved. Updated: 2023-09-20</p>
<p class="copyright">Copyright &copy; 2023 Anyline GmbH. All rights reserved. Updated: 2023-10-09</p>


<p class="generator">Generated by <a href="http://appledoc.gentlebytes.com">appledoc 2.2.1 (build 1334)</a>.</p>
Expand Down
2 changes: 1 addition & 1 deletion Documentation/html/Classes/ALBodyPart.html
Original file line number Diff line number Diff line change
Expand Up @@ -600,7 +600,7 @@ <h3 class="method-title"><code><a href="#//api/name/street">&nbsp;&nbsp;street</
<footer>
<div class="footer-copyright">

<p class="copyright">Copyright &copy; 2023 Anyline GmbH. All rights reserved. Updated: 2023-09-20</p>
<p class="copyright">Copyright &copy; 2023 Anyline GmbH. All rights reserved. Updated: 2023-10-09</p>


<p class="generator">Generated by <a href="http://appledoc.gentlebytes.com">appledoc 2.2.1 (build 1334)</a>.</p>
Expand Down
2 changes: 1 addition & 1 deletion Documentation/html/Classes/ALCacheConfig.html
Original file line number Diff line number Diff line change
Expand Up @@ -392,7 +392,7 @@ <h4 class="method-subtitle">Declared In</h4>
<footer>
<div class="footer-copyright">

<p class="copyright">Copyright &copy; 2023 Anyline GmbH. All rights reserved. Updated: 2023-09-20</p>
<p class="copyright">Copyright &copy; 2023 Anyline GmbH. All rights reserved. Updated: 2023-10-09</p>


<p class="generator">Generated by <a href="http://appledoc.gentlebytes.com">appledoc 2.2.1 (build 1334)</a>.</p>
Expand Down
2 changes: 1 addition & 1 deletion Documentation/html/Classes/ALCameraConfig.html
Original file line number Diff line number Diff line change
Expand Up @@ -726,7 +726,7 @@ <h4 class="method-subtitle">Declared In</h4>
<footer>
<div class="footer-copyright">

<p class="copyright">Copyright &copy; 2023 Anyline GmbH. All rights reserved. Updated: 2023-09-20</p>
<p class="copyright">Copyright &copy; 2023 Anyline GmbH. All rights reserved. Updated: 2023-10-09</p>


<p class="generator">Generated by <a href="http://appledoc.gentlebytes.com">appledoc 2.2.1 (build 1334)</a>.</p>
Expand Down
2 changes: 1 addition & 1 deletion Documentation/html/Classes/ALCommercialTireIDResult.html
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@ <h4 class="method-subtitle">Declared In</h4>
<footer>
<div class="footer-copyright">

<p class="copyright">Copyright &copy; 2023 Anyline GmbH. All rights reserved. Updated: 2023-09-20</p>
<p class="copyright">Copyright &copy; 2023 Anyline GmbH. All rights reserved. Updated: 2023-10-09</p>


<p class="generator">Generated by <a href="http://appledoc.gentlebytes.com">appledoc 2.2.1 (build 1334)</a>.</p>
Expand Down
2 changes: 1 addition & 1 deletion Documentation/html/Classes/ALCommercialTireIdConfig.html
Original file line number Diff line number Diff line change
Expand Up @@ -254,7 +254,7 @@ <h4 class="method-subtitle">Declared In</h4>
<footer>
<div class="footer-copyright">

<p class="copyright">Copyright &copy; 2023 Anyline GmbH. All rights reserved. Updated: 2023-09-20</p>
<p class="copyright">Copyright &copy; 2023 Anyline GmbH. All rights reserved. Updated: 2023-10-09</p>


<p class="generator">Generated by <a href="http://appledoc.gentlebytes.com">appledoc 2.2.1 (build 1334)</a>.</p>
Expand Down
2 changes: 1 addition & 1 deletion Documentation/html/Classes/ALContainerConfig.html
Original file line number Diff line number Diff line change
Expand Up @@ -254,7 +254,7 @@ <h4 class="method-subtitle">Declared In</h4>
<footer>
<div class="footer-copyright">

<p class="copyright">Copyright &copy; 2023 Anyline GmbH. All rights reserved. Updated: 2023-09-20</p>
<p class="copyright">Copyright &copy; 2023 Anyline GmbH. All rights reserved. Updated: 2023-10-09</p>


<p class="generator">Generated by <a href="http://appledoc.gentlebytes.com">appledoc 2.2.1 (build 1334)</a>.</p>
Expand Down
2 changes: 1 addition & 1 deletion Documentation/html/Classes/ALContainerConfigScanMode.html
Original file line number Diff line number Diff line change
Expand Up @@ -200,7 +200,7 @@ <h3 class="method-title"><code><a href="#//api/name/vertical">+&nbsp;vertical</a
<footer>
<div class="footer-copyright">

<p class="copyright">Copyright &copy; 2023 Anyline GmbH. All rights reserved. Updated: 2023-09-20</p>
<p class="copyright">Copyright &copy; 2023 Anyline GmbH. All rights reserved. Updated: 2023-10-09</p>


<p class="generator">Generated by <a href="http://appledoc.gentlebytes.com">appledoc 2.2.1 (build 1334)</a>.</p>
Expand Down
2 changes: 1 addition & 1 deletion Documentation/html/Classes/ALContainerResult.html
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@ <h4 class="method-subtitle">Declared In</h4>
<footer>
<div class="footer-copyright">

<p class="copyright">Copyright &copy; 2023 Anyline GmbH. All rights reserved. Updated: 2023-09-20</p>
<p class="copyright">Copyright &copy; 2023 Anyline GmbH. All rights reserved. Updated: 2023-10-09</p>


<p class="generator">Generated by <a href="http://appledoc.gentlebytes.com">appledoc 2.2.1 (build 1334)</a>.</p>
Expand Down
2 changes: 1 addition & 1 deletion Documentation/html/Classes/ALCropRect.html
Original file line number Diff line number Diff line change
Expand Up @@ -296,7 +296,7 @@ <h4 class="method-subtitle">Declared In</h4>
<footer>
<div class="footer-copyright">

<p class="copyright">Copyright &copy; 2023 Anyline GmbH. All rights reserved. Updated: 2023-09-20</p>
<p class="copyright">Copyright &copy; 2023 Anyline GmbH. All rights reserved. Updated: 2023-10-09</p>


<p class="generator">Generated by <a href="http://appledoc.gentlebytes.com">appledoc 2.2.1 (build 1334)</a>.</p>
Expand Down
2 changes: 1 addition & 1 deletion Documentation/html/Classes/ALCutoutConfig.html
Original file line number Diff line number Diff line change
Expand Up @@ -1065,7 +1065,7 @@ <h3 class="method-title"><code><a href="#//api/name/withAlignment:animation:rati
<footer>
<div class="footer-copyright">

<p class="copyright">Copyright &copy; 2023 Anyline GmbH. All rights reserved. Updated: 2023-09-20</p>
<p class="copyright">Copyright &copy; 2023 Anyline GmbH. All rights reserved. Updated: 2023-10-09</p>


<p class="generator">Generated by <a href="http://appledoc.gentlebytes.com">appledoc 2.2.1 (build 1334)</a>.</p>
Expand Down
2 changes: 1 addition & 1 deletion Documentation/html/Classes/ALCyrillic.html
Original file line number Diff line number Diff line change
Expand Up @@ -210,7 +210,7 @@ <h4 class="method-subtitle">Declared In</h4>
<footer>
<div class="footer-copyright">

<p class="copyright">Copyright &copy; 2023 Anyline GmbH. All rights reserved. Updated: 2023-09-20</p>
<p class="copyright">Copyright &copy; 2023 Anyline GmbH. All rights reserved. Updated: 2023-10-09</p>


<p class="generator">Generated by <a href="http://appledoc.gentlebytes.com">appledoc 2.2.1 (build 1334)</a>.</p>
Expand Down
2 changes: 1 addition & 1 deletion Documentation/html/Classes/ALDataGroup1.html
Original file line number Diff line number Diff line change
Expand Up @@ -675,7 +675,7 @@ <h4 class="method-subtitle">Declared In</h4>
<footer>
<div class="footer-copyright">

<p class="copyright">Copyright &copy; 2023 Anyline GmbH. All rights reserved. Updated: 2023-09-20</p>
<p class="copyright">Copyright &copy; 2023 Anyline GmbH. All rights reserved. Updated: 2023-10-09</p>


<p class="generator">Generated by <a href="http://appledoc.gentlebytes.com">appledoc 2.2.1 (build 1334)</a>.</p>
Expand Down
2 changes: 1 addition & 1 deletion Documentation/html/Classes/ALDataGroup2.html
Original file line number Diff line number Diff line change
Expand Up @@ -231,7 +231,7 @@ <h4 class="method-subtitle">Declared In</h4>
<footer>
<div class="footer-copyright">

<p class="copyright">Copyright &copy; 2023 Anyline GmbH. All rights reserved. Updated: 2023-09-20</p>
<p class="copyright">Copyright &copy; 2023 Anyline GmbH. All rights reserved. Updated: 2023-10-09</p>


<p class="generator">Generated by <a href="http://appledoc.gentlebytes.com">appledoc 2.2.1 (build 1334)</a>.</p>
Expand Down
Loading

0 comments on commit 5260070

Please sign in to comment.