From 4b4b572ea52a339104b56d512b56ef5f5d578b54 Mon Sep 17 00:00:00 2001 From: Sasha Ivanenko <46720998+girafffee@users.noreply.github.com> Date: Thu, 15 Feb 2024 14:28:48 +0200 Subject: [PATCH] ver: 3.3.2 & readme --- README.md | 5 +++++ jet-form-builder.php | 4 ++-- modules/rich-content/macros-parser.php | 2 +- readme.txt | 7 ++++++- vendor/composer/installed.php | 4 ++-- 5 files changed, 16 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index b6666f783..651b5fa9e 100644 --- a/README.md +++ b/README.md @@ -4,6 +4,11 @@ Advanced form builder plugin for Gutenberg. Create forms from the ground up, cus # ChangeLog +## 3.3.2 +* FIX: Use macros in Send Email when verifying a submission or processing a gateway. +* FIX: Apply advanced validation for optional field +* Tweak: Support for old namespaces for Radio, Select, Checkbox classes + ## 3.3.1 * ADD: Implementing rich content using the "jet-form-builder/rich-content" filter. It supports shortcodes, macros with field names (usually used in action settings) and dynamic preset (JSON-style) diff --git a/jet-form-builder.php b/jet-form-builder.php index eda77522a..d24ccc1c7 100644 --- a/jet-form-builder.php +++ b/jet-form-builder.php @@ -3,7 +3,7 @@ * Plugin Name: JetFormBuilder * Plugin URI: https://jetformbuilder.com/ * Description: Advanced form builder plugin for WordPress block editor. Create forms from the ground up, customize the existing ones, and style them up – all in one editor. - * Version: 3.3.1 + * Version: 3.3.2 * Author: Crocoblock * Author URI: https://crocoblock.com/ * Text Domain: jet-form-builder @@ -17,7 +17,7 @@ die(); } -const JET_FORM_BUILDER_VERSION = '3.3.1'; +const JET_FORM_BUILDER_VERSION = '3.3.2'; const JET_FORM_BUILDER__FILE__ = __FILE__; const JET_FORM_BUILDER_SITE = 'https://jetformbuilder.com'; diff --git a/modules/rich-content/macros-parser.php b/modules/rich-content/macros-parser.php index 37c785a4c..05371f9e1 100644 --- a/modules/rich-content/macros-parser.php +++ b/modules/rich-content/macros-parser.php @@ -134,7 +134,7 @@ protected function verbose_repeater( array $items, $name ) { $this->maybe_parse_if_array( $value ) ); } - $result .= ( $counter ++ ) . ') ' . implode( ', ', $item_data ) . ';
'; + $result .= ( $counter++ ) . ') ' . implode( ', ', $item_data ) . ';
'; } return $result; diff --git a/readme.txt b/readme.txt index 2a059abca..c24555536 100644 --- a/readme.txt +++ b/readme.txt @@ -4,7 +4,7 @@ Tags: blocks, forms, form builder, contact form, gutenberg, gutenberg forms, mul Requires at least: 6.0 Tested up to: 6.4.3 Requires PHP: 7.0 -Stable tag: 3.3.1 +Stable tag: 3.3.2 License: GPLv2 or later License URI: http://www.gnu.org/licenses/gpl-2.0.html @@ -272,6 +272,11 @@ Once you set the 'crocoblock/jetformbuilder', 'pretty_version' => 'dev-main', 'version' => 'dev-main', - 'reference' => '8680e5f3d97cbae1518737543c672d8098a4ba47', + 'reference' => 'a6f8d27d1b3d3117df83bdb12904afb67d52029a', 'type' => 'wordpress-plugin', 'install_path' => __DIR__ . '/../../', 'aliases' => array(), @@ -13,7 +13,7 @@ 'crocoblock/jetformbuilder' => array( 'pretty_version' => 'dev-main', 'version' => 'dev-main', - 'reference' => '8680e5f3d97cbae1518737543c672d8098a4ba47', + 'reference' => 'a6f8d27d1b3d3117df83bdb12904afb67d52029a', 'type' => 'wordpress-plugin', 'install_path' => __DIR__ . '/../../', 'aliases' => array(),