Skip to content

Commit

Permalink
Upd: readme & ver: 3.2.1
Browse files Browse the repository at this point in the history
girafffee committed Dec 4, 2023
1 parent f50462a commit 422a8d4
Showing 3 changed files with 27 additions and 3 deletions.
12 changes: 12 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -4,6 +4,18 @@ Advanced form builder plugin for Gutenberg. Create forms from the ground up, cus

# ChangeLog

## 3.2.1
* ADD: Number-related sanitizers for fields
* ADD: Now you can write `<div data-jfb-macro="field_name"></div>` instead of `<!--JFB_FIELD::field_name-->`
* ADD: Random String option in Field Value for Hidden Field
* FIX: Prevent appearance of the select field in Safari browser
* FIX: Style controls for JetForm element in Bricks Builder
* FIX: Minor accessibility errors
* FIX: Prevent style WYSIWYG editor by the theme or global styles
* FIX: Issue with Enter key when entering Japanese IME
* FIX: Advanced choices don't work with the Radio Field
* FIX: Input mask saves the unmasked value on blur (lost focus)

## 3.2.0
* ADD: Email Verification
* ADD: Widget "JetForm" for Bricks editor
4 changes: 2 additions & 2 deletions jet-form-builder.php
Original file line number Diff line number Diff line change
@@ -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.2.0
* Version: 3.2.1
* Author: Crocoblock
* Author URI: https://crocoblock.com/
* Text Domain: jet-form-builder
@@ -19,7 +19,7 @@

function jet_form_builder_init() {

define( 'JET_FORM_BUILDER_VERSION', '3.2.0' );
define( 'JET_FORM_BUILDER_VERSION', '3.2.1' );

define( 'JET_FORM_BUILDER__FILE__', __FILE__ );
define( 'JET_FORM_BUILDER_PLUGIN_BASE', plugin_basename( JET_FORM_BUILDER__FILE__ ) );
14 changes: 13 additions & 1 deletion readme.txt
Original file line number Diff line number Diff line change
@@ -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.1
Requires PHP: 7.0
Stable tag: 3.2.0
Stable tag: 3.2.1
License: GPLv2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html

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

== Changelog ==

**3.2.1**
- ADD: Number-related sanitizers for fields
- ADD: Now you can write `<div data-jfb-macro="field_name"></div>` instead of `<!--JFB_FIELD::field_name-->`
- ADD: Random String option in Field Value for Hidden Field
- FIX: Prevent appearance of the select field in Safari browser
- FIX: Style controls for JetForm element in Bricks Builder
- FIX: Minor accessibility errors
- FIX: Prevent style WYSIWYG editor by the theme or global styles
- FIX: Issue with Enter key when entering Japanese IME
- FIX: Advanced choices don't work with the Radio Field
- FIX: Input mask saves the unmasked value on blur (lost focus)

**3.2.0**
- ADD: Email Verification
- ADD: Widget "JetForm" for Bricks editor

0 comments on commit 422a8d4

Please sign in to comment.