Speed Booster Pack - Version 1.4

Version Description

  • Added two features options: one to remove extra Font Awesome stylesheets added to your theme by certain plugins, if Font Awesome is already used in your theme and the other to remove WordPress Version Number.
Download this release

Release Info

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

Code changes from version 1.3 to 1.4

Files changed (6) hide show
  1. inc/core.php +31 -0
  2. inc/template/options.php +11 -0
  3. lang/sb-pack.mo +0 -0
  4. lang/sb-pack.po +135 -126
  5. readme.txt +13 -6
  6. speed-booster-pack.php +13 -13
inc/core.php CHANGED
@@ -9,6 +9,7 @@ if( !class_exists( 'Speed_Booster_Pack_Core' ) ) {
9
 
10
  global $sbp_options;
11
 
 
12
  add_action( 'wp_enqueue_scripts', array( $this, 'sbp_move_scripts_to_footer' ) );
13
  add_action( 'wp_footer', array( $this, 'sbp_show_page_load_stats' ), 999 );
14
  add_action('after_setup_theme', array( $this, 'sbp_junk_header_tags' ) );
@@ -137,6 +138,31 @@ return $rqsfsr[0];
137
  }
138
 
139
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
140
  /*----------------------------------------------
141
  Remove junk header tags
142
  -----------------------------------------------*/
@@ -165,6 +191,11 @@ public function sbp_junk_header_tags() {
165
  remove_action( 'wp_head', 'wp_shortlink_wp_head' );
166
  }
167
 
 
 
 
 
 
168
  } // END public function sbp_junk_header_tags
169
 
170
 
9
 
10
  global $sbp_options;
11
 
12
+ add_action( 'wp_enqueue_scripts', array( $this, 'sbp_no_more_fontawesome'), 9999 );
13
  add_action( 'wp_enqueue_scripts', array( $this, 'sbp_move_scripts_to_footer' ) );
14
  add_action( 'wp_footer', array( $this, 'sbp_show_page_load_stats' ), 999 );
15
  add_action('after_setup_theme', array( $this, 'sbp_junk_header_tags' ) );
138
  }
139
 
140
 
141
+ /*----------------------------------------------
142
+ Dequeue extra Font Awesome stylesheet
143
+ -----------------------------------------------*/
144
+
145
+ function sbp_no_more_fontawesome() {
146
+ global $wp_styles;
147
+ global $sbp_options;
148
+
149
+ // we'll use preg_match to find only the following patterns as exact matches, to prevent other plugin stylesheets that contain font-awesome expression to be also dequeued
150
+ $patterns = array(
151
+ 'font-awesome.css',
152
+ 'font-awesome.min.css'
153
+ );
154
+ // multiple patterns hook
155
+ $regex = '/(' .implode('|', $patterns) .')/i';
156
+ foreach( $wp_styles -> registered as $registered ) {
157
+ if( !is_admin() and preg_match( $regex, $registered->src) and isset( $sbp_options['font_awesome'] ) ) {
158
+ wp_dequeue_style( $registered->handle );
159
+ // FA was dequeued, so here we need to enqueue it again from CDN
160
+ wp_enqueue_style( 'font-awesome', '//netdna.bootstrapcdn.com/font-awesome/4.1.0/css/font-awesome.min.css' );
161
+ } // END if( preg_match...
162
+ } // END foreach
163
+ } // End function dfa_no_more_fontawesome
164
+
165
+
166
  /*----------------------------------------------
167
  Remove junk header tags
168
  -----------------------------------------------*/
191
  remove_action( 'wp_head', 'wp_shortlink_wp_head' );
192
  }
193
 
194
+ // Remove WP Generator/Version - for security reasons and cleaning the header
195
+ if ( isset( $sbp_options['wp_generator'] ) ) {
196
+ remove_action('wp_head', 'wp_generator');
197
+ }
198
+
199
  } // END public function sbp_junk_header_tags
200
 
201
 
