Version Description
( 2019-09-10 ) = - Fix: PHP Fatal Error on outdated PHP versions
Download this release
Release Info
Developer | jdailey |
Plugin | Hummingbird Page Speed Optimization |
Version | 2.1.1 |
Comparing to | |
See all releases |
Code changes from version 2.1.0 to 2.1.1
- admin/pages/class-upgrade.php +2 -2
- readme.txt +7 -4
- wp-hummingbird.php +2 -2
admin/pages/class-upgrade.php
CHANGED
@@ -9,7 +9,7 @@
|
|
9 |
namespace Hummingbird\Admin\Pages;
|
10 |
|
11 |
use Hummingbird\Admin\Page;
|
12 |
-
use Hummingbird\Core\Settings;
|
13 |
|
14 |
if ( ! defined( 'ABSPATH' ) ) {
|
15 |
exit;
|
@@ -24,7 +24,7 @@ class Upgrade extends Page {
|
|
24 |
* Render the page (overwrites parent class method).
|
25 |
*/
|
26 |
public function render() {
|
27 |
-
$settings =
|
28 |
?>
|
29 |
<div class="sui-wrap<?php echo $settings['accessible_colors'] ? ' sui-color-accessible ' : ' '; ?>wrap-wp-hummingbird wrap-wp-hummingbird-page <?php echo 'wrap-' . esc_attr( $this->slug ); ?>">
|
30 |
<?php $this->render_inner_content(); ?>
|
9 |
namespace Hummingbird\Admin\Pages;
|
10 |
|
11 |
use Hummingbird\Admin\Page;
|
12 |
+
use Hummingbird\Core\Settings as Settings_Module;
|
13 |
|
14 |
if ( ! defined( 'ABSPATH' ) ) {
|
15 |
exit;
|
24 |
* Render the page (overwrites parent class method).
|
25 |
*/
|
26 |
public function render() {
|
27 |
+
$settings = Settings_Module::get_settings( 'settings' );
|
28 |
?>
|
29 |
<div class="sui-wrap<?php echo $settings['accessible_colors'] ? ' sui-color-accessible ' : ' '; ?>wrap-wp-hummingbird wrap-wp-hummingbird-page <?php echo 'wrap-' . esc_attr( $this->slug ); ?>">
|
30 |
<?php $this->render_inner_content(); ?>
|
readme.txt
CHANGED
@@ -1,14 +1,14 @@
|
|
1 |
=== Hummingbird – Speed up, Cache, Optimize Your CSS and JS ===
|
2 |
Plugin Name: Hummingbird – Speed Up, Cache, Optimize CSS and JS
|
3 |
-
Version: 2.1.
|
4 |
Author: WPMU DEV
|
5 |
Author URI: http://premium.wpmudev.org/
|
6 |
Contributors: WPMUDEV
|
7 |
Tags: speed up wordpress, wordpress speed optimization, page speed, wordpress cache plugin, wordpress performance optimization, defer css javascript, minify css, critical css, lazy load
|
8 |
Requires at least: 4.6
|
9 |
-
Tested up to: 5.2.
|
10 |
Requires PHP: 5.3
|
11 |
-
Stable tag: 2.1.
|
12 |
License: GPLv2
|
13 |
License URI: http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
|
14 |
|
@@ -91,7 +91,7 @@ Hummingbird is here to help you: it’s a one of a kind WordPress performance op
|
|
91 |
|
92 |
You get our WordPress performance optimization suite, which includes minification and GZIP for small page sizes, full caching for faster loading, and integration with Cloudflare’s browser cache and our sister-plugin [Smush image optimization](https://wordpress.org/plugins/wp-smushit/).
|
93 |
|
94 |
-
Hummingbird is built with ease-of-use in mind: it makes your WordPress site faster, but it’s also fast to set up. You can scan your site and implement recommended changes in one-click, getting a fast site in mere minutes.
|
95 |
|
96 |
All the above is free and will speed up WordPress for you. **If you need the very fastest WordPress site, [you should get WPMU DEV Membership](https://premium.wpmudev.org/?utm_source=wordpress.org&utm_medium=readme&utm_campaign=hummingbird-readme&utm_content=you_should_get_wpmudev_membership#trial).**
|
97 |
|
@@ -170,6 +170,9 @@ Asset Optimization is a great way to speed up your site but moving, combining, m
|
|
170 |
|
171 |
== Changelog ==
|
172 |
|
|
|
|
|
|
|
173 |
= 2.1.0 ( 2019-08-29 ) =
|
174 |
- New: Add/remove new recipients for Uptime notifications
|
175 |
- New: Serve compressed versions of cached files
|
1 |
=== Hummingbird – Speed up, Cache, Optimize Your CSS and JS ===
|
2 |
Plugin Name: Hummingbird – Speed Up, Cache, Optimize CSS and JS
|
3 |
+
Version: 2.1.1
|
4 |
Author: WPMU DEV
|
5 |
Author URI: http://premium.wpmudev.org/
|
6 |
Contributors: WPMUDEV
|
7 |
Tags: speed up wordpress, wordpress speed optimization, page speed, wordpress cache plugin, wordpress performance optimization, defer css javascript, minify css, critical css, lazy load
|
8 |
Requires at least: 4.6
|
9 |
+
Tested up to: 5.2.3
|
10 |
Requires PHP: 5.3
|
11 |
+
Stable tag: 2.1.1
|
12 |
License: GPLv2
|
13 |
License URI: http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
|
14 |
|
91 |
|
92 |
You get our WordPress performance optimization suite, which includes minification and GZIP for small page sizes, full caching for faster loading, and integration with Cloudflare’s browser cache and our sister-plugin [Smush image optimization](https://wordpress.org/plugins/wp-smushit/).
|
93 |
|
94 |
+
Hummingbird is built with ease-of-use in mind: it makes your WordPress site faster, but it’s also fast to set up. You can scan your site and implement recommended changes in one-click, getting a fast site in mere minutes.
|
95 |
|
96 |
All the above is free and will speed up WordPress for you. **If you need the very fastest WordPress site, [you should get WPMU DEV Membership](https://premium.wpmudev.org/?utm_source=wordpress.org&utm_medium=readme&utm_campaign=hummingbird-readme&utm_content=you_should_get_wpmudev_membership#trial).**
|
97 |
|
170 |
|
171 |
== Changelog ==
|
172 |
|
173 |
+
= 2.1.1 ( 2019-09-10 ) =
|
174 |
+
- Fix: PHP Fatal Error on outdated PHP versions
|
175 |
+
|
176 |
= 2.1.0 ( 2019-08-29 ) =
|
177 |
- New: Add/remove new recipients for Uptime notifications
|
178 |
- New: Serve compressed versions of cached files
|
wp-hummingbird.php
CHANGED
@@ -1,7 +1,7 @@
|
|
1 |
<?php
|
2 |
/**
|
3 |
Plugin Name: Hummingbird
|
4 |
-
Version: 2.1.
|
5 |
Plugin URI: https://premium.wpmudev.org/project/wp-hummingbird/
|
6 |
Description: Hummingbird zips through your site finding new ways to make it load faster, from file compression and minification to browser caching – because when it comes to pagespeed, every millisecond counts.
|
7 |
Author: WPMU DEV
|
@@ -39,7 +39,7 @@ use Exception;
|
|
39 |
use WPMUDEV_Dashboard;
|
40 |
|
41 |
if ( ! defined( 'WPHB_VERSION' ) ) {
|
42 |
-
define( 'WPHB_VERSION', '2.1.
|
43 |
}
|
44 |
|
45 |
if ( ! defined( 'WPHB_SUI_VERSION' ) ) {
|
1 |
<?php
|
2 |
/**
|
3 |
Plugin Name: Hummingbird
|
4 |
+
Version: 2.1.1
|
5 |
Plugin URI: https://premium.wpmudev.org/project/wp-hummingbird/
|
6 |
Description: Hummingbird zips through your site finding new ways to make it load faster, from file compression and minification to browser caching – because when it comes to pagespeed, every millisecond counts.
|
7 |
Author: WPMU DEV
|
39 |
use WPMUDEV_Dashboard;
|
40 |
|
41 |
if ( ! defined( 'WPHB_VERSION' ) ) {
|
42 |
+
define( 'WPHB_VERSION', '2.1.1' );
|
43 |
}
|
44 |
|
45 |
if ( ! defined( 'WPHB_SUI_VERSION' ) ) {
|