Plugin Directory

Changeset 3444067


Ignore:
Timestamp:
01/21/2026 12:23:28 PM (4 weeks ago)
Author:
rilwis
Message:

Update to version 2.9.3 from GitHub

Location:
falcon
Files:
8 edited
1 copied

Legend:

Unmodified
Added
Removed
  • falcon/tags/2.9.3/falcon.php

    r3425736 r3444067  
    44 * Plugin URI:  https://wpfalcon.pro
    55 * Description: WordPress optimizations & tweaks
    6  * Version:     2.9.2
     6 * Version:     2.9.3
    77 * Author:      eLightUp
    88 * Author URI:  https://elightup.com
  • falcon/tags/2.9.3/readme.txt

    r3425736 r3444067  
    44Requires at least: 6.5
    55Tested up to: 6.9
    6 Stable tag: 2.9.2
     6Stable tag: 2.9.3
    77Requires PHP: 7.4
    88License: GPLv2 or later
     
    7979- Force login to view the website
    8080
     81#### [Cache](https://wpfalcon.pro/features/cache/)
     82
     83Falcon's cache feature creates static HTML files of your pages, serving them instantly to visitors without processing database queries, or loading WordPress, themes and all plugins on every request.
     84
    8185#### [Tweaks](https://wpfalcon.pro/features/tweaks/)
    8286- Search only posts
     
    107111== Changelog ==
    108112
     113= 2.9.3 - 2026-01-21 =
     114
     115- Improve check for not caching search result pages
     116
    109117= 2.9.2 - 2025-12-23 =
    110118
     
    118126= 2.9.0 - 2025-12-19 =
    119127
    120 - **Cache module (HTML page cache):** A lightweight yet powerful caching module to improve page load times and reduce server load by caching full HTML pages. Just enable it in the **General** tab and you're good to go.
     128- **[Cache module](https://wpfalcon.pro/features/cache/) (HTML page cache):** A lightweight yet powerful caching module to improve page load times and reduce server load by caching full HTML pages. Just enable it in the **General** tab and you're good to go.
    121129  - Recommended for standard blogs and brochure-style websites.
    122130  - Not recommended for highly dynamic or eCommerce sites.
  • falcon/tags/2.9.3/src/Components/Cache/Serve.php

    r3425271 r3444067  
    5252        // Only cache GET requests.
    5353        if ( $_SERVER['REQUEST_METHOD'] !== 'GET' ) {
     54            return false;
     55        }
     56
     57        // Do not cache search result pages.
     58        if ( isset( $_GET['s'] ) ) {
    5459            return false;
    5560        }
  • falcon/tags/2.9.3/vendor/composer/installed.php

    r3425736 r3444067  
    22    'root' => array(
    33        'name' => 'elightup/falcon',
    4         'pretty_version' => '2.9.2',
    5         'version' => '2.9.2.0',
    6         'reference' => '30e05da4a03b9c177206c25ee2da9643b9048e6f',
     4        'pretty_version' => '2.9.3',
     5        'version' => '2.9.3.0',
     6        'reference' => '423b3f8cdd9ec8239b88f6c2dd9ffa43a964e834',
    77        'type' => 'wordpress-plugin',
    88        'install_path' => __DIR__ . '/../../',
     
    1212    'versions' => array(
    1313        'elightup/falcon' => array(
    14             'pretty_version' => '2.9.2',
    15             'version' => '2.9.2.0',
    16             'reference' => '30e05da4a03b9c177206c25ee2da9643b9048e6f',
     14            'pretty_version' => '2.9.3',
     15            'version' => '2.9.3.0',
     16            'reference' => '423b3f8cdd9ec8239b88f6c2dd9ffa43a964e834',
    1717            'type' => 'wordpress-plugin',
    1818            'install_path' => __DIR__ . '/../../',
  • falcon/trunk/falcon.php

    r3425736 r3444067  
    44 * Plugin URI:  https://wpfalcon.pro
    55 * Description: WordPress optimizations & tweaks
    6  * Version:     2.9.2
     6 * Version:     2.9.3
    77 * Author:      eLightUp
    88 * Author URI:  https://elightup.com
  • falcon/trunk/readme.txt

    r3425736 r3444067  
    44Requires at least: 6.5
    55Tested up to: 6.9
    6 Stable tag: 2.9.2
     6Stable tag: 2.9.3
    77Requires PHP: 7.4
    88License: GPLv2 or later
     
    7979- Force login to view the website
    8080
     81#### [Cache](https://wpfalcon.pro/features/cache/)
     82
     83Falcon's cache feature creates static HTML files of your pages, serving them instantly to visitors without processing database queries, or loading WordPress, themes and all plugins on every request.
     84
    8185#### [Tweaks](https://wpfalcon.pro/features/tweaks/)
    8286- Search only posts
     
    107111== Changelog ==
    108112
     113= 2.9.3 - 2026-01-21 =
     114
     115- Improve check for not caching search result pages
     116
    109117= 2.9.2 - 2025-12-23 =
    110118
     
    118126= 2.9.0 - 2025-12-19 =
    119127
    120 - **Cache module (HTML page cache):** A lightweight yet powerful caching module to improve page load times and reduce server load by caching full HTML pages. Just enable it in the **General** tab and you're good to go.
     128- **[Cache module](https://wpfalcon.pro/features/cache/) (HTML page cache):** A lightweight yet powerful caching module to improve page load times and reduce server load by caching full HTML pages. Just enable it in the **General** tab and you're good to go.
    121129  - Recommended for standard blogs and brochure-style websites.
    122130  - Not recommended for highly dynamic or eCommerce sites.
  • falcon/trunk/src/Components/Cache/Serve.php

    r3425271 r3444067  
    5252        // Only cache GET requests.
    5353        if ( $_SERVER['REQUEST_METHOD'] !== 'GET' ) {
     54            return false;
     55        }
     56
     57        // Do not cache search result pages.
     58        if ( isset( $_GET['s'] ) ) {
    5459            return false;
    5560        }
  • falcon/trunk/vendor/composer/installed.php

    r3425736 r3444067  
    22    'root' => array(
    33        'name' => 'elightup/falcon',
    4         'pretty_version' => '2.9.2',
    5         'version' => '2.9.2.0',
    6         'reference' => '30e05da4a03b9c177206c25ee2da9643b9048e6f',
     4        'pretty_version' => '2.9.3',
     5        'version' => '2.9.3.0',
     6        'reference' => '423b3f8cdd9ec8239b88f6c2dd9ffa43a964e834',
    77        'type' => 'wordpress-plugin',
    88        'install_path' => __DIR__ . '/../../',
     
    1212    'versions' => array(
    1313        'elightup/falcon' => array(
    14             'pretty_version' => '2.9.2',
    15             'version' => '2.9.2.0',
    16             'reference' => '30e05da4a03b9c177206c25ee2da9643b9048e6f',
     14            'pretty_version' => '2.9.3',
     15            'version' => '2.9.3.0',
     16            'reference' => '423b3f8cdd9ec8239b88f6c2dd9ffa43a964e834',
    1717            'type' => 'wordpress-plugin',
    1818            'install_path' => __DIR__ . '/../../',
Note: See TracChangeset for help on using the changeset viewer.