inc/template/options.php CHANGED
@@ -40,6 +40,11 @@
40
  <label for="sbp_settings[query_strings]"><?php _e( 'Remove query strings from static resources', 'sb-pack' ); ?></label>
41
  </p>
42
 
 
 
 
 
 
43
  </div> <!-- END welcome-panel-column -->
44
 
45
 
@@ -65,6 +70,12 @@
65
  <input id="sbp_settings[wml_link]" name="sbp_settings[wml_link]" type="checkbox" value="1" <?php checked( 1, isset( $sbp_options['wml_link'] ) ); ?> />
66
  <label for="sbp_settings[wml_link]"><?php _e( 'Remove Windows Live Writer Manifest', 'sb-pack' ); ?></label>
67
  </p>
 
 
 
 
 
 
68
  </div> <!-- END welcome-panel-column -->
69
 
70
 
40
  <label for="sbp_settings[query_strings]"><?php _e( 'Remove query strings from static resources', 'sb-pack' ); ?></label>
41
  </p>
42
 
43
+ <p>
44
+ <input id="sbp_settings[font_awesome]" name="sbp_settings[font_awesome]" type="checkbox" value="1" <?php checked( 1, isset( $sbp_options['font_awesome'] ) ); ?> />
45
+ <label for="sbp_settings[font_awesome]"><?php _e( 'Removes additional Font Awesome stylesheets', 'sb-pack' ); ?></label>
46
+ </p>
47
+
48
  </div> <!-- END welcome-panel-column -->
49
 
50
 
70
  <input id="sbp_settings[wml_link]" name="sbp_settings[wml_link]" type="checkbox" value="1" <?php checked( 1, isset( $sbp_options['wml_link'] ) ); ?> />
71
  <label for="sbp_settings[wml_link]"><?php _e( 'Remove Windows Live Writer Manifest', 'sb-pack' ); ?></label>
72
  </p>
73
+
74
+ <p>
75
+ <input id="sbp_settings[wp_generator]" name="sbp_settings[wp_generator]" type="checkbox" value="1" <?php checked( 1, isset( $sbp_options['wp_generator'] ) ); ?> />
76
+ <label for="sbp_settings[wp_generator]"><?php _e( 'Remove the WordPress Version Number', 'sb-pack' ); ?></label>
77
+ </p>
78
+
79
  </div> <!-- END welcome-panel-column -->
80
 
81
 
