Plugin Directory

Changeset 3174451


Ignore:
Timestamp:
10/23/2024 03:24:37 PM (16 months ago)
Author:
solidwp
Message:

Update to version 1.3.2 from GitHub

Location:
solid-performance
Files:
8 edited
1 copied

Legend:

Unmodified
Added
Removed
  • solid-performance/tags/1.3.2/readme.txt

    r3170205 r3174451  
    55Requires at least: 6.4
    66Tested up to: 6.6
    7 Stable tag: 1.3.1
     7Stable tag: 1.3.2
    88Requires PHP: 7.4
    99License: GPLv2 or later
     
    8989== Changelog ==
    9090
     91= 1.3.2 =
     92
     93#### Bug fixes
     94
     95* Updated HTML comment timestamps on cached files to use 24 hour time.
     96
    9197= 1.3.1 =
    9298
  • solid-performance/tags/1.3.2/solid-performance.php

    r3170205 r3174451  
    55 * Author: SolidWP
    66 * Author URI: https://go.solidwp.com/performance-author
    7  * Version: 1.3.1
     7 * Version: 1.3.2
    88 * Text Domain: solid-performance
    99 * Domain Path: /lang
  • solid-performance/tags/1.3.2/src/Performance/Page_Cache/Debug.php

    r3170205 r3174451  
    1212namespace SolidWP\Performance\Page_Cache;
    1313
    14 use DateTime;
     14use DateTimeImmutable;
    1515use SolidWP\Performance\Config\Config;
    1616use SolidWP\Performance\Http\Request;
     
    6666        }
    6767
    68         $date_time     = ( new DateTime( 'now', wp_timezone() ) )->format( 'Y-m-d h:i:s T' );
     68        $date_time     = $this->get_timestamp();
    6969        $engine        = str_pad( 'Engine:', $this->pad ) . 'Disk';
    7070        $creation_time = str_pad( 'Creation Time:', $this->pad ) . $request->start . 's';
     
    142142        }
    143143
    144         $date_time = ( new DateTime( 'now', wp_timezone() ) )->format( 'Y-m-d h:i:s T' );
    145 
    146144        return sprintf(
    147145            '
    148146<!-- Cached page generated by Solid Performance on %s -->',
    149             esc_html( $date_time )
     147            esc_html( $this->get_timestamp() )
    150148        );
    151149    }
     150
     151    /**
     152     * Get a timestamp using the configured timezone from the WP dashboard.
     153     *
     154     * @return string
     155     */
     156    private function get_timestamp(): string {
     157        return ( new DateTimeImmutable( 'now', wp_timezone() ) )->format( 'Y-m-d H:i:s T' );
     158    }
    152159}
  • solid-performance/tags/1.3.2/vendor/composer/installed.php

    r3170205 r3174451  
    22    'root' => array(
    33        'name' => 'ithemes/solid-performance',
    4         'pretty_version' => '1.3.1',
    5         'version' => '1.3.1.0',
    6         'reference' => '5b3109c2016eb993d2a0f118503604f37ad04ca1',
     4        'pretty_version' => '1.3.2',
     5        'version' => '1.3.2.0',
     6        'reference' => '19e76449ce4d5e440fd399a266f4633e3f8d6b50',
    77        'type' => 'wordpress-plugin',
    88        'install_path' => __DIR__ . '/../../',
     
    4848        ),
    4949        'ithemes/solid-performance' => array(
    50             'pretty_version' => '1.3.1',
    51             'version' => '1.3.1.0',
    52             'reference' => '5b3109c2016eb993d2a0f118503604f37ad04ca1',
     50            'pretty_version' => '1.3.2',
     51            'version' => '1.3.2.0',
     52            'reference' => '19e76449ce4d5e440fd399a266f4633e3f8d6b50',
    5353            'type' => 'wordpress-plugin',
    5454            'install_path' => __DIR__ . '/../../',
  • solid-performance/trunk/readme.txt

    r3170205 r3174451  
    55Requires at least: 6.4
    66Tested up to: 6.6
    7 Stable tag: 1.3.1
     7Stable tag: 1.3.2
    88Requires PHP: 7.4
    99License: GPLv2 or later
     
    8989== Changelog ==
    9090
     91= 1.3.2 =
     92
     93#### Bug fixes
     94
     95* Updated HTML comment timestamps on cached files to use 24 hour time.
     96
    9197= 1.3.1 =
    9298
  • solid-performance/trunk/solid-performance.php

    r3170205 r3174451  
    55 * Author: SolidWP
    66 * Author URI: https://go.solidwp.com/performance-author
    7  * Version: 1.3.1
     7 * Version: 1.3.2
    88 * Text Domain: solid-performance
    99 * Domain Path: /lang
  • solid-performance/trunk/src/Performance/Page_Cache/Debug.php

    r3170205 r3174451  
    1212namespace SolidWP\Performance\Page_Cache;
    1313
    14 use DateTime;
     14use DateTimeImmutable;
    1515use SolidWP\Performance\Config\Config;
    1616use SolidWP\Performance\Http\Request;
     
    6666        }
    6767
    68         $date_time     = ( new DateTime( 'now', wp_timezone() ) )->format( 'Y-m-d h:i:s T' );
     68        $date_time     = $this->get_timestamp();
    6969        $engine        = str_pad( 'Engine:', $this->pad ) . 'Disk';
    7070        $creation_time = str_pad( 'Creation Time:', $this->pad ) . $request->start . 's';
     
    142142        }
    143143
    144         $date_time = ( new DateTime( 'now', wp_timezone() ) )->format( 'Y-m-d h:i:s T' );
    145 
    146144        return sprintf(
    147145            '
    148146<!-- Cached page generated by Solid Performance on %s -->',
    149             esc_html( $date_time )
     147            esc_html( $this->get_timestamp() )
    150148        );
    151149    }
     150
     151    /**
     152     * Get a timestamp using the configured timezone from the WP dashboard.
     153     *
     154     * @return string
     155     */
     156    private function get_timestamp(): string {
     157        return ( new DateTimeImmutable( 'now', wp_timezone() ) )->format( 'Y-m-d H:i:s T' );
     158    }
    152159}
  • solid-performance/trunk/vendor/composer/installed.php

    r3170205 r3174451  
    22    'root' => array(
    33        'name' => 'ithemes/solid-performance',
    4         'pretty_version' => '1.3.1',
    5         'version' => '1.3.1.0',
    6         'reference' => '5b3109c2016eb993d2a0f118503604f37ad04ca1',
     4        'pretty_version' => '1.3.2',
     5        'version' => '1.3.2.0',
     6        'reference' => '19e76449ce4d5e440fd399a266f4633e3f8d6b50',
    77        'type' => 'wordpress-plugin',
    88        'install_path' => __DIR__ . '/../../',
     
    4848        ),
    4949        'ithemes/solid-performance' => array(
    50             'pretty_version' => '1.3.1',
    51             'version' => '1.3.1.0',
    52             'reference' => '5b3109c2016eb993d2a0f118503604f37ad04ca1',
     50            'pretty_version' => '1.3.2',
     51            'version' => '1.3.2.0',
     52            'reference' => '19e76449ce4d5e440fd399a266f4633e3f8d6b50',
    5353            'type' => 'wordpress-plugin',
    5454            'install_path' => __DIR__ . '/../../',
Note: See TracChangeset for help on using the changeset viewer.