Skip to content

Commit

Permalink
49.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
aldrichanyline committed Jul 6, 2023
1 parent 57b1cbc commit 7e04365
Show file tree
Hide file tree
Showing 505 changed files with 655 additions and 4,356 deletions.
4 changes: 0 additions & 4 deletions AnylineExamples/Anyline Demo App/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,8 @@
<string>$(PRODUCT_NAME)</string>
<key>CFBundlePackageType</key>
<string>APPL</string>
<key>CFBundleShortVersionString</key>
<string>48.0.1</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
<string>1</string>
<key>LSRequiresIPhoneOS</key>
<true/>
<key>NFCReaderUsageDescription</key>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@
"pluginConfig": {
"id": "id-dl-mrz",
"universalIdConfig": {
"faceDetectionEnabled": true,
"allowedLayouts": {
"drivingLicense": [],
"mrz": []
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
"pluginConfig": {
"id": "id-dl",
"universalIdConfig": {
"faceDetectionEnabled": true,
"allowedLayouts": {
"drivingLicense": []
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@
"pluginConfig": {
"id": "id-mrz",
"universalIdConfig": {
"faceDetectionEnabled": true,
"allowedLayouts": {
"insuranceCard": [],
"idFront": [],
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
"pluginConfig": {
"id": "id",
"universalIdConfig": {
"faceDetectionEnabled": true,
"allowedLayouts": {
"insuranceCard": [],
"idFront": []
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@
"pluginConfig": {
"id": "id-mrz-dl",
"universalIdConfig": {
"faceDetectionEnabled": true,
"allowedLayouts": {
"mrz": [],
"insuranceCard": [],
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
"id": "id-mrz-dl",
"startScanDelay": 1000,
"universalIdConfig": {
"faceDetectionEnabled": true,
"allowedLayouts": {
"mrz": [],
"insuranceCard": [],
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
"id": "id",
"cancelOnResult": true,
"mrzConfig": {
"faceDetectionEnabled": true,
"strictMode": false,
"cropAndTransformID": false
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -175,11 +175,14 @@ The result fields above display a selection of scannable ID information only. Pl

self.faceImageView.image = self.imageFace
self.firstImageView.image = self.imagePrimary
self.secondImageView.image = self.imageSecondary

contentScrollView.addSubview(self.faceImageView)
contentScrollView.addSubview(self.firstImageView)
contentScrollView.addSubview(self.secondImageView)

if let secondary = self.imageSecondary {
self.secondImageView.image = self.imageSecondary
contentScrollView.addSubview(self.secondImageView)
}

self.tableView.delegate = self
self.tableView.dataSource = self
Expand All @@ -206,6 +209,8 @@ The result fields above display a selection of scannable ID information only. Pl

private func setupConstraints() {

let showingSecondaryImage = self.secondImageView.image != nil

let verticalGap: CGFloat = 10.0
let horizontalGap: CGFloat = 15.0

Expand Down Expand Up @@ -250,35 +255,39 @@ The result fields above display a selection of scannable ID information only. Pl
var ratio = (self.imagePrimary?.size.height ?? 0) / (self.imagePrimary?.size.width ?? 0)
let width = self.view.bounds.width - horizontalGap * 2.0

let imageViewBottomAnchor = (self.showDisclaimer ?
self.disclaimerTextView.topAnchor :
self.contentScrollView.bottomAnchor)

let firstImageViewToBottomCnst = self.firstImageView.bottomAnchor.constraint(lessThanOrEqualTo: imageViewBottomAnchor,
constant: -verticalGap)
firstImageViewToBottomCnst.priority = .defaultLow

allConstraints.append(contentsOf: [
self.firstImageView.topAnchor.constraint(equalTo: self.tableView.bottomAnchor, constant: verticalGap),
self.firstImageView.leadingAnchor.constraint(equalTo: self.tableView.leadingAnchor, constant: 10),
self.firstImageView.trailingAnchor.constraint(equalTo:self.tableView.trailingAnchor, constant: -10),
self.firstImageView.widthAnchor.constraint(lessThanOrEqualToConstant: width.isNaN ? 0 : width),
self.firstImageView.bottomAnchor.constraint(equalTo: self.secondImageView.topAnchor, constant: -verticalGap),
self.firstImageView.heightAnchor.constraint(equalTo: self.firstImageView.widthAnchor, multiplier: ratio.isNaN ? 1 : ratio),
firstImageViewToBottomCnst // in case we had to remove the secondary image view esp if it's not displaying anything
])
ratio = (self.imageSecondary?.size.height ?? 0) / (self.imageSecondary?.size.width ?? 0)

let secondImageViewBottomAnchor = (self.showDisclaimer ?
self.disclaimerTextView.topAnchor :
self.contentScrollView.bottomAnchor)

allConstraints.append(contentsOf: [
self.secondImageView.topAnchor.constraint(equalTo: self.firstImageView.bottomAnchor, constant: verticalGap),
self.secondImageView.leadingAnchor.constraint(equalTo: self.tableView.leadingAnchor, constant: 10),
self.secondImageView.trailingAnchor.constraint(equalTo: self.tableView.trailingAnchor, constant: -10),
self.secondImageView.heightAnchor.constraint(equalTo: self.secondImageView.widthAnchor, multiplier: ratio.isNaN ? 1 : ratio),
self.secondImageView.widthAnchor.constraint(equalTo: self.firstImageView.widthAnchor),
self.secondImageView.bottomAnchor.constraint(equalTo: secondImageViewBottomAnchor, constant: -verticalGap)
])
if showingSecondaryImage {
ratio = (self.imageSecondary?.size.height ?? 0) / (self.imageSecondary?.size.width ?? 0)
allConstraints.append(contentsOf: [
self.secondImageView.topAnchor.constraint(equalTo: self.firstImageView.bottomAnchor, constant: verticalGap),
self.secondImageView.leadingAnchor.constraint(equalTo: self.tableView.leadingAnchor, constant: 10),
self.secondImageView.trailingAnchor.constraint(equalTo: self.tableView.trailingAnchor, constant: -10),
self.secondImageView.heightAnchor.constraint(equalTo: self.secondImageView.widthAnchor, multiplier: ratio.isNaN ? 1 : ratio),
self.secondImageView.widthAnchor.constraint(equalTo: self.firstImageView.widthAnchor),
self.secondImageView.bottomAnchor.constraint(equalTo: imageViewBottomAnchor, constant: -verticalGap)
])
}

if self.showDisclaimer {
let size = self.disclaimerTextView.sizeThatFits(.init(width: width, height: 100))
let disclaimerHeight = size.height

allConstraints.append(contentsOf: [
self.disclaimerTextView.topAnchor.constraint(equalTo: self.secondImageView.bottomAnchor, constant: verticalGap),
self.disclaimerTextView.leadingAnchor.constraint(equalTo: self.tableView.leadingAnchor, constant: 10),
self.disclaimerTextView.trailingAnchor.constraint(equalTo: self.tableView.trailingAnchor, constant: -10),
self.disclaimerTextView.bottomAnchor.constraint(equalTo: self.contentScrollView.bottomAnchor, constant: -verticalGap),
Expand Down
20 changes: 10 additions & 10 deletions AnylineExamples/AnylineExamples.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -1367,13 +1367,14 @@
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
CODE_SIGN_ENTITLEMENTS = AnylineExamples.entitlements;
CODE_SIGN_IDENTITY = "iPhone Developer";
CURRENT_PROJECT_VERSION = 1;
DEVELOPMENT_TEAM = 35RHL53WRE;
ENABLE_BITCODE = NO;
FRAMEWORK_SEARCH_PATHS = (
./../Framework,
"$(SRCROOT)/",
"$(SRCROOT)",
"\"../Framework\"",
);
GENERATE_INFOPLIST_FILE = YES;
INFOPLIST_FILE = "$(SRCROOT)/Anyline Demo App/Info.plist";
IPHONEOS_DEPLOYMENT_TARGET = 12.0;
LD_RUNPATH_SEARCH_PATHS = (
Expand All @@ -1382,14 +1383,13 @@
);
LIBRARY_SEARCH_PATHS = (
"$(SDKROOT)/System/Library/Frameworks",
./../Framework,
/,
);
MARKETING_VERSION = 49.0.0;
OTHER_LDFLAGS = "-ObjC";
PRODUCT_BUNDLE_IDENTIFIER = io.anyline.AnylineExamples.bundle;
SDKROOT = iphoneos;
SWIFT_OBJC_BRIDGING_HEADER = "./Anyline Demo App/AnylineExamples-Bridging-Header.h";
SWIFT_VERSION = 5;
SWIFT_VERSION = 4.2;
TARGETED_DEVICE_FAMILY = "1,2";
};
name = Debug;
Expand Down Expand Up @@ -1455,13 +1455,14 @@
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
CODE_SIGN_ENTITLEMENTS = AnylineExamples.entitlements;
CODE_SIGN_IDENTITY = "iPhone Developer";
CURRENT_PROJECT_VERSION = 1;
DEVELOPMENT_TEAM = 35RHL53WRE;
ENABLE_BITCODE = NO;
FRAMEWORK_SEARCH_PATHS = (
./../Framework,
"$(SRCROOT)/",
"$(SRCROOT)",
"\"../Framework\"",
);
GENERATE_INFOPLIST_FILE = YES;
INFOPLIST_FILE = "$(SRCROOT)/Anyline Demo App/Info.plist";
IPHONEOS_DEPLOYMENT_TARGET = 12.0;
LD_RUNPATH_SEARCH_PATHS = (
Expand All @@ -1470,14 +1471,13 @@
);
LIBRARY_SEARCH_PATHS = (
"$(SDKROOT)/System/Library/Frameworks",
./../Framework,
/,
);
MARKETING_VERSION = 49.0.0;
OTHER_LDFLAGS = "-ObjC";
PRODUCT_BUNDLE_IDENTIFIER = io.anyline.AnylineExamples.bundle;
SDKROOT = iphoneos;
SWIFT_OBJC_BRIDGING_HEADER = "./Anyline Demo App/AnylineExamples-Bridging-Header.h";
SWIFT_VERSION = 5;
SWIFT_VERSION = 4.2;
TARGETED_DEVICE_FAMILY = "1,2";
};
name = Release;
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>IDEDidComputeMac32BitWarning</key>
<true/>
</dict>
</plist>
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-06-22</p>
<p class="copyright">Copyright &copy; 2023 Anyline GmbH. All rights reserved. Updated: 2023-07-06</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-06-22</p>
<p class="copyright">Copyright &copy; 2023 Anyline GmbH. All rights reserved. Updated: 2023-07-06</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-06-22</p>
<p class="copyright">Copyright &copy; 2023 Anyline GmbH. All rights reserved. Updated: 2023-07-06</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-06-22</p>
<p class="copyright">Copyright &copy; 2023 Anyline GmbH. All rights reserved. Updated: 2023-07-06</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-06-22</p>
<p class="copyright">Copyright &copy; 2023 Anyline GmbH. All rights reserved. Updated: 2023-07-06</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-06-22</p>
<p class="copyright">Copyright &copy; 2023 Anyline GmbH. All rights reserved. Updated: 2023-07-06</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-06-22</p>
<p class="copyright">Copyright &copy; 2023 Anyline GmbH. All rights reserved. Updated: 2023-07-06</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-06-22</p>
<p class="copyright">Copyright &copy; 2023 Anyline GmbH. All rights reserved. Updated: 2023-07-06</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-06-22</p>
<p class="copyright">Copyright &copy; 2023 Anyline GmbH. All rights reserved. Updated: 2023-07-06</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-06-22</p>
<p class="copyright">Copyright &copy; 2023 Anyline GmbH. All rights reserved. Updated: 2023-07-06</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-06-22</p>
<p class="copyright">Copyright &copy; 2023 Anyline GmbH. All rights reserved. Updated: 2023-07-06</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-06-22</p>
<p class="copyright">Copyright &copy; 2023 Anyline GmbH. All rights reserved. Updated: 2023-07-06</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-06-22</p>
<p class="copyright">Copyright &copy; 2023 Anyline GmbH. All rights reserved. Updated: 2023-07-06</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-06-22</p>
<p class="copyright">Copyright &copy; 2023 Anyline GmbH. All rights reserved. Updated: 2023-07-06</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-06-22</p>
<p class="copyright">Copyright &copy; 2023 Anyline GmbH. All rights reserved. Updated: 2023-07-06</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-06-22</p>
<p class="copyright">Copyright &copy; 2023 Anyline GmbH. All rights reserved. Updated: 2023-07-06</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-06-22</p>
<p class="copyright">Copyright &copy; 2023 Anyline GmbH. All rights reserved. Updated: 2023-07-06</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-06-22</p>
<p class="copyright">Copyright &copy; 2023 Anyline GmbH. All rights reserved. Updated: 2023-07-06</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-06-22</p>
<p class="copyright">Copyright &copy; 2023 Anyline GmbH. All rights reserved. Updated: 2023-07-06</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 7e04365

Please sign in to comment.