Version Description
- Date: 10.May.2021 BugFixed: iOS splash screen not working using apple icons addon #182 BugFixed: iOS - Splash Screen #175
Download this release
Release Info
Developer | superpwa |
Plugin | Super Progressive Web Apps |
Version | 2.1.10 |
Comparing to | |
See all releases |
Code changes from version 2.1.9 to 2.1.10
- addons/apple-touch-icons.php +9 -0
- readme.txt +5 -0
- superpwa.php +2 -2
addons/apple-touch-icons.php
CHANGED
@@ -41,6 +41,15 @@ function superpwa_ati_add_apple_touch_icons( $tags ) {
|
|
41 |
}//if closed
|
42 |
}//foreach closed
|
43 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
44 |
|
45 |
return $tags;
|
46 |
}
|
41 |
}//if closed
|
42 |
}//foreach closed
|
43 |
}
|
44 |
+
// Get settings
|
45 |
+
$settings = superpwa_get_settings();
|
46 |
+
|
47 |
+
$tags .= '<meta name="apple-mobile-web-app-title" content="'.esc_attr($settings['app_name']).'">' . PHP_EOL;
|
48 |
+
$tags .= '<meta name="application-name" content="'.esc_attr($settings['app_name']).'">' . PHP_EOL;
|
49 |
+
$tags .= '<meta name="apple-mobile-web-app-capable" content="yes">' . PHP_EOL;
|
50 |
+
$tags .= '<meta name="apple-mobile-web-app-status-bar-style" content="black">' . PHP_EOL;
|
51 |
+
$tags .= '<meta name="mobile-web-app-capable" content="yes">' . PHP_EOL;
|
52 |
+
$tags .= '<meta name="apple-touch-fullscreen" content="yes">' . PHP_EOL;
|
53 |
|
54 |
return $tags;
|
55 |
}
|
readme.txt
CHANGED
@@ -185,6 +185,11 @@ Feel free to get in touch if you have any questions.
|
|
185 |
1. Settings page in WordPress Admin > SuperPWA > Settings
|
186 |
|
187 |
== Changelog ==
|
|
|
|
|
|
|
|
|
|
|
188 |
= 2.1.9 =
|
189 |
* Date: [17.April.2021](https://superpwa.com/changelog/)
|
190 |
Minor Improvment: Added Data Analytics Addon Array #152
|
185 |
1. Settings page in WordPress Admin > SuperPWA > Settings
|
186 |
|
187 |
== Changelog ==
|
188 |
+
= 2.1.10 =
|
189 |
+
* Date: [10.May.2021](https://superpwa.com/superpwa-2-1-10-release-note/?utm_source=wordpress.org&utm_medium=changelog)
|
190 |
+
BugFixed: iOS splash screen not working using apple icons addon #182
|
191 |
+
BugFixed: iOS - Splash Screen #175
|
192 |
+
|
193 |
= 2.1.9 =
|
194 |
* Date: [17.April.2021](https://superpwa.com/changelog/)
|
195 |
Minor Improvment: Added Data Analytics Addon Array #152
|
superpwa.php
CHANGED
@@ -6,7 +6,7 @@
|
|
6 |
* Author: SuperPWA
|
7 |
* Author URI: https://profiles.wordpress.org/superpwa/
|
8 |
* Contributors: SuperPWA
|
9 |
-
* Version: 2.1.
|
10 |
* Text Domain: super-progressive-web-apps
|
11 |
* Domain Path: /languages
|
12 |
* License: GPL v2 - http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
|
@@ -43,7 +43,7 @@ if ( ! defined('ABSPATH') ) exit;
|
|
43 |
* @since 1.0
|
44 |
*/
|
45 |
if ( ! defined( 'SUPERPWA_VERSION' ) ) {
|
46 |
-
define( 'SUPERPWA_VERSION' , '2.1.
|
47 |
}
|
48 |
|
49 |
/**
|
6 |
* Author: SuperPWA
|
7 |
* Author URI: https://profiles.wordpress.org/superpwa/
|
8 |
* Contributors: SuperPWA
|
9 |
+
* Version: 2.1.10
|
10 |
* Text Domain: super-progressive-web-apps
|
11 |
* Domain Path: /languages
|
12 |
* License: GPL v2 - http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
|
43 |
* @since 1.0
|
44 |
*/
|
45 |
if ( ! defined( 'SUPERPWA_VERSION' ) ) {
|
46 |
+
define( 'SUPERPWA_VERSION' , '2.1.10' );
|
47 |
}
|
48 |
|
49 |
/**
|