Plugin Directory

Changeset 2981215


Ignore:
Timestamp:
10/19/2023 01:53:06 PM (2 years ago)
Author:
Alignak
Message:

v3.4.1

Location:
fast-velocity-minify
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • fast-velocity-minify/tags/3.3.8/fvm.php

    r2840031 r2981215  
    77Author URI: http://fastvelocity.com
    88Text Domain: fast-velocity-minify
    9 Version: 3.3.8
     9Version: 3.3.9
    1010License: GPL2
    1111
  • fast-velocity-minify/trunk/fvm.php

    r2868803 r2981215  
    44 * Plugin URI: https://www.upwork.com/fl/raulpeixoto
    55 * 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.0
     6 * Version: 3.4.1
    77 * Author: Raul Peixoto
    88 * Author URI: https://www.upwork.com/fl/raulpeixoto
  • fast-velocity-minify/trunk/inc/frontend.php

    r2852233 r2981215  
    123123            # START CSS LOOP
    124124            foreach($allcss as $k=>$tag) {
    125                
     125
    126126                # mediatypes
    127127                if(isset($tag->media)) {
     
    147147                # START CSS FILES
    148148                if($tag->tag == 'link' && isset($tag->href)) {
     149                   
     150                    # remove integrity checks
     151                    if ($tag->hasAttribute('integrity')) {
     152                        $tag->removeAttribute('integrity');
     153                    }
    149154                   
    150155                    # filter url
     
    533538                    # START JS FILES
    534539                    if(isset($tag->src)) {
     540                       
     541                        # remove integrity checks
     542                        if ($tag->hasAttribute('integrity')) {
     543                            $tag->removeAttribute('integrity');
     544                        }
    535545                       
    536546                        # filter url
  • fast-velocity-minify/trunk/readme.txt

    r2868803 r2981215  
    44Requires at least: 5.6
    55Requires PHP: 7.2
    6 Stable tag: 3.4.0
    7 Tested up to: 6.1.3
     6Stable tag: 3.4.1
     7Tested up to: 6.3.3
    88Text Domain: fast-velocity-minify
    99License: GPLv3 or later
     
    5050== Changelog ==
    5151
    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] =
    5356* better third party cache plugins detection
    5457
    55 = 3.3.9 [2022.01.21] =
     58= 3.3.9 [2023.01.21] =
    5659* fixed a bug with PHP 8.1 detected encodings and a few notices
    5760
Note: See TracChangeset for help on using the changeset viewer.