diff --git a/readme.txt b/readme.txt index 72682c0df..72d6b2033 100644 --- a/readme.txt +++ b/readme.txt @@ -5,7 +5,7 @@ Tags: woocommerce, pdf, ubl, invoices, packing slips Requires at least: 4.4 Tested up to: 6.5 Requires PHP: 7.2 -Stable tag: 3.8.2 +Stable tag: 3.8.3 License: GPLv2 or later License URI: http://www.gnu.org/licenses/gpl-2.0.html @@ -102,6 +102,22 @@ There's a setting on the Advanced tab of the settings page that allows you to to == Changelog == += 3.8.3 (2024-06-04) = +* New: adds language attribute to PDF HTML +* New: Dompdf `v3.0.0` upgrade +* New: filter hook `wpo_wcpdf_after_system_status_table` +* New: filter for server configs `wpo_wcpdf_advanced_status_server_configs` +* New: PDFJS `v3.11.174` upgrade +* Tweak: adds `p` as allowed tag of the `wpo_wcpdf_sanitize_html_content()` function +* Fix: number formatting `[order_number]` placeholder not using parent order number on Credit Notes +* Fix: remove unwanted tags from `wpo_wcpdf_sanitize_html_content()` +* Fix: removes unused "Log invoice number generation" setting +* Fix: reverts the `customer_invoice` email title to the original Woo title +* Fix: the function `get_extensions_license_data()` returning empty if no cached data found +* Fix: bug created by the output of the function `wpo_wcpdf_sanitize_html_content()` being `null` +* Translations: Updated translation template (POT) +* Tested up to WooCommerce 9.0 + = 3.8.2 (2024-04-29) = * Fix: "Customer Invoice" email title under "Send order email" metabox * Fix: filter called with a refund object in `get_billing_address()` and `get_shipping_address()` diff --git a/woocommerce-pdf-invoices-packingslips.php b/woocommerce-pdf-invoices-packingslips.php index 53336f79c..870feaa68 100644 --- a/woocommerce-pdf-invoices-packingslips.php +++ b/woocommerce-pdf-invoices-packingslips.php @@ -4,14 +4,14 @@ * Requires Plugins: woocommerce * Plugin URI: https://wpovernight.com/downloads/woocommerce-pdf-invoices-packing-slips-bundle/ * Description: Create, print & email PDF or UBL Invoices & PDF Packing Slips for WooCommerce orders. - * Version: 3.8.3-beta-2 + * Version: 3.8.3 * Author: WP Overnight * Author URI: https://www.wpovernight.com * License: GPLv2 or later * License URI: https://opensource.org/licenses/gpl-license.php * Text Domain: woocommerce-pdf-invoices-packing-slips * WC requires at least: 3.3 - * WC tested up to: 8.9 + * WC tested up to: 9.0 */ if ( ! defined( 'ABSPATH' ) ) { @@ -22,7 +22,7 @@ class WPO_WCPDF { - public $version = '3.8.3-beta-2'; + public $version = '3.8.3'; public $version_php = '7.2'; public $version_woo = '3.3'; public $version_wp = '4.4';