Skip to content

Commit

Permalink
v3.6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
alexmigf committed Aug 15, 2023
1 parent 8c6ead1 commit dfbf650
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 4 deletions.
18 changes: 17 additions & 1 deletion readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down Expand Up @@ -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
Expand Down
6 changes: 3 additions & 3 deletions woocommerce-pdf-invoices-packingslips.php
Original file line number Diff line number Diff line change
Expand Up @@ -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' ) ) {
Expand All @@ -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;
Expand Down

0 comments on commit dfbf650

Please sign in to comment.