Plugin Directory

Changeset 3379192


Ignore:
Timestamp:
10/16/2025 03:30:54 AM (2 months ago)
Author:
LiteSpeedTech
Message:

Release v7.6.1

Location:
litespeed-cache
Files:
342 added
7 edited

Legend:

Unmodified
Added
Removed
  • litespeed-cache/trunk/assets/css/litespeed.css

    r3379049 r3379192  
    1 @import url('litespeed-dark-mode.css?v=48');
    2 
    31@font-face {
    42  font-family: "litespeedfont";
  • litespeed-cache/trunk/litespeed-cache.php

    r3379049 r3379192  
    44 * Plugin URI:        https://www.litespeedtech.com/products/cache-plugins/wordpress-acceleration
    55 * Description:       High-performance page caching and site optimization from LiteSpeed
    6  * Version:           7.6
     6 * Version:           7.6.1
    77 * Author:            LiteSpeed Technologies
    88 * Author URI:        https://www.litespeedtech.com
     
    3636}
    3737
    38 ! defined( 'LSCWP_V' ) && define( 'LSCWP_V', '7.6' );
     38! defined( 'LSCWP_V' ) && define( 'LSCWP_V', '7.6.1' );
    3939
    4040! defined( 'LSCWP_CONTENT_DIR' ) && define( 'LSCWP_CONTENT_DIR', WP_CONTENT_DIR );
  • litespeed-cache/trunk/readme.txt

    r3379049 r3379192  
    55Requires PHP: 7.2
    66Tested up to: 6.8
    7 Stable tag: 7.6
     7Stable tag: 7.6.1
    88License: GPLv3
    99License URI: http://www.gnu.org/licenses/gpl.html
     
    257257
    258258== Changelog ==
     259
     260= 7.6.1 - Oct 15 2025 =
     261* **Cloud** Increased POST connection timeout to prevent potential failures.
     262* ⚠️🐞**GUI** Fixed a frontend display issue caused by the dark mode CSS file loading on the website frontend. (Peter Wells PR#923)
     263* 🐞**Page Optimize** Corrected a typo in the DNS prefetch filter. (Yaroslav Yachmenov PR#922)
    259264
    260265= 7.6 - Oct 15 2025 =
  • litespeed-cache/trunk/src/admin-display.cls.php

    r3379049 r3379192  
    402402    public function enqueue_style() {
    403403        wp_enqueue_style( Core::PLUGIN_NAME, LSWCP_PLUGIN_URL . 'assets/css/litespeed.css', array(), Core::VER, 'all' );
     404        wp_enqueue_style( Core::PLUGIN_NAME . '-dark-mode', LSWCP_PLUGIN_URL . 'assets/css/litespeed-dark-mode.css', array(), Core::VER, 'all' );
    404405    }
    405406
  • litespeed-cache/trunk/src/cloud.cls.php

    r3379049 r3379192  
    237237
    238238        // WPAPI REST echo dryrun
    239         $echobox = self::post( self::API_REST_ECHO );
     239        $echobox = self::post( self::API_REST_ECHO, false, 60 );
    240240        if ( false === $echobox ) {
    241241            self::debugErr( 'REST Echo Failed!' );
     
    322322
    323323        // WPAPI REST echo dryrun
    324         $echobox = self::post( self::API_REST_ECHO );
     324        $echobox = self::post( self::API_REST_ECHO, false, 60 );
    325325        if ( false === $echobox ) {
    326326            self::debugErr( 'REST Echo Failed!' );
     
    15951595            [
    15961596                'body'    => $param,
    1597                 'timeout' => $time_out ?? 15,
     1597                'timeout' => $time_out ? $time_out : 30,
    15981598                'headers' => [
    15991599                    'Accept' => 'application/json',
  • litespeed-cache/trunk/src/optimize.cls.php

    r3352087 r3379192  
    707707        }
    708708        if ('preconnect' === $relation_type) {
    709             foreach ($this->dns_prefetch as $v) {
     709            foreach ($this->dns_preconnect as $v) {
    710710                if ($v) {
    711711                    $urls[] = $v;
  • litespeed-cache/trunk/tpl/toolbox/beta_test.tpl.php

    r3379049 r3379192  
    1515// List of available public versions
    1616$v_list = array(
     17    '7.6.1',
    1718    '7.6',
    1819    '7.5.0.1',
Note: See TracChangeset for help on using the changeset viewer.