Changeset 2547636
- Timestamp:
- 06/14/2021 05:56:59 PM (5 years ago)
- Location:
- speedien
- Files:
-
- 6 edited
- 9 copied
-
assets/banner-1544x500.png (modified) (previous)
-
assets/banner-772x250.png (modified) (previous)
-
tags/1.0.4 (copied) (copied from speedien/trunk)
-
tags/1.0.4/advanced-cache.php (copied) (copied from speedien/trunk/advanced-cache.php) (2 diffs)
-
tags/1.0.4/readme.txt (copied) (copied from speedien/trunk/readme.txt) (3 diffs)
-
tags/1.0.4/speedien.php (copied) (copied from speedien/trunk/speedien.php) (1 diff)
-
tags/1.0.4/speedien_admin_bar.php (copied) (copied from speedien/trunk/speedien_admin_bar.php)
-
tags/1.0.4/speedien_admin_notice.php (copied) (copied from speedien/trunk/speedien_admin_notice.php)
-
tags/1.0.4/speedien_cache.php (copied) (copied from speedien/trunk/speedien_cache.php) (1 diff)
-
tags/1.0.4/speedien_purge_hooks.php (copied) (copied from speedien/trunk/speedien_purge_hooks.php)
-
tags/1.0.4/speedien_ui.php (copied) (copied from speedien/trunk/speedien_ui.php)
-
trunk/advanced-cache.php (modified) (2 diffs)
-
trunk/readme.txt (modified) (3 diffs)
-
trunk/speedien.php (modified) (1 diff)
-
trunk/speedien_cache.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
speedien/tags/1.0.4/advanced-cache.php
r2547635 r2547636 9 9 } 10 10 11 if(!empty($_GET['no-optimization'])) { 12 return false; 13 } 14 11 15 if (!empty($_COOKIE)) { 12 16 if(!empty($_COOKIE['wordpress_no_cache'])) 13 17 { 14 if($_COOKIE['wordpress_no_cache'] !== ' speedien')18 if($_COOKIE['wordpress_no_cache'] !== 'preview') 15 19 { 16 20 $bypass_cache = 1; … … 27 31 { 28 32 $query = ''; 29 $get = array_map( 'sanitize_text_field', $_GET ); 30 foreach($get as $k => $v) 33 foreach($_GET as $k => $v) 31 34 { 35 if($k == 's') 36 { 37 return false; 38 } 32 39 if(strpos($k, 'utm') !== false) 33 40 { -
speedien/tags/1.0.4/readme.txt
r2547635 r2547636 5 5 Tested up to: 5.7 6 6 Requires PHP: 5.6 7 Stable tag: 1.0. 37 Stable tag: 1.0.4 8 8 License: GPLv2 or later 9 9 License URI: https://www.gnu.org/licenses/gpl-2.0.html … … 62 62 All paid subscriptions have access to 24x7 priority support with 1 hour response time or less 63 63 64 ## Known incompatible plugins 65 66 This plugin contains functionality that overlaps with the following plugins. It is recommended that you deactivate these plugins when using core web vitals booster. 67 68 * Autoptimize 69 * Breeze 70 * Comet Cache by WP Sharks 71 * EWWW Image Optimizer 72 * Hummingbird 73 * Imagify 74 * JetPack 75 * Lazy Load 76 * Litespeed Cache 77 * Nitropack 78 * PageSpeed Ninja 79 * Perfmatters 80 * PhastPress 81 * SG Optimizer 82 * ShortPixel 83 * Smush 84 * Swift Performance 85 * Swift Performance 86 * W3 Total Cache 87 * WP Fastest Cache 88 * WP Meteor 89 * WP Optimize 90 * WP Rocket 91 * WP Super Cache 92 64 93 ## 3rd Party Services Used By The Speedien Plugin 65 94 … … 108 137 == Changelog == 109 138 139 = 1.0.4 - 14 Jun, 2021 = 140 - Improved javascript optimization 141 - Improved cache handling 142 - Added cache bypass mechanism using cookies or query parameters 143 110 144 = 1.0.3 - 19 Apr, 2021 = 111 145 - Added support for preloading cache via Speedien console -
speedien/tags/1.0.4/speedien.php
r2547635 r2547636 7 7 * Text Domain: speedien 8 8 * Domain Path: / 9 * Version: 1.0. 39 * Version: 1.0.4 10 10 */ 11 11 -
speedien/tags/1.0.4/speedien_cache.php
r2547635 r2547636 20 20 21 21 if (!isset($_SERVER['REQUEST_METHOD']) || !in_array($_SERVER['REQUEST_METHOD'], ['HEAD', 'GET'])) { 22 $bypass_cache = 1; 23 } 24 25 if(!empty($_GET['s']) || !empty($_GET['no-optimization'])) { 22 26 $bypass_cache = 1; 23 27 } -
speedien/trunk/advanced-cache.php
r2505608 r2547636 9 9 } 10 10 11 if(!empty($_GET['no-optimization'])) { 12 return false; 13 } 14 11 15 if (!empty($_COOKIE)) { 12 16 if(!empty($_COOKIE['wordpress_no_cache'])) 13 17 { 14 if($_COOKIE['wordpress_no_cache'] !== ' speedien')18 if($_COOKIE['wordpress_no_cache'] !== 'preview') 15 19 { 16 20 $bypass_cache = 1; … … 27 31 { 28 32 $query = ''; 29 $get = array_map( 'sanitize_text_field', $_GET ); 30 foreach($get as $k => $v) 33 foreach($_GET as $k => $v) 31 34 { 35 if($k == 's') 36 { 37 return false; 38 } 32 39 if(strpos($k, 'utm') !== false) 33 40 { -
speedien/trunk/readme.txt
r2517881 r2547636 5 5 Tested up to: 5.7 6 6 Requires PHP: 5.6 7 Stable tag: 1.0. 37 Stable tag: 1.0.4 8 8 License: GPLv2 or later 9 9 License URI: https://www.gnu.org/licenses/gpl-2.0.html … … 62 62 All paid subscriptions have access to 24x7 priority support with 1 hour response time or less 63 63 64 ## Known incompatible plugins 65 66 This plugin contains functionality that overlaps with the following plugins. It is recommended that you deactivate these plugins when using core web vitals booster. 67 68 * Autoptimize 69 * Breeze 70 * Comet Cache by WP Sharks 71 * EWWW Image Optimizer 72 * Hummingbird 73 * Imagify 74 * JetPack 75 * Lazy Load 76 * Litespeed Cache 77 * Nitropack 78 * PageSpeed Ninja 79 * Perfmatters 80 * PhastPress 81 * SG Optimizer 82 * ShortPixel 83 * Smush 84 * Swift Performance 85 * Swift Performance 86 * W3 Total Cache 87 * WP Fastest Cache 88 * WP Meteor 89 * WP Optimize 90 * WP Rocket 91 * WP Super Cache 92 64 93 ## 3rd Party Services Used By The Speedien Plugin 65 94 … … 108 137 == Changelog == 109 138 139 = 1.0.4 - 14 Jun, 2021 = 140 - Improved javascript optimization 141 - Improved cache handling 142 - Added cache bypass mechanism using cookies or query parameters 143 110 144 = 1.0.3 - 19 Apr, 2021 = 111 145 - Added support for preloading cache via Speedien console -
speedien/trunk/speedien.php
r2517881 r2547636 7 7 * Text Domain: speedien 8 8 * Domain Path: / 9 * Version: 1.0. 39 * Version: 1.0.4 10 10 */ 11 11 -
speedien/trunk/speedien_cache.php
r2517881 r2547636 20 20 21 21 if (!isset($_SERVER['REQUEST_METHOD']) || !in_array($_SERVER['REQUEST_METHOD'], ['HEAD', 'GET'])) { 22 $bypass_cache = 1; 23 } 24 25 if(!empty($_GET['s']) || !empty($_GET['no-optimization'])) { 22 26 $bypass_cache = 1; 23 27 }
Note: See TracChangeset
for help on using the changeset viewer.