Speed Booster Pack - Version 2.8

Version Description

  • Fixed plugin options visibility issue
Download this release

Release Info

Developer tiguan
Plugin Icon 128x128 Speed Booster Pack
Version 2.8
Comparing to
See all releases

Code changes from version 2.7 to 2.8

Files changed (3) hide show
  1. css/style.dev.css +0 -1
  2. readme.txt +7 -4
  3. speed-booster-pack.php +3 -2
css/style.dev.css CHANGED
@@ -81,7 +81,6 @@
81
  position: relative;
82
  overflow: hidden;
83
  }
84
-
85
  .wrap .sb-pack #poststuff .inside {
86
  margin: 26px 0 0;
87
  }
81
  position: relative;
82
  overflow: hidden;
83
  }
 
84
  .wrap .sb-pack #poststuff .inside {
85
  margin: 26px 0 0;
86
  }
readme.txt CHANGED
@@ -3,8 +3,8 @@ Contributors: tiguan
3
  Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=EH65WAWPEYPXU
4
  Tags: speed, optimization, performance, scripts to the footer, google libraries, font awesome cdn, defer parsing of javascript, remove query strings, lazy load images, gtmetrix, google pageSpeed, yslow, eliminate external render-blocking javascript and css, compression, async, render-blocking css
5
  Requires at least: 3.6
6
- Tested up to: 4.0
7
- Stable tag: 2.7
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
@@ -44,8 +44,8 @@ https://www.youtube.com/watch?v=u0G6pk2mX4M
44
  * **Displays the number of executed queries** in the plugin options page.
45
  * **Displays the Peak Memory Used** in the plugin options page.
46
 
47
- For complete usage instructions visit [Plugin Documentation](http://tiguandesign.com/docs/speed-booster/)
48
- Check out our [Premium Themes](http://tiguandesign.com/category/premium-wordpress-themes/) that use Speed Booster Pack.
49
 
50
  = Recommended Plugins =
51
 
@@ -72,6 +72,9 @@ The following are other recommended plugins by the author of Speed Booster Pack:
72
 
73
  == Changelog ==
74
 
 
 
 
75
  = 2.7 =
76
  * All important options switched to off by default (on first plugin activation).
77
 
3
  Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=EH65WAWPEYPXU
4
  Tags: speed, optimization, performance, scripts to the footer, google libraries, font awesome cdn, defer parsing of javascript, remove query strings, lazy load images, gtmetrix, google pageSpeed, yslow, eliminate external render-blocking javascript and css, compression, async, render-blocking css
5
  Requires at least: 3.6
6
+ Tested up to: 4.4
7
+ Stable tag: 2.8
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
44
  * **Displays the number of executed queries** in the plugin options page.
45
  * **Displays the Peak Memory Used** in the plugin options page.
46
 
47
+ * For complete usage instructions visit [Plugin Documentation](http://tiguandesign.com/docs/speed-booster/)
48
+ * Check out our [Premium Themes](http://tiguandesign.com/category/premium-wordpress-themes/) that use our Speed Booster Pack plugin
49
 
50
  = Recommended Plugins =
51
 
72
 
73
  == Changelog ==
74
 
75
+ = 2.8 =
76
+ * Fixed plugin options visibility issue
77
+
78
  = 2.7 =
79
  * All important options switched to off by default (on first plugin activation).
80
 
speed-booster-pack.php CHANGED
@@ -3,7 +3,7 @@
3
  * Plugin Name: Speed Booster Pack
4
  * Plugin URI: http://wordpress.org/plugins/speed-booster-pack/
5
  * Description: Speed Booster Pack allows you to improve your page loading speed and get a higher score on the major speed testing services such as <a href="http://gtmetrix.com/">GTmetrix</a>, <a href="http://developers.google.com/speed/pagespeed/insights/">Google PageSpeed</a> or other speed testing tools.
6
- * Version: 2.7
7
  * Author: Tiguan
8
  * Author URI: http://tiguandesign.com
9
  * License: GPLv2
@@ -38,11 +38,12 @@ $sbp_options = get_option( 'sbp_settings' ); // retrieve the plugin settings fro
38
 
39
  define( 'SPEED_BOOSTER_PACK_RELEASE_DATE', date_i18n( 'F j, Y', '1400569200' ) ); // Defining plugin release date
40
  define( 'SPEED_BOOSTER_PACK_PATH', plugin_dir_path( __FILE__ ) ); // Defining plugin dir path
41
- define( 'SPEED_BOOSTER_PACK_VERSION', 'v2.6'); // Defining plugin version
42
  define( 'SPEED_BOOSTER_PACK_NAME', 'Speed Booster Pack Plugin'); // Defining plugin name
43
  define( 'SBP_FOOTER', 10 ); // Defining css position
44
  define( 'SBP_FOOTER_LAST', 99999 ); // Defining css last position
45
 
 
46
  /*----------------------------------------------------------------------------------------------------------
47
  Main Plugin Class
48
  -----------------------------------------------------------------------------------------------------------*/
3
  * Plugin Name: Speed Booster Pack
4
  * Plugin URI: http://wordpress.org/plugins/speed-booster-pack/
5
  * Description: Speed Booster Pack allows you to improve your page loading speed and get a higher score on the major speed testing services such as <a href="http://gtmetrix.com/">GTmetrix</a>, <a href="http://developers.google.com/speed/pagespeed/insights/">Google PageSpeed</a> or other speed testing tools.
6
+ * Version: 2.8
7
  * Author: Tiguan
8
  * Author URI: http://tiguandesign.com
9
  * License: GPLv2
38
 
39
  define( 'SPEED_BOOSTER_PACK_RELEASE_DATE', date_i18n( 'F j, Y', '1400569200' ) ); // Defining plugin release date
40
  define( 'SPEED_BOOSTER_PACK_PATH', plugin_dir_path( __FILE__ ) ); // Defining plugin dir path
41
+ define( 'SPEED_BOOSTER_PACK_VERSION', 'v2.8'); // Defining plugin version
42
  define( 'SPEED_BOOSTER_PACK_NAME', 'Speed Booster Pack Plugin'); // Defining plugin name
43
  define( 'SBP_FOOTER', 10 ); // Defining css position
44
  define( 'SBP_FOOTER_LAST', 99999 ); // Defining css last position
45
 
46
+
47
  /*----------------------------------------------------------------------------------------------------------
48
  Main Plugin Class
49
  -----------------------------------------------------------------------------------------------------------*/