Booster for WooCommerce - Version 3.4.4

Version Description

  • 15/02/2018 =
  • Fix - PDF INVOICING & PACKING SLIPS - K_TCPDF_CALLS_IN_HTML set to true (fixes the issue with using TCPDF methods in HTML, e.g. [wcj_tcpdf_pagebreak] shortcode).
Download this release

Release Info

Developer algoritmika
Plugin Icon 128x128 Booster for WooCommerce
Version 3.4.4
Comparing to
See all releases

Code changes from version 3.4.3 to 3.4.4

includes/lib/tcpdf/config/tcpdf_config.php CHANGED
@@ -210,7 +210,14 @@ define('K_THAI_TOPCHARS', true);
210
  * If true allows to call TCPDF methods using HTML syntax
211
  * IMPORTANT: For security reason, disable this feature if you are printing user HTML content.
212
  */
213
- define('K_TCPDF_CALLS_IN_HTML', false);
 
 
 
 
 
 
 
214
 
215
  /**
216
  * If true and PHP version is greater than 5, then the Error() method throw new exception instead of terminating the execution.
210
  * If true allows to call TCPDF methods using HTML syntax
211
  * IMPORTANT: For security reason, disable this feature if you are printing user HTML content.
212
  */
213
+ /*
214
+ * Booster modification (Algoritmika)
215
+ *
216
+ * @version 3.4.4
217
+ * @since 3.4.4
218
+ */
219
+ //define('K_TCPDF_CALLS_IN_HTML', false);
220
+ define( 'K_TCPDF_CALLS_IN_HTML', true );
221
 
222
  /**
223
  * If true and PHP version is greater than 5, then the Error() method throw new exception instead of terminating the execution.
readme.txt CHANGED
@@ -3,7 +3,7 @@ Contributors: algoritmika, anbinder
3
  Tags: woocommerce, booster for woocommerce, woocommerce jetpack
4
  Requires at least: 4.4
5
  Tested up to: 4.9
6
- Stable tag: 3.4.3
7
  License: GNU General Public License v3.0
8
  License URI: http://www.gnu.org/licenses/gpl-3.0.html
9
 
@@ -180,6 +180,9 @@ You can see the differences between versions in this [table](https://booster.io/
180
 
181
  == Changelog ==
182
 
 
 
 
183
  = 3.4.3 - 14/02/2018 =
184
  * Dev - PDF INVOICING & PACKING SLIPS - Checking header image and background image to exist (before adding to PDF).
185
  * Dev - PDF INVOICING & PACKING SLIPS - Header - Header Image - Admin description expanded.
@@ -242,7 +245,7 @@ You can see the differences between versions in this [table](https://booster.io/
242
  * Fix - PDF INVOICING & PACKING SLIPS - Display & Misc. - `pre_get_posts` hook priority fixed.
243
  * Dev - PDF INVOICING & PACKING SLIPS - General - Number of Custom Documents - Limited to max 100.
244
  * Dev - PDF INVOICING & PACKING SLIPS - PDF Invoices Order Meta Box - "View" link is opened in new window now.
245
- * Dev - PDF INVOICING & PACKING SLIPS - TCPDF library version updated to v6.2.13.
246
  * Fix - EMAILS & MISC. - Admin Bar - Booster: Active - Title fixed.
247
  * Dev - EMAILS & MISC. - Admin Tools - System Info - `WCJ_SESSION_TYPE` constant info added.
248
  * Dev - EMAILS & MISC. - Custom CSS - Admin Settings - Minor restyling.
3
  Tags: woocommerce, booster for woocommerce, woocommerce jetpack
4
  Requires at least: 4.4
5
  Tested up to: 4.9
6
+ Stable tag: 3.4.4
7
  License: GNU General Public License v3.0
8
  License URI: http://www.gnu.org/licenses/gpl-3.0.html
9
 
180
 
181
  == Changelog ==
182
 
183
+ = 3.4.4 - 15/02/2018 =
184
+ * Fix - PDF INVOICING & PACKING SLIPS - `K_TCPDF_CALLS_IN_HTML` set to `true` (fixes the issue with using TCPDF methods in HTML, e.g. `[wcj_tcpdf_pagebreak]` shortcode).
185
+
186
  = 3.4.3 - 14/02/2018 =
187
  * Dev - PDF INVOICING & PACKING SLIPS - Checking header image and background image to exist (before adding to PDF).
188
  * Dev - PDF INVOICING & PACKING SLIPS - Header - Header Image - Admin description expanded.
245
  * Fix - PDF INVOICING & PACKING SLIPS - Display & Misc. - `pre_get_posts` hook priority fixed.
246
  * Dev - PDF INVOICING & PACKING SLIPS - General - Number of Custom Documents - Limited to max 100.
247
  * Dev - PDF INVOICING & PACKING SLIPS - PDF Invoices Order Meta Box - "View" link is opened in new window now.
248
+ * Dev - PDF INVOICING & PACKING SLIPS - TCPDF library version updated to v6.2.13 (was v6.0.084).
249
  * Fix - EMAILS & MISC. - Admin Bar - Booster: Active - Title fixed.
250
  * Dev - EMAILS & MISC. - Admin Tools - System Info - `WCJ_SESSION_TYPE` constant info added.
251
  * Dev - EMAILS & MISC. - Custom CSS - Admin Settings - Minor restyling.
woocommerce-jetpack.php CHANGED
@@ -3,7 +3,7 @@
3
  Plugin Name: Booster for WooCommerce
4
  Plugin URI: https://booster.io
5
  Description: Supercharge your WooCommerce site with these awesome powerful features.
6
- Version: 3.4.3
7
  Author: Algoritmika Ltd
8
  Author URI: https://booster.io
9
  Text Domain: woocommerce-jetpack
@@ -57,7 +57,7 @@ final class WC_Jetpack {
57
  * @var string
58
  * @since 2.4.7
59
  */
60
- public $version = '3.4.3';
61
 
62
  /**
63
  * @var WC_Jetpack The single instance of the class
3
  Plugin Name: Booster for WooCommerce
4
  Plugin URI: https://booster.io
5
  Description: Supercharge your WooCommerce site with these awesome powerful features.
6
+ Version: 3.4.4
7
  Author: Algoritmika Ltd
8
  Author URI: https://booster.io
9
  Text Domain: woocommerce-jetpack
57
  * @var string
58
  * @since 2.4.7
59
  */
60
+ public $version = '3.4.4';
61
 
62
  /**
63
  * @var WC_Jetpack The single instance of the class