From 9361268b96ab3459890af905e81f51a5ebf9c6d9 Mon Sep 17 00:00:00 2001 From: "themeisle[bot]" Date: Mon, 1 Jul 2024 13:52:27 +0000 Subject: [PATCH] chore(release): 32.0.23 ##### [Version 32.0.23](https://github.com/Codeinwp/woocommerce-product-addon/compare/v32.0.22...v32.0.23) (2024-07-01) - Fixed hard rejection of cart items when HTML is present in the input value - Fixed infinite popup for file uploads under visibility conditions - Fixed .ai files to be allowed for upload --- CHANGELOG.md | 6 ++++++ package.json | 2 +- readme.txt | 11 ++++++++++- woocommerce-product-addon.php | 4 ++-- 4 files changed, 19 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ebf61549..c9e44958 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,9 @@ +##### [Version 32.0.23](https://github.com/Codeinwp/woocommerce-product-addon/compare/v32.0.22...v32.0.23) (2024-07-01) + +- Fixed hard rejection of cart items when HTML is present in the input value +- Fixed infinite popup for file uploads under visibility conditions +- Fixed .ai files to be allowed for upload + ##### [Version 32.0.22](https://github.com/Codeinwp/woocommerce-product-addon/compare/v32.0.21...v32.0.22) (2024-05-20) - Fixed error when products with PPOM fields are not added to the cart diff --git a/package.json b/package.json index f7ca450a..5cdf8eb5 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "woocommerce-product-addon", - "version": "32.0.22", + "version": "32.0.23", "description": "PPOM for WooCommerce", "main": "index.js", "repository": "https://github.com/Codeinwp/woocommerce-product-addon", diff --git a/readme.txt b/readme.txt index 9fed6ab5..644f0cf3 100644 --- a/readme.txt +++ b/readme.txt @@ -3,7 +3,7 @@ Contributors: themeisle Tags: woocommerce product addons, woocommerce product options, woocommerce product fields, woocommerce product, woocommerce product addon Requires at least: 3.5 Tested up to: 6.5 -Stable tag: 32.0.22 +Stable tag: 32.0.23 License: GPLv2 License URI: http://www.gnu.org/licenses/gpl-2.0.html Requires PHP: 7.2 @@ -122,6 +122,15 @@ If you feels that PPOM Free or PPOM PRO versions are not enough for your needs, == Changelog == +##### [Version 32.0.23](https://github.com/Codeinwp/woocommerce-product-addon/compare/v32.0.22...v32.0.23) (2024-07-01) + +- Fixed hard rejection of cart items when HTML is present in the input value +- Fixed infinite popup for file uploads under visibility conditions +- Fixed .ai files to be allowed for upload + + + + ##### [Version 32.0.22](https://github.com/Codeinwp/woocommerce-product-addon/compare/v32.0.21...v32.0.22) (2024-05-20) - Fixed error when products with PPOM fields are not added to the cart diff --git a/woocommerce-product-addon.php b/woocommerce-product-addon.php index 0c19af81..b1d6116b 100644 --- a/woocommerce-product-addon.php +++ b/woocommerce-product-addon.php @@ -3,7 +3,7 @@ * Plugin Name: PPOM for WooCommerce * Plugin URI: https://themeisle.com/plugins/ppom-pro/ * Description: PPOM (Personalized Product Meta Manager) plugin allow WooCommerce Store Admin to create unlimited input fields and files to attach with Product Pages. - * Version: 32.0.22 + * Version: 32.0.23 * Author: Themeisle * Text Domain: woocommerce-product-addon * Domain Path: /languages @@ -26,7 +26,7 @@ define( 'PPOM_URL', untrailingslashit( plugin_dir_url( __FILE__ ) ) ); define( 'PPOM_WP_PLUGIN_DIR', untrailingslashit( plugin_dir_path( __DIR__ ) ) ); define( 'PPOM_BASENAME', basename( PPOM_WP_PLUGIN_DIR ) ); -define( 'PPOM_VERSION', '32.0.22' ); +define( 'PPOM_VERSION', '32.0.23' ); define( 'PPOM_DB_VERSION', '30.1.0' ); define( 'PPOM_PRODUCT_META_KEY', '_product_meta_id' ); define( 'PPOM_TABLE_META', 'nm_personalized' );