Version Description
- to define the save_settings() function of single preload feature as static function
Download this release
Release Info
Developer | emrevona |
Plugin | WP Fastest Cache |
Version | 1.0.0 |
Comparing to | |
See all releases |
Code changes from version 0.9.9 to 1.0.0
- inc/single-preload.php +1 -1
- readme.txt +4 -1
- wpFastestCache.php +1 -1
inc/single-preload.php
CHANGED
@@ -96,7 +96,7 @@
|
|
96 |
// Add the HTML for the post meta
|
97 |
}
|
98 |
|
99 |
-
public function save_settings(){
|
100 |
if(current_user_can('manage_options')){
|
101 |
$res = array("success" => true);
|
102 |
|
96 |
// Add the HTML for the post meta
|
97 |
}
|
98 |
|
99 |
+
public static function save_settings(){
|
100 |
if(current_user_can('manage_options')){
|
101 |
$res = array("success" => true);
|
102 |
|
readme.txt
CHANGED
@@ -4,7 +4,7 @@ Donate link: http://profiles.wordpress.org/emrevona/
|
|
4 |
Tags: cache, caching, performance, wp-cache, total cache, super cache, cdn
|
5 |
Requires at least: 3.3
|
6 |
Tested up to: 5.9
|
7 |
-
Stable tag: 0.
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
@@ -125,6 +125,9 @@ The free version is enough to speed up your site but in the premium version ther
|
|
125 |
|
126 |
== Changelog ==
|
127 |
|
|
|
|
|
|
|
128 |
= 0.9.9 =
|
129 |
* to clear cache when regular price of woocommorce is updated
|
130 |
* refactoring of Automatic Cache
|
4 |
Tags: cache, caching, performance, wp-cache, total cache, super cache, cdn
|
5 |
Requires at least: 3.3
|
6 |
Tested up to: 5.9
|
7 |
+
Stable tag: 1.0.0
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
125 |
|
126 |
== Changelog ==
|
127 |
|
128 |
+
= 1.0.0 =
|
129 |
+
* to define the save_settings() function of single preload feature as static function
|
130 |
+
|
131 |
= 0.9.9 =
|
132 |
* to clear cache when regular price of woocommorce is updated
|
133 |
* refactoring of Automatic Cache
|
wpFastestCache.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
Plugin Name: WP Fastest Cache
|
4 |
Plugin URI: http://wordpress.org/plugins/wp-fastest-cache/
|
5 |
Description: The simplest and fastest WP Cache system
|
6 |
-
Version: 0.
|
7 |
Author: Emre Vona
|
8 |
Author URI: http://tr.linkedin.com/in/emrevona
|
9 |
Text Domain: wp-fastest-cache
|
3 |
Plugin Name: WP Fastest Cache
|
4 |
Plugin URI: http://wordpress.org/plugins/wp-fastest-cache/
|
5 |
Description: The simplest and fastest WP Cache system
|
6 |
+
Version: 1.0.0
|
7 |
Author: Emre Vona
|
8 |
Author URI: http://tr.linkedin.com/in/emrevona
|
9 |
Text Domain: wp-fastest-cache
|