lang/sb-pack.mo CHANGED
Binary file
lang/sb-pack.po CHANGED
@@ -1,126 +1,135 @@
1
- msgid ""
2
- msgstr ""
3
- "Content-Type: text/plain; charset=UTF-8\n"
4
- "Content-Transfer-Encoding: 8bit\n"
5
- "Plural-Forms: nplurals=2; plural=(n != 1);\n"
6
- "Project-Id-Version: Speed Booster Pack 1.0\n"
7
- "POT-Creation-Date: \n"
8
- "PO-Revision-Date: \n"
9
- "Last-Translator: Liviu Costache <tiguan@tiguandesign.com>\n"
10
- "Language-Team: Tiguandesign <tiguan@tiguandesign.com>\n"
11
- "MIME-Version: 1.0\n"
12
- "Language: en\n"
13
- "X-Generator: Poedit 1.6.5\n"
14
- "X-Poedit-KeywordsList: __;_e\n"
15
- "X-Poedit-Basepath: .\n"
16
- "X-Poedit-SearchPath-0: ..\n"
17
-
18
- #. Text in echo
19
- #: speed-booster-pack/inc/template/options.php:125
20
- msgid " with guidelines to modify/enhance your website."
21
- msgstr ""
22
-
23
- #. Text in echo
24
- #: speed-booster-pack/inc/template/options.php:35
25
- msgid "Defer parsing of javascript files"
26
- msgstr ""
27
-
28
- #. Text in echo
29
- #: speed-booster-pack/inc/template/options.php:142
30
- msgid "Installed Version:"
31
- msgstr ""
32
-
33
- #. Text in echo
34
- #: speed-booster-pack/inc/template/options.php:21
35
- msgid "Javascripts options"
36
- msgstr ""
37
-
38
- #. Text in echo
39
- #: speed-booster-pack/inc/template/options.php:30
40
- msgid "Load JS from Google Libraries"
41
- msgstr ""
42
-
43
- #. Text in echo
44
- #: speed-booster-pack/inc/template/options.php:25
45
- msgid "Move scripts to the footer"
46
- msgstr ""
47
-
48
- #. Text in echo
49
- #: speed-booster-pack/inc/template/options.php:87
50
- msgid "Number of executed queries:"
51
- msgstr ""
52
-
53
- #. Text in echo
54
- #: speed-booster-pack/inc/template/options.php:73
55
- msgid "Page Load Stats"
56
- msgstr ""
57
-
58
- #. Text in echo
59
- #: speed-booster-pack/inc/template/options.php:75
60
- msgid "Page loading time:"
61
- msgstr ""
62
-
63
- #. Text in echo
64
- #: speed-booster-pack/inc/template/options.php:125
65
- msgid "Read online plugin documentation"
66
- msgstr ""
67
-
68
- #. Text in echo
69
- #: speed-booster-pack/inc/template/options.php:149
70
- msgid "Released date:"
71
- msgstr ""
72
-
73
- #. Text in echo
74
- #: speed-booster-pack/inc/template/options.php:61
75
- msgid "Remove Adjacent Posts Links"
76
- msgstr ""
77
-
78
- #. Text in echo
79
- #: speed-booster-pack/inc/template/options.php:51
80
- msgid "Remove RSD Link"
81
- msgstr ""
82
-
83
- #. Text in echo
84
- #: speed-booster-pack/inc/template/options.php:66
85
- msgid "Remove Windows Live Writer Manifest"
86
- msgstr ""
87
-
88
- #. Text in echo
89
- #: speed-booster-pack/inc/template/options.php:56
90
- msgid "Remove WordPress Shortlink"
91
- msgstr ""
92
-
93
- #. Text in echo
94
- #: speed-booster-pack/inc/template/options.php:47
95
- msgid "Remove junk header tags"
96
- msgstr ""
97
-
98
- #. Text in echo
99
- #: speed-booster-pack/inc/template/options.php:40
100
- msgid "Remove query strings from static resources"
101
- msgstr ""
102
-
103
- #. Text in echo
104
- #: speed-booster-pack/inc/template/options.php:15
105
- msgid "Speed Up Your Website!"
106
- msgstr ""
107
-
108
- #. Text in echo
109
- #: speed-booster-pack/inc/template/options.php:131
110
- msgid "Version Information"
111
- msgstr ""
112
-
113
- #. Text in echo
114
- #: speed-booster-pack/inc/template/options.php:115
115
- msgid "What do these settings mean?"
116
- msgstr ""
117
-
118
- #. Text in echo
119
- #: speed-booster-pack/inc/template/options.php:95
120
- msgid "q"
121
- msgstr ""
122
-
123
- #. Text in echo
124
- #: speed-booster-pack/inc/template/options.php:83
125
- msgid "s"
126
- msgstr ""
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Content-Type: text/plain; charset=UTF-8\n"
4
+ "Content-Transfer-Encoding: 8bit\n"
5
+ "Project-Id-Version: Speed Booster Pack 1.4\n"
6
+ "POT-Creation-Date: \n"
7
+ "PO-Revision-Date: \n"
8
+ "Last-Translator: Liviu Costache <tiguan@tiguandesign.com>\n"
9
+ "Language-Team: <tiguan@tiguandesign.com>\n"
10
+ "MIME-Version: 1.0\n"
11
+ "Language: en\n"
12
+ "X-Generator: Poedit 1.6.5\n"
13
+ "X-Poedit-KeywordsList: __;_e\n"
14
+ "X-Poedit-Basepath: .\n"
15
+ "X-Poedit-SearchPath-0: ..\n"
16
+
17
+ #. Text in echo
18
+ #: speed-booster-pack/inc/template/options.php:136
19
+ msgid " with guidelines to modify/enhance your website."
20
+ msgstr ""
21
+
22
+ #. Text in echo
23
+ #: speed-booster-pack/inc/template/options.php:35
24
+ msgid "Defer parsing of javascript files"
25
+ msgstr ""
26
+
27
+ #. Text in echo
28
+ #: speed-booster-pack/inc/template/options.php:153
29
+ msgid "Installed Version:"
30
+ msgstr ""
31
+
32
+ #. Text in echo
33
+ #: speed-booster-pack/inc/template/options.php:21
34
+ msgid "Javascripts options"
35
+ msgstr ""
36
+
37
+ #. Text in echo
38
+ #: speed-booster-pack/inc/template/options.php:30
39
+ msgid "Load JS from Google Libraries"
40
+ msgstr ""
41
+
42
+ #. Text in echo
43
+ #: speed-booster-pack/inc/template/options.php:25
44
+ msgid "Move scripts to the footer"
45
+ msgstr ""
46
+
47
+ #. Text in echo
48
+ #: speed-booster-pack/inc/template/options.php:98
49
+ msgid "Number of executed queries:"
50
+ msgstr ""
51
+
52
+ #. Text in echo
53
+ #: speed-booster-pack/inc/template/options.php:84
54
+ msgid "Page Load Stats"
55
+ msgstr ""
56
+
57
+ #. Text in echo
58
+ #: speed-booster-pack/inc/template/options.php:86
59
+ msgid "Page loading time:"
60
+ msgstr ""
61
+
62
+ #. Text in echo
63
+ #: speed-booster-pack/inc/template/options.php:136
64
+ msgid "Read online plugin documentation"
65
+ msgstr ""
66
+
67
+ #. Text in echo
68
+ #: speed-booster-pack/inc/template/options.php:160
69
+ msgid "Released date:"
70
+ msgstr ""
71
+
72
+ #. Text in echo
73
+ #: speed-booster-pack/inc/template/options.php:66
74
+ msgid "Remove Adjacent Posts Links"
75
+ msgstr ""
76
+
77
+ #. Text in echo
78
+ #: speed-booster-pack/inc/template/options.php:56
79
+ msgid "Remove RSD Link"
80
+ msgstr ""
81
+
82
+ #. Text in echo
83
+ #: speed-booster-pack/inc/template/options.php:71
84
+ msgid "Remove Windows Live Writer Manifest"
85
+ msgstr ""
86
+
87
+ #. Text in echo
88
+ #: speed-booster-pack/inc/template/options.php:61
89
+ msgid "Remove WordPress Shortlink"
90
+ msgstr ""
91
+
92
+ #. Text in echo
93
+ #: speed-booster-pack/inc/template/options.php:52
94
+ msgid "Remove junk header tags"
95
+ msgstr ""
96
+
97
+ #. Text in echo
98
+ #: speed-booster-pack/inc/template/options.php:40
99
+ msgid "Remove query strings from static resources"
100
+ msgstr ""
101
+
102
+ #. Text in echo
103
+ #: speed-booster-pack/inc/template/options.php:76
104
+ msgid "Remove the WordPress Version Number"
105
+ msgstr ""
106
+
107
+ #. Text in echo
108
+ #: speed-booster-pack/inc/template/options.php:45
109
+ msgid "Removes additional Font Awesome stylesheets"
110
+ msgstr ""
111
+
112
+ #. Text in echo
113
+ #: speed-booster-pack/inc/template/options.php:15
114
+ msgid "Speed Up Your Website!"
115
+ msgstr ""
116
+
117
+ #. Text in echo
118
+ #: speed-booster-pack/inc/template/options.php:142
119
+ msgid "Version Information"
120
+ msgstr ""
121
+
122
+ #. Text in echo
123
+ #: speed-booster-pack/inc/template/options.php:126
124
+ msgid "What do these settings mean?"
125
+ msgstr ""
126
+
127
+ #. Text in echo
128
+ #: speed-booster-pack/inc/template/options.php:106
129
+ msgid "q"
130
+ msgstr ""
131
+
132
+ #. Text in echo
133
+ #: speed-booster-pack/inc/template/options.php:94
134
+ msgid "s"
135
+ msgstr ""
readme.txt CHANGED
@@ -4,7 +4,7 @@ Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_i
4
  Tags: speed, optimization, performance, speed booster, scripts to the footer, Google Libraries, CDN, defer parsing of javascript, remove query strings, GTmetrix, Google PageSpeed, YSlow
