Plugin Directory

Changeset 3010716


Ignore:
Timestamp:
12/15/2023 11:27:20 PM (2 years ago)
Author:
LiteSpeedTech
Message:

Release v6.0.0.1

Location:
litespeed-cache
Files:
337 added
4 edited

Legend:

Unmodified
Added
Removed
  • litespeed-cache/trunk/litespeed-cache.php

    r3009052 r3010716  
    55 * Plugin URI:        https://www.litespeedtech.com/products/cache-plugins/wordpress-acceleration
    66 * Description:       High-performance page caching and site optimization from LiteSpeed
    7  * Version:           6.0
     7 * Version:           6.0.0.1
    88 * Author:            LiteSpeed Technologies
    99 * Author URI:        https://www.litespeedtech.com
     
    3535}
    3636
    37 !defined('LSCWP_V') && define('LSCWP_V', '6.0');
     37!defined('LSCWP_V') && define('LSCWP_V', '6.0.0.1');
    3838
    3939!defined('LSCWP_CONTENT_DIR') && define('LSCWP_CONTENT_DIR', WP_CONTENT_DIR);
  • litespeed-cache/trunk/readme.txt

    r3009052 r3010716  
    44Requires at least: 4.0
    55Tested up to: 6.4.2
    6 Stable tag: 6.0
     6Stable tag: 6.0.0.1
    77License: GPLv3
    88License URI: http://www.gnu.org/licenses/gpl.html
     
    251251== Changelog ==
    252252
     253= 6.0.0.1 - Dec 15 2023 =
     254* 🐞**Image Optimize** Grouped the taken notification to regional center servers to reduce the load after image pulled.
     255
    253256= 6.0 - Dec 12 2023 =
    254257* 🌱**Image Optimize** Parallel pull. (⭐ Contributed by Peter Wells #581)
  • litespeed-cache/trunk/src/img-optm.cls.php

    r3009052 r3010716  
    11561156                }
    11571157            }
    1158 
    1159             // Notify IAPI images taken
    1160             foreach ($server_list as $server => $img_list) {
    1161                 $data = array(
    1162                     'action' => self::CLOUD_ACTION_TAKEN,
    1163                     'list' => $img_list,
    1164                     'server' => $server,
    1165                 );
    1166                 // TODO: improve this so we do not call once per server, but just once and then filter on the server side
    1167                 Cloud::post(Cloud::SVC_IMG_OPTM, $data);
    1168             }
     1158        }
     1159
     1160        // Notify IAPI images taken
     1161        foreach ($server_list as $server => $img_list) {
     1162            $data = array(
     1163                'action'    => self::CLOUD_ACTION_TAKEN,
     1164                'list'      => $img_list,
     1165                'server'    => $server,
     1166            );
     1167            // TODO: improve this so we do not call once per server, but just once and then filter on the server side
     1168            Cloud::post(Cloud::SVC_IMG_OPTM, $data);
    11691169        }
    11701170
     
    20522052                break;
    20532053
    2054             /**
    2055             * Batch switch
    2056             * @since 1.6.3
    2057             */
     2054                /**
     2055                * Batch switch
     2056                * @since 1.6.3
     2057                */
    20582058            case self::TYPE_BATCH_SWITCH_ORI:
    20592059            case self::TYPE_BATCH_SWITCH_OPTM:
  • litespeed-cache/trunk/tpl/toolbox/beta_test.tpl.php

    r3009052 r3010716  
    77// Existing public version list
    88$v_list = array(
    9     '6.0',
     9    '6.0.0.1',
    1010    '5.7.0.1',
    1111    '5.6',
Note: See TracChangeset for help on using the changeset viewer.