Changeset 2981215
- Timestamp:
- 10/19/2023 01:53:06 PM (2 years ago)
- Location:
- fast-velocity-minify
- Files:
-
- 4 edited
-
tags/3.3.8/fvm.php (modified) (1 diff)
-
trunk/fvm.php (modified) (1 diff)
-
trunk/inc/frontend.php (modified) (3 diffs)
-
trunk/readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
fast-velocity-minify/tags/3.3.8/fvm.php
r2840031 r2981215 7 7 Author URI: http://fastvelocity.com 8 8 Text Domain: fast-velocity-minify 9 Version: 3.3. 89 Version: 3.3.9 10 10 License: GPL2 11 11 -
fast-velocity-minify/trunk/fvm.php
r2868803 r2981215 4 4 * Plugin URI: https://www.upwork.com/fl/raulpeixoto 5 5 * Description: Improve your speed score on GTmetrix, Pingdom Tools and Google PageSpeed Insights by merging and minifying CSS and JavaScript files into groups, compressing HTML and other speed optimizations. 6 * Version: 3.4. 06 * Version: 3.4.1 7 7 * Author: Raul Peixoto 8 8 * Author URI: https://www.upwork.com/fl/raulpeixoto -
fast-velocity-minify/trunk/inc/frontend.php
r2852233 r2981215 123 123 # START CSS LOOP 124 124 foreach($allcss as $k=>$tag) { 125 125 126 126 # mediatypes 127 127 if(isset($tag->media)) { … … 147 147 # START CSS FILES 148 148 if($tag->tag == 'link' && isset($tag->href)) { 149 150 # remove integrity checks 151 if ($tag->hasAttribute('integrity')) { 152 $tag->removeAttribute('integrity'); 153 } 149 154 150 155 # filter url … … 533 538 # START JS FILES 534 539 if(isset($tag->src)) { 540 541 # remove integrity checks 542 if ($tag->hasAttribute('integrity')) { 543 $tag->removeAttribute('integrity'); 544 } 535 545 536 546 # filter url -
fast-velocity-minify/trunk/readme.txt
r2868803 r2981215 4 4 Requires at least: 5.6 5 5 Requires PHP: 7.2 6 Stable tag: 3.4. 07 Tested up to: 6. 1.36 Stable tag: 3.4.1 7 Tested up to: 6.3.3 8 8 Text Domain: fast-velocity-minify 9 9 License: GPLv3 or later … … 50 50 == Changelog == 51 51 52 = 3.4.0 [2022.02.21] = 52 = 3.4.1 [2023.10.19] = 53 * removed integrity attributes on minified files 54 55 = 3.4.0 [2023.02.21] = 53 56 * better third party cache plugins detection 54 57 55 = 3.3.9 [202 2.01.21] =58 = 3.3.9 [2023.01.21] = 56 59 * fixed a bug with PHP 8.1 detected encodings and a few notices 57 60
Note: See TracChangeset
for help on using the changeset viewer.