Skip to content

Commit

Permalink
v1.0.9
Browse files Browse the repository at this point in the history
  • Loading branch information
ZafarKamal123 committed Mar 21, 2020
2 parents 961b16e + 733fbbe commit fc3475e
Show file tree
Hide file tree
Showing 8 changed files with 345 additions and 2,509 deletions.
587 changes: 329 additions & 258 deletions dist/blocks.build.js

Large diffs are not rendered by default.

1,391 changes: 1 addition & 1,390 deletions dist/blocks.editor.build.css

Large diffs are not rendered by default.

857 changes: 1 addition & 856 deletions dist/blocks.style.build.css

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion plugin.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
* Description: The Next Generation WordPress Form Builder. Build forms directly within Gutenberg editor live. Add & arrange form fields like blocks.
* Author: munirkamal
* Author URI: https://cakewp.com/
* Version: 1.0.8
* Version: 1.0.9
* License: GPLv2 or later
* License URI: https://www.gnu.org/licenses/gpl-2.0.txt
*
Expand Down
7 changes: 6 additions & 1 deletion readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,12 @@ We appreciate all contributions and don't want a wall of rules to get in the way

For more information, visit [Gutenberg Forms](https://gutenbergforms.com).

= 1.0.8 =
= 1.0.9 = (21 Mar 2020)

- Fixed: Bugs
- Improved: Code

= 1.0.8 = (7 Mar 2020)

- Fixed: Bugs
- Improved: UI and organized options
Expand Down
6 changes: 5 additions & 1 deletion readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -57,8 +57,12 @@ For basic usage, you can also have a look at the plugin website [Gutenberg Forms

For more information, visit [Gutenberg Forms](https://gutenbergforms.com).

= 1.0.9 = (21 Mar 2020)

= 1.0.8 =
- Fixed: Bugs
- Improved: Code

= 1.0.8 = (7 Mar 2020)
- Fixed: Bugs
- Improved: UI and organized options
- Added: New style for radio and checkbox fields
Expand Down
2 changes: 1 addition & 1 deletion src/Form Childs/checkbox/save.js
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ function save(props) {
checked={checkbox.checked}
type="checkbox"
/>
<label for={id.concat(index.toString())}>
<label htmlFor={id.concat(index.toString())}>
{checkbox.label}

{has(checkbox, "image") && (
Expand Down
2 changes: 1 addition & 1 deletion src/Form Childs/radio/save.js
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ function save(props) {
type="radio"
checked={radio.checked}
/>
<label for={id.concat(index.toString())}>
<label htmlFor={id.concat(index.toString())}>
{radio.label}
{has(radio, "image") && (
<div className="cwp-radio-image">
Expand Down

0 comments on commit fc3475e

Please sign in to comment.