@capacitor/splash-screen 4.0.0-beta.0 → 4.0.0-beta.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -3,6 +3,14 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ # [4.0.0-beta.2](https://github.com/ionic-team/capacitor-plugins/compare/4.0.0-beta.0...4.0.0-beta.2) (2022-07-08)
7
+
8
+ **Note:** Version bump only for package @capacitor/splash-screen
9
+
10
+
11
+
12
+
13
+
6
14
  # 4.0.0-beta.0 (2022-06-27)
7
15
 
8
16
 
@@ -119,7 +119,7 @@ import Capacitor
119
119
  private func updateSplashImageBounds() {
120
120
  var window: UIWindow? = UIApplication.shared.delegate?.window ?? nil
121
121
 
122
- if #available(iOS 13, *), window == nil {
122
+ if window == nil {
123
123
  let scene: UIWindowScene? = UIApplication.shared.connectedScenes.first as? UIWindowScene
124
124
  window = scene?.windows.filter({$0.isKeyWindow}).first
125
125
  if window == nil {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@capacitor/splash-screen",
3
- "version": "4.0.0-beta.0",
3
+ "version": "4.0.0-beta.2",
4
4
  "description": "The Splash Screen API provides methods for showing or hiding a Splash image.",
5
5
  "main": "dist/plugin.cjs.js",
6
6
  "module": "dist/esm/index.js",
@@ -80,5 +80,5 @@
80
80
  "publishConfig": {
81
81
  "access": "public"
82
82
  },
83
- "gitHead": "fd7db8285f72990522da0adc889514c9804b6dae"
83
+ "gitHead": "32240b675c12a774920c07a86b4483ecec7a9c8d"
84
84
  }