5
  Requires at least: 3.6
6
  Tested up to: 3.9.1
7
- Stable tag: 1.3
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
@@ -16,10 +16,9 @@ Speed Booster Pack allows you to improve your page loading speed and get a highe
16
 
17
  = Why Site Speed Is Important =
18
 
19
- When visitors lands on your site for the first time, you only have a 3 seconds to capture their attention and convince them to stick around. That's not convinced you? Read on:
20
 
21
-
22
- >* Google incorporating site speed in search rankings
23
  * 47% of online consumers expect a web page to load in 2 seconds or less
24
  * 40% of people will abandon a site that takes more than 3 seconds to load
25
  * 80% of online consumers are less likely to return to a slow website
@@ -30,6 +29,7 @@ When visitors lands on your site for the first time, you only have a 3 seconds t
30
  * **Loads javascript files from Google Libraries** rather than serving them from your WordPress install directly, to reduce latency, increase parallelism and improve caching.
31
  * **Defers parsing of javascript files** to reduce the initial load time of your page.
32
  * **Removes query strings from static resources** to improve your speed scores.
 
33
  * **Removes junk header tags** to clean up your WordPress Header.
34
 
35
  = Page Load Stats =
@@ -48,7 +48,11 @@ Page Load Stats is a brief statistic displayed in the plugin options page. It di
48
  * *orange* if there were between 100 and 200 queries
