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 | Speed Booster Pack |
Version | 1.4 |
Comparing to | |
See all releases |
Code changes from version 1.3 to 1.4
- inc/core.php +31 -0
- inc/template/options.php +11 -0
- lang/sb-pack.mo +0 -0
- lang/sb-pack.po +135 -126
- readme.txt +13 -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 |
-
"
|
6 |
-
"
|
7 |
-
"
|
8 |
-
"
|
9 |
-
"
|
10 |
-
"
|
11 |
-
"
|
12 |
-
"
|
13 |
-
"X-
|
14 |
-
"X-Poedit-
|
15 |
-
"X-Poedit-
|
16 |
-
|
17 |
-
|
18 |
-
|
19 |
-
|
20 |
-
|
21 |
-
|
22 |
-
|
23 |
-
|
24 |
-
|
25 |
-
|
26 |
-
|
27 |
-
|
28 |
-
|
29 |
-
|
30 |
-
|
31 |
-
|
32 |
-
|
33 |
-
|
34 |
-
|
35 |
-
|
36 |
-
|
37 |
-
|
38 |
-
|
39 |
-
|
40 |
-
|
41 |
-
|
42 |
-
|
43 |
-
|
44 |
-
|
45 |
-
|
46 |
-
|
47 |
-
|
48 |
-
|
49 |
-
|
50 |
-
|
51 |
-
|
52 |
-
|
53 |
-
|
54 |
-
|
55 |
-
|
56 |
-
|
57 |
-
|
58 |
-
|
59 |
-
|
60 |
-
|
61 |
-
|
62 |
-
|
63 |
-
|
64 |
-
|
65 |
-
|
66 |
-
|
67 |
-
|
68 |
-
|
69 |
-
|
70 |
-
|
71 |
-
|
72 |
-
|
73 |
-
|
74 |
-
|
75 |
-
|
76 |
-
|
77 |
-
|
78 |
-
|
79 |
-
|
80 |
-
|
81 |
-
|
82 |
-
|
83 |
-
|
84 |
-
|
85 |
-
|
86 |
-
|
87 |
-
|
88 |
-
|
89 |
-
|
90 |
-
|
91 |
-
|
92 |
-
|
93 |
-
|
94 |
-
|
95 |
-
|
96 |
-
|
97 |
-
|
98 |
-
|
99 |
-
|
100 |
-
|
101 |
-
|
102 |
-
|
103 |
-
|
104 |
-
|
105 |
-
|
106 |
-
|
107 |
-
|
108 |
-
|
109 |
-
|
110 |
-
|
111 |
-
|
112 |
-
|
113 |
-
|
114 |
-
|
115 |
-
|
116 |
-
|
117 |
-
|
118 |
-
|
119 |
-
|
120 |
-
|
121 |
-
|
122 |
-
|
123 |
-
|
124 |
-
|
125 |
-
|
126 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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.
|
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
|
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 |
-
|
|
|
|
|
|
|
|
|
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.
|
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.
|
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 |
-
|
15 |
-
|
16 |
-
|
17 |
-
(
|
18 |
|
19 |
-
|
20 |
-
|
21 |
-
MERCHANTABILITY
|
22 |
-
GNU
|
23 |
|
24 |
-
|
25 |
-
|
26 |
-
|
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.
|
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 |
/*----------------------------------------------
|