Changeset 3444067
- Timestamp:
- 01/21/2026 12:23:28 PM (4 weeks ago)
- Location:
- falcon
- Files:
-
- 8 edited
- 1 copied
-
tags/2.9.3 (copied) (copied from falcon/trunk)
-
tags/2.9.3/falcon.php (modified) (1 diff)
-
tags/2.9.3/readme.txt (modified) (4 diffs)
-
tags/2.9.3/src/Components/Cache/Serve.php (modified) (1 diff)
-
tags/2.9.3/vendor/composer/installed.php (modified) (2 diffs)
-
trunk/falcon.php (modified) (1 diff)
-
trunk/readme.txt (modified) (4 diffs)
-
trunk/src/Components/Cache/Serve.php (modified) (1 diff)
-
trunk/vendor/composer/installed.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
falcon/tags/2.9.3/falcon.php
r3425736 r3444067 4 4 * Plugin URI: https://wpfalcon.pro 5 5 * Description: WordPress optimizations & tweaks 6 * Version: 2.9. 26 * Version: 2.9.3 7 7 * Author: eLightUp 8 8 * Author URI: https://elightup.com -
falcon/tags/2.9.3/readme.txt
r3425736 r3444067 4 4 Requires at least: 6.5 5 5 Tested up to: 6.9 6 Stable tag: 2.9. 26 Stable tag: 2.9.3 7 7 Requires PHP: 7.4 8 8 License: GPLv2 or later … … 79 79 - Force login to view the website 80 80 81 #### [Cache](https://wpfalcon.pro/features/cache/) 82 83 Falcon'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 81 85 #### [Tweaks](https://wpfalcon.pro/features/tweaks/) 82 86 - Search only posts … … 107 111 == Changelog == 108 112 113 = 2.9.3 - 2026-01-21 = 114 115 - Improve check for not caching search result pages 116 109 117 = 2.9.2 - 2025-12-23 = 110 118 … … 118 126 = 2.9.0 - 2025-12-19 = 119 127 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. 121 129 - Recommended for standard blogs and brochure-style websites. 122 130 - Not recommended for highly dynamic or eCommerce sites. -
falcon/tags/2.9.3/src/Components/Cache/Serve.php
r3425271 r3444067 52 52 // Only cache GET requests. 53 53 if ( $_SERVER['REQUEST_METHOD'] !== 'GET' ) { 54 return false; 55 } 56 57 // Do not cache search result pages. 58 if ( isset( $_GET['s'] ) ) { 54 59 return false; 55 60 } -
falcon/tags/2.9.3/vendor/composer/installed.php
r3425736 r3444067 2 2 'root' => array( 3 3 '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', 7 7 'type' => 'wordpress-plugin', 8 8 'install_path' => __DIR__ . '/../../', … … 12 12 'versions' => array( 13 13 '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', 17 17 'type' => 'wordpress-plugin', 18 18 'install_path' => __DIR__ . '/../../', -
falcon/trunk/falcon.php
r3425736 r3444067 4 4 * Plugin URI: https://wpfalcon.pro 5 5 * Description: WordPress optimizations & tweaks 6 * Version: 2.9. 26 * Version: 2.9.3 7 7 * Author: eLightUp 8 8 * Author URI: https://elightup.com -
falcon/trunk/readme.txt
r3425736 r3444067 4 4 Requires at least: 6.5 5 5 Tested up to: 6.9 6 Stable tag: 2.9. 26 Stable tag: 2.9.3 7 7 Requires PHP: 7.4 8 8 License: GPLv2 or later … … 79 79 - Force login to view the website 80 80 81 #### [Cache](https://wpfalcon.pro/features/cache/) 82 83 Falcon'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 81 85 #### [Tweaks](https://wpfalcon.pro/features/tweaks/) 82 86 - Search only posts … … 107 111 == Changelog == 108 112 113 = 2.9.3 - 2026-01-21 = 114 115 - Improve check for not caching search result pages 116 109 117 = 2.9.2 - 2025-12-23 = 110 118 … … 118 126 = 2.9.0 - 2025-12-19 = 119 127 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. 121 129 - Recommended for standard blogs and brochure-style websites. 122 130 - Not recommended for highly dynamic or eCommerce sites. -
falcon/trunk/src/Components/Cache/Serve.php
r3425271 r3444067 52 52 // Only cache GET requests. 53 53 if ( $_SERVER['REQUEST_METHOD'] !== 'GET' ) { 54 return false; 55 } 56 57 // Do not cache search result pages. 58 if ( isset( $_GET['s'] ) ) { 54 59 return false; 55 60 } -
falcon/trunk/vendor/composer/installed.php
r3425736 r3444067 2 2 'root' => array( 3 3 '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', 7 7 'type' => 'wordpress-plugin', 8 8 'install_path' => __DIR__ . '/../../', … … 12 12 'versions' => array( 13 13 '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', 17 17 'type' => 'wordpress-plugin', 18 18 'install_path' => __DIR__ . '/../../',
Note: See TracChangeset
for help on using the changeset viewer.