49
  * *red* if the page required more than 200 queries
50
 
51
- For complete usage instructions visit [Plugin Documentation](http://tiguandesign.com/docs/speed-booster/)
 
 
 
 
52
 
53
  == Installation ==
54
 
@@ -59,10 +63,13 @@ For complete usage instructions visit [Plugin Documentation](http://tiguandesign
59
  5. A new sub menu item `Speed Booster Pack` will appear in your main Settings menu.
60
 
61
  == Screenshots ==
62
- 1. Plugin options page, simple view (v1.0)
63
 
64
  == Changelog ==
65
 
 
 
 
66
  = 1.3 =
67
  * Fixed strict standards error: redefining already defined constructor for class.
68
 
4
  Tags: speed, optimization, performance, speed booster, scripts to the footer, Google Libraries, CDN, defer parsing of javascript, remove query strings, GTmetrix, Google PageSpeed, YSlow
5
  Requires at least: 3.6
6
  Tested up to: 3.9.1
7
+ Stable tag: 1.4
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
16
 
17
  = Why Site Speed Is Important =
18
 
19
+ When visitors lands on your site for the first time, you only have 3 seconds to capture their attention and convince them to stick around. That's not convinced you? Read on:
20
 
21
+ * Google incorporating site speed in search rankings
 
22
  * 47% of online consumers expect a web page to load in 2 seconds or less
23
  * 40% of people will abandon a site that takes more than 3 seconds to load
24
  * 80% of online consumers are less likely to return to a slow website
29
  * **Loads javascript files from Google Libraries** rather than serving them from your WordPress install directly, to reduce latency, increase parallelism and improve caching.
30
  * **Defers parsing of javascript files** to reduce the initial load time of your page.
31
  * **Removes query strings from static resources** to improve your speed scores.
32
+ * **Removes extra Font Awesome stylesheets** added to your theme by certain plugins, if *Font Awesome* is already used in your theme.
33
  * **Removes junk header tags** to clean up your WordPress Header.
34
 
35
  = Page Load Stats =
48
  * *orange* if there were between 100 and 200 queries
49
  * *red* if the page required more than 200 queries
50
 
51
+
52
+ = Other Notes =
53
+
54
+ * For complete usage instructions visit [Plugin Documentation](http://tiguandesign.com/docs/speed-booster/)
55
+ * Thanks to [Jason Penney](http://jasonpenney.net/) for Google Libraries feature.
56
 
57
  == Installation ==
58
 
63
  5. A new sub menu item `Speed Booster Pack` will appear in your main Settings menu.
64
 
65
  == Screenshots ==
66
+ 1. Plugin options page, simple view (v1.4)
67
 
68
  == Changelog ==
69
 
70
+ = 1.4 =
71
+ * Added two features options: one to remove extra Font Awesome stylesheets added to your theme by certain plugins, if Font Awesome is already used in your theme and the other to remove WordPress Version Number.
72
+
73
  = 1.3 =
74
  * Fixed strict standards error: redefining already defined constructor for class.
75
 
speed-booster-pack.php CHANGED
@@ -3,7 +3,7 @@
3
  * Plugin Name: Speed Booster Pack
4
  * Plugin URI: http://tiguandesign.com
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: 1.3
7
  * Author: Tiguan
8
  * Author URI: http://themeforest.net/user/Tiguan
9
  * License: GPLv2
@@ -11,19 +11,19 @@
11
 
12
  /* Copyright 2014 Tiguan (email : themesupport [at] tiguandesign [dot] com)
13
 
14
- This program is free software; you can redistribute it and/or modify
15
- it under the terms of the GNU General Public License as published by
16
- the Free Software Foundation; either version 2 of the License, or
17
- (at your option) any later version.
18
 
19
- This program is distributed in the hope that it will be useful,
20
- but WITHOUT ANY WARRANTY; without even the implied warranty of
21
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
22
- GNU General Public License for more details.
23
 
24
- You should have received a copy of the GNU General Public License
25
- along with this program; if not, write to the Free Software
26
- Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
27
  */
28
 
29
  /*----------------------------------------------
@@ -38,7 +38,7 @@ $sbp_options = get_option( 'sbp_settings', 'checked' ); // retrieve the plugin s
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', 'v1.3'); // Defining plugin version
42
 
43
 
44
  /*----------------------------------------------
3
  * Plugin Name: Speed Booster Pack
4
  * Plugin URI: http://tiguandesign.com
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: 1.4
7
  * Author: Tiguan
8
  * Author URI: http://themeforest.net/user/Tiguan
9
  * License: GPLv2
11
 
12
  /* Copyright 2014 Tiguan (email : themesupport [at] tiguandesign [dot] com)
13
 
14
+ THIS PROGRAM IS FREE SOFTWARE; YOU CAN REDISTRIBUTE IT AND/OR MODIFY
15
+ IT UNDER THE TERMS OF THE GNU GENERAL PUBLIC LICENSE AS PUBLISHED BY
16
+ THE FREE SOFTWARE FOUNDATION; EITHER VERSION 2 OF THE LICENSE, OR
17
+ (AT YOUR OPTION) ANY LATER VERSION.
18
 
19
+ THIS PROGRAM IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL,
20
+ BUT WITHOUT ANY WARRANTY; WITHOUT EVEN THE IMPLIED WARRANTY OF
21
+ MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. SEE THE
22
+ GNU GENERAL PUBLIC LICENSE FOR MORE DETAILS.
23
 
24
+ YOU SHOULD HAVE RECEIVED A COPY OF THE GNU GENERAL PUBLIC LICENSE
25
+ ALONG WITH THIS PROGRAM; IF NOT, WRITE TO THE FREE SOFTWARE
26
+ FOUNDATION, INC., 51 FRANKLIN ST, FIFTH FLOOR, BOSTON, MA 02110-1301 USA
27
  */
28
 
29
  /*----------------------------------------------
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', 'v1.4'); // Defining plugin version
42
 
43
 
44
  /*----------------------------------------------