From dfbf65004c1abd6e595706fd3a22982e7ff66c21 Mon Sep 17 00:00:00 2001 From: Alexandre Faustino Date: Tue, 15 Aug 2023 14:32:32 +0100 Subject: [PATCH] v3.6.0 --- readme.txt | 18 +++++++++++++++++- woocommerce-pdf-invoices-packingslips.php | 6 +++--- 2 files changed, 20 insertions(+), 4 deletions(-) diff --git a/readme.txt b/readme.txt index 2b0f2149f..c6ae8224b 100644 --- a/readme.txt +++ b/readme.txt @@ -5,7 +5,7 @@ Tags: woocommerce, pdf, invoices, packing slips, print, delivery notes, invoice, Requires at least: 3.5 Tested up to: 6.3 Requires PHP: 7.1 -Stable tag: 3.5.6 +Stable tag: 3.6.0 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 Status tab of the settings page that allows you to togg == Changelog == += 3.6.0 (2023-08-15) = +* New: setting for improved document link access type +* New: implemented autoloader for plugin classes +* New: adds a new Status tool to reset plugin settings +* New: invoice number column added to the WooCommerce order analytics +* Fix: replaces `utf8_decode()` which is deprecated in PHP 8.2 +* Fix: allows the translation for the Shipping Notes strings +* Fix: bug when trying to delete temporary files when using mPDF extension +* Fix: bug on `$updater` returning `null` in Upgrade tab function +* Fix: deprecates `woocommerce_resend_order_emails_available` filter +* Fix: several string typos +* Fix: revert breaking long characters in order data labels +* Fix: PHP8.2 creation of dynamic property deprecated warnings +* Translations: Updated translation template (POT) +* Tested up to WooCommerce 8.0 & WordPress 6.3 + = 3.5.6 (2023-06-21) = * New: adds a generic shortcode `[wcpdf_download_pdf]` for PDF download links * New: bump preview PDFJS library to v3.7.107 diff --git a/woocommerce-pdf-invoices-packingslips.php b/woocommerce-pdf-invoices-packingslips.php index 3298cb3ae..12fc28c88 100644 --- a/woocommerce-pdf-invoices-packingslips.php +++ b/woocommerce-pdf-invoices-packingslips.php @@ -3,14 +3,14 @@ * Plugin Name: PDF Invoices & Packing Slips for WooCommerce * Plugin URI: https://wpovernight.com/downloads/woocommerce-pdf-invoices-packing-slips-bundle/ * Description: Create, print & email PDF invoices & packing slips for WooCommerce orders. - * Version: 3.5.6 + * Version: 3.6.0 * 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.0 - * WC tested up to: 7.8 + * WC tested up to: 8.0 */ if ( ! defined( 'ABSPATH' ) ) { @@ -21,7 +21,7 @@ class WPO_WCPDF { - public $version = '3.5.6'; + public $version = '3.6.0'; public $plugin_basename; public $legacy_mode; public $legacy_textdomain;