Version Description
- Fix: Revised duration for browser cacheable objects
Download this release
Release Info
Developer | adeelkhan |
Plugin | Breeze – WordPress Cache Plugin |
Version | 1.1.5 |
Comparing to | |
See all releases |
Code changes from version 1.1.4 to 1.1.5
- breeze.php +2 -2
- inc/breeze-configuration.php +20 -17
- readme.txt +4 -1
breeze.php
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
/**
|
3 |
* Plugin Name: Breeze
|
4 |
* Description: Breeze is a WordPress cache plugin with extensive options to speed up your website. All the options including Varnish Cache are compatible with Cloudways hosting.
|
5 |
-
* Version: 1.1.
|
6 |
* Text Domain: breeze
|
7 |
* Domain Path: /languages
|
8 |
* Author: Cloudways
|
@@ -37,7 +37,7 @@ if ( ! defined( 'BREEZE_PLUGIN_DIR' ) ) {
|
|
37 |
define( 'BREEZE_PLUGIN_DIR', plugin_dir_path( __FILE__ ) );
|
38 |
}
|
39 |
if ( ! defined( 'BREEZE_VERSION' ) ) {
|
40 |
-
define( 'BREEZE_VERSION', '1.1.
|
41 |
}
|
42 |
if ( ! defined( 'BREEZE_SITEURL' ) ) {
|
43 |
define( 'BREEZE_SITEURL', get_site_url() );
|
2 |
/**
|
3 |
* Plugin Name: Breeze
|
4 |
* Description: Breeze is a WordPress cache plugin with extensive options to speed up your website. All the options including Varnish Cache are compatible with Cloudways hosting.
|
5 |
+
* Version: 1.1.5
|
6 |
* Text Domain: breeze
|
7 |
* Domain Path: /languages
|
8 |
* Author: Cloudways
|
37 |
define( 'BREEZE_PLUGIN_DIR', plugin_dir_path( __FILE__ ) );
|
38 |
}
|
39 |
if ( ! defined( 'BREEZE_VERSION' ) ) {
|
40 |
+
define( 'BREEZE_VERSION', '1.1.5' );
|
41 |
}
|
42 |
if ( ! defined( 'BREEZE_SITEURL' ) ) {
|
43 |
define( 'BREEZE_SITEURL', get_site_url() );
|
inc/breeze-configuration.php
CHANGED
@@ -237,23 +237,26 @@ class Breeze_Configuration{
|
|
237 |
$args['clean'] = true;
|
238 |
} else {
|
239 |
$args['content'] = 'SetEnv BREEZE_BROWSER_CACHE_ON 1' . PHP_EOL .
|
240 |
-
|
241 |
-
|
242 |
-
|
243 |
-
|
244 |
-
|
245 |
-
|
246 |
-
|
247 |
-
|
248 |
-
|
249 |
-
|
250 |
-
|
251 |
-
|
252 |
-
|
253 |
-
|
254 |
-
|
255 |
-
|
256 |
-
|
|
|
|
|
|
|
257 |
|
258 |
$args['conditions'] = array(
|
259 |
'mod_expires',
|
237 |
$args['clean'] = true;
|
238 |
} else {
|
239 |
$args['content'] = 'SetEnv BREEZE_BROWSER_CACHE_ON 1' . PHP_EOL .
|
240 |
+
'<IfModule mod_expires.c>' . PHP_EOL .
|
241 |
+
' ExpiresActive On' . PHP_EOL .
|
242 |
+
' ExpiresByType image/gif "access 1 year"' . PHP_EOL .
|
243 |
+
' ExpiresByType image/jpg "access 1 year"' . PHP_EOL .
|
244 |
+
' ExpiresByType image/jpeg "access 1 year"' . PHP_EOL .
|
245 |
+
' ExpiresByType image/png "access 1 year"' . PHP_EOL .
|
246 |
+
' ExpiresByType image/x-icon "access 1 year"' . PHP_EOL .
|
247 |
+
' ExpiresByType text/html "access plus 0 seconds"' . PHP_EOL .
|
248 |
+
' ExpiresByType text/xml "access plus 0 seconds"' . PHP_EOL .
|
249 |
+
' ExpiresByType text/css "access 1 month"' . PHP_EOL .
|
250 |
+
' ExpiresByType text/javascript "access 1 month"' . PHP_EOL .
|
251 |
+
' ExpiresByType application/xml "access plus 0 seconds"' . PHP_EOL .
|
252 |
+
' ExpiresByType application/json "access plus 0 seconds"' . PHP_EOL .
|
253 |
+
' ExpiresByType application/javascript "access 1 month"' . PHP_EOL .
|
254 |
+
' ExpiresByType application/x-javascript "access 1 month"' . PHP_EOL .
|
255 |
+
' ExpiresByType application/xhtml-xml "access 1 month"' . PHP_EOL .
|
256 |
+
' ExpiresByType application/pdf "access 1 month"' . PHP_EOL .
|
257 |
+
' ExpiresByType application/x-shockwave-flash "access 1 month"' . PHP_EOL .
|
258 |
+
' ExpiresDefault "access 1 month"' . PHP_EOL .
|
259 |
+
'</IfModule>' . PHP_EOL;
|
260 |
|
261 |
$args['conditions'] = array(
|
262 |
'mod_expires',
|
readme.txt
CHANGED
@@ -3,7 +3,7 @@ Contributors: Cloudways
|
|
3 |
Tags: cache,caching, performance, wp-cache, cdn, combine, compress, speed plugin, database cache,gzip, http compression, js cache, minify, optimize, page cache, performance, speed, expire headers
|
4 |
Requires at least: 4.5
|
5 |
Tested up to: 5.3
|
6 |
-
Stable tag: 1.1.
|
7 |
License: GPLv2 or later
|
8 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
9 |
|
@@ -145,6 +145,9 @@ Using Gzip, Breeze compresses the request files, further reducing the size of th
|
|
145 |
|
146 |
== Changelog ==
|
147 |
|
|
|
|
|
|
|
148 |
= 1.1.4 =
|
149 |
* Fix: PHP Fatal error while running commands through WP_CLI
|
150 |
|
3 |
Tags: cache,caching, performance, wp-cache, cdn, combine, compress, speed plugin, database cache,gzip, http compression, js cache, minify, optimize, page cache, performance, speed, expire headers
|
4 |
Requires at least: 4.5
|
5 |
Tested up to: 5.3
|
6 |
+
Stable tag: 1.1.5
|
7 |
License: GPLv2 or later
|
8 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
9 |
|
145 |
|
146 |
== Changelog ==
|
147 |
|
148 |
+
= 1.1.5 =
|
149 |
+
* Fix: Revised duration for browser cacheable objects
|
150 |
+
|
151 |
= 1.1.4 =
|
152 |
* Fix: PHP Fatal error while running commands through WP_CLI
|
153 |
|