From 28a779280500420e8a7d274551966f82c3911b21 Mon Sep 17 00:00:00 2001 From: Adam Campbell Date: Wed, 20 Jan 2021 11:20:30 +1100 Subject: [PATCH 1/2] Prevent scrollView bounce in the checkout WebView --- Sources/Afterpay/Checkout/CheckoutWebViewController.swift | 1 + 1 file changed, 1 insertion(+) diff --git a/Sources/Afterpay/Checkout/CheckoutWebViewController.swift b/Sources/Afterpay/Checkout/CheckoutWebViewController.swift index 6bf2185f..104fa822 100644 --- a/Sources/Afterpay/Checkout/CheckoutWebViewController.swift +++ b/Sources/Afterpay/Checkout/CheckoutWebViewController.swift @@ -63,6 +63,7 @@ final class CheckoutWebViewController: webView.allowsLinkPreview = false webView.navigationDelegate = self + webView.scrollView.bounces = false } override func viewDidAppear(_ animated: Bool) { From 13c3c3ebf4a822803f2d3b27401dacb7c8d63934 Mon Sep 17 00:00:00 2001 From: Adam Campbell Date: Wed, 20 Jan 2021 12:01:36 +1100 Subject: [PATCH 2/2] Bump version to 1.4.3 --- Configurations/Afterpay-Shared.xcconfig | 2 +- README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Configurations/Afterpay-Shared.xcconfig b/Configurations/Afterpay-Shared.xcconfig index 8928a42b..dc3390fd 100644 --- a/Configurations/Afterpay-Shared.xcconfig +++ b/Configurations/Afterpay-Shared.xcconfig @@ -169,4 +169,4 @@ TARGETED_DEVICE_FAMILY = 1,2 // This setting defines the user-visible version of the project. The value corresponds to // the `CFBundleShortVersionString` key in your app's Info.plist. -MARKETING_VERSION = 1.4.2 +MARKETING_VERSION = 1.4.3 diff --git a/README.md b/README.md index b7eefb65..f62ca80b 100644 --- a/README.md +++ b/README.md @@ -91,7 +91,7 @@ Add the Afterpay SDK as a [git submodule][git-submodule] by navigating to the ro ``` git submodule add https://github.com/afterpay/sdk-ios.git Afterpay cd Afterpay -git checkout 1.4.2 +git checkout 1.4.3 ``` #### Project / Workspace Integration