💦 FULL SET: Changeset/ - Full Archive

Changeset 3226179


Ignore:
Timestamp:
01/21/2025 12:38:21 PM (11 months ago)
Author:
aguidrevitch
Message:
  • JavaScript Exclusions: Resolved minor issues to ensure smoother handling of excluded scripts.
  • Conflicting Plugins List: Updated the list of known conflicting plugins for improved compatibility and seamless integration.
Location:
fastpixel-website-accelerator
Files:
2 added
12 edited

Legend:

Unmodified
Added
Removed
  • fastpixel-website-accelerator/trunk/inc/backend/controllers/tabs/javascript.php

    r3223801 r3226179  
    114114            $description .= '<br/><br/>' . esc_html__('Example:', 'fastpixel-website-accelerator') . '&nbsp;' . esc_url(home_url('/wp-includes/js/jquery/jquery.js'));
    115115            $this->be_functions->print_textarea([
    116                 'field_name'  => 'fastpixel_javascript_excludes_regexp',
     116                'field_name'  => 'fastpixel_javascript_excludes',
    117117                'field_value' => $excludes,
    118118                'label'       => $args['label'],
  • fastpixel-website-accelerator/trunk/inc/backend/models/diag-tests/conflicting-plugins.php

    r3212290 r3226179  
    1919            'WP Fastest Cache'                     => 'wp-fastest-cache/wpFastestCache.php',
    2020            'PhastPress'                           => 'phastpress/phastpress.php',
    21             'Perfmatters'                          => '',
     21            'Perfmatters'                          => 'perfmatters/perfmatters.php',
    2222            'WP Super Cache'                       => 'wp-super-cache/wp-cache.php',
    2323            'LiteSpeed Cache'                      => 'litespeed-cache/litespeed-cache.php',
     
    3838            'Jetpack Boost'                          => 'jetpack-boost/jetpack-boost.php',
    3939            'Asset CleanUp: Page Speed Booster'      => 'wp-asset-clean-up/wpacu.php',
     40            'BerqWP'                                 => 'searchpro/berqwp.php'
    4041        ];
    4142        protected $conflicting_plugins_tested = [];
     
    109110                $plugins["PhastPress"]['status'] = false;
    110111            }
     112            if (is_plugin_active($this->conflicting_plugins["Perfmatters"]) || defined('PERFMATTERS_VERSION')
     113                || class_exists('Perfmatters\Config')) { // Perfmatters
     114                $plugins["Perfmatters"]['status'] = false;
     115            }
    111116            if (defined('WPCACHEHOME') && function_exists("wp_cache_phase2")) { // WP Super Cache
    112117                $plugins["WP Super Cache"]['status'] = false;
     
    183188                $plugins["WP-Optimize - Clean, Compress, Cache"]['status'] = false;
    184189            }
    185            
     190
     191            if (is_plugin_active($this->conflicting_plugins["BerqWP"]) || defined('BERQWP_VERSION')) { // WP-Optimize
     192                $plugins["BerqWP"]['status'] = false;
     193            }
     194
    186195            $plugin_id = 0;
    187196            foreach ($plugins as $plugin_name => $passed) {
  • fastpixel-website-accelerator/trunk/readme.txt

    r3223801 r3226179  
    55Tested up to: 6.7
    66Requires PHP: 5.6
    7 Stable tag: 1.0.39
     7Stable tag: 1.0.40
    88License: GPLv2 or later
    99License URI: https://www.gnu.org/licenses/gpl-2.0.html
     
    1831833. Settings page - Cache status
    184184
    185 4. Settings page - Main settings
    186 
    187 5. Settings page - JavaScript settings
    188 
    189 6. Settings page - Diagnostics
     1854. Settings page - Presets
     186
     1875. Settings page - Main settings
     188
     1896. Settings page - JavaScript settings
     190
     1917. Settings page - Images
     192
     1938. Settings page - Fonts
     194
     1959. Settings page - Diagnostics
     196
     19710. Help Center
    190198
    191199
    192200
    193201== Changelog ==
     202
     203= 1.0.40 =
     204🛠️ Maintenance Update
     205Release Date: January 21, 2025
     206⚙️Fixes & Improvements:
     207* JavaScript Exclusions: Resolved minor issues to ensure smoother handling of excluded scripts.
     208* Conflicting Plugins List: Updated the list of known conflicting plugins for improved compatibility and seamless integration.
     209
     210Stay up-to-date and keep your site running at peak performance! 🚀
    194211
    195212= 1.0.39 =
     
    201218🛠️ Bug Fixes
    202219* Minor Bug Fixes: We've addressed small issues to ensure a more stable and reliable performance.
    203 * Update now to experience a faster, easier, and better way to optimize your website!
     220
     221Update now to experience a faster, easier, and better way to optimize your website!
    204222
    205223= 1.0.38 =
  • fastpixel-website-accelerator/trunk/vendor/composer/installed.php

    r3223801 r3226179  
    44        'pretty_version' => 'dev-main',
    55        'version' => 'dev-main',
    6         'reference' => '29b447c2bae3b88d70907f9c85e03c54a1acf5c3',
     6        'reference' => 'a166890cb9e7d49b83ee3dd840e0183aa1de84b4',
    77        'type' => 'wordpress-plugin',
    88        'install_path' => __DIR__ . '/../../',
     
    1414            'pretty_version' => 'dev-main',
    1515            'version' => 'dev-main',
    16             'reference' => '29b447c2bae3b88d70907f9c85e03c54a1acf5c3',
     16            'reference' => 'a166890cb9e7d49b83ee3dd840e0183aa1de84b4',
    1717            'type' => 'wordpress-plugin',
    1818            'install_path' => __DIR__ . '/../../',
Note: See TracChangeset for help on using the changeset viewer.