Skip to content

Commit

Permalink
ver: 3.3.2 & readme
Browse files Browse the repository at this point in the history
  • Loading branch information
girafffee committed Feb 15, 2024
1 parent a6f8d27 commit 4b4b572
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 6 deletions.
5 changes: 5 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
4 changes: 2 additions & 2 deletions jet-form-builder.php
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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';
Expand Down
2 changes: 1 addition & 1 deletion modules/rich-content/macros-parser.php
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ protected function verbose_repeater( array $items, $name ) {
$this->maybe_parse_if_array( $value )
);
}
$result .= ( $counter ++ ) . ') ' . implode( ', ', $item_data ) . ';<br>';
$result .= ( $counter++ ) . ') ' . implode( ', ', $item_data ) . ';<br>';
}

return $result;
Expand Down
7 changes: 6 additions & 1 deletion readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down Expand Up @@ -272,6 +272,11 @@ Once you set the <a href="https://jetformbuilder.com/features/how-to-use-store-f

== 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)
Expand Down
4 changes: 2 additions & 2 deletions vendor/composer/installed.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
'name' => 'crocoblock/jetformbuilder',
'pretty_version' => 'dev-main',
'version' => 'dev-main',
'reference' => '8680e5f3d97cbae1518737543c672d8098a4ba47',
'reference' => 'a6f8d27d1b3d3117df83bdb12904afb67d52029a',
'type' => 'wordpress-plugin',
'install_path' => __DIR__ . '/../../',
'aliases' => array(),
Expand All @@ -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(),
Expand Down

0 comments on commit 4b4b572

Please sign in to comment.