Skip to content

Commit

Permalink
Release 16.11.3 (#2708)
Browse files Browse the repository at this point in the history
* Mobile 3402 Apply background color to IAA webview (#2654)

* apply bg color to webview

* feedback

* feedback

Co-authored-by: Ognjen Ristanovic <[email protected]>

* Release 16.11.3

* Updates

* Sync

---------

Co-authored-by: Ognjen Ristanović <[email protected]>
Co-authored-by: Ognjen Ristanovic <[email protected]>
  • Loading branch information
3 people authored Mar 24, 2023
1 parent 3b8b839 commit 61c8b72
Show file tree
Hide file tree
Showing 9 changed files with 21 additions and 7 deletions.
2 changes: 1 addition & 1 deletion Airship.podspec
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
AIRSHIP_VERSION="16.11.2"
AIRSHIP_VERSION="16.11.3"

Pod::Spec.new do |s|
s.version = AIRSHIP_VERSION
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -116,6 +116,11 @@ - (void)viewDidLoad {
self.nativeBridge.nativeBridgeDelegate = self;
self.webView.navigationDelegate = self.nativeBridge;
self.webView.scrollView.contentInsetAdjustmentBehavior = UIScrollViewContentInsetAdjustmentNever;
self.webView.backgroundColor = self.displayContent.backgroundColor;

if (CGColorGetAlpha(self.displayContent.backgroundColor.CGColor) != 1) {
self.webView.opaque = NO;
}

if (self.style.hideDismissIcon) {
[self.closeButtonContainerView setHidden:YES];
Expand Down
2 changes: 1 addition & 1 deletion Airship/AirshipConfig.xcconfig
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
//* Copyright Airship and Contributors */

CURRENT_PROJECT_VERSION = 16.11.2
CURRENT_PROJECT_VERSION = 16.11.3

// Uncomment to include the preview build warning
// OTHER_CFLAGS = $(inherited) -DUA_PREVIEW=1
2 changes: 1 addition & 1 deletion Airship/AirshipCore/Source/AirshipVersion.swift
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import Foundation;

@objc(UAirshipVersion)
public class AirshipVersion : NSObject {
public static let version = "16.11.2"
public static let version = "16.11.3"

@objc
public class func get() -> String {
Expand Down
2 changes: 1 addition & 1 deletion AirshipContentExtension.podspec
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
AIRSHIP_VERSION="16.11.2"
AIRSHIP_VERSION="16.11.3"

Pod::Spec.new do |s|
s.version = AIRSHIP_VERSION
Expand Down
2 changes: 1 addition & 1 deletion AirshipDebug.podspec
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
AIRSHIP_VERSION="16.11.2"
AIRSHIP_VERSION="16.11.3"

Pod::Spec.new do |s|
s.version = AIRSHIP_VERSION
Expand Down
2 changes: 1 addition & 1 deletion AirshipExtensions.podspec
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
AIRSHIP_VERSION="16.11.2"
AIRSHIP_VERSION="16.11.3"

Pod::Spec.new do |s|
s.version = AIRSHIP_VERSION
Expand Down
2 changes: 1 addition & 1 deletion AirshipServiceExtension.podspec
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
AIRSHIP_VERSION="16.11.2"
AIRSHIP_VERSION="16.11.3"

Pod::Spec.new do |s|
s.version = AIRSHIP_VERSION
Expand Down
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,15 @@

[Migration Guides](https://github.com/urbanairship/ios-library/tree/main/Documentation/Migration)

## Version 16.11.3 March 24, 2023
Patch release that fixing Contact update merging order, improves Scene/Survey accessibility and reporting.

### Changes
- Fixed Contact update merge order, resolving a Preference Center bug that could lead to unexpected subscription states in some circumstances.
- Improved Scene/Survey accessibility and fixed a reporting bug related to form display events.
- Fixed an issue with downgrading to a version older than 16.10.1 would cause the channel to be recreated.
- Added support for transparent WebView backgrounds in HTML In-App Automations

## Version 16.11.2 March 2, 2023
Patch release that fixes a regression introduced in 16.11.0 that disables Survey's submit button and inputs, and added accessibility font scaling to Scenes & Surveys.

Expand Down

0 comments on commit 61c8b72

Please sign in to comment.