From f3cfb9fc79e9337ace4e71a83d53be565f0a6282 Mon Sep 17 00:00:00 2001 From: Matthias Kittsteiner Date: Mon, 2 Sep 2024 16:37:25 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=96=20Prepare=20version=201.4.1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- CHANGELOG.md | 7 +++++++ form-block.php | 25 ++++++++++++++----------- readme.txt | 11 +++++++++-- 3 files changed, 30 insertions(+), 13 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 632e149..487c503 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## 1.4.1 +* Improved: The notice for required fields is now above the form for enhanced accessibility +* Fixed: Gaps in certain browsers from hidden input fields +* Fixed: The value of hidden input fields is now populated in the frontend +* Fixed: Options without a label now correctly show the value in the select +* Fixed: Potential PHP warning for split date and time fields + ## 1.4.0 * Added: Custom separated date fields (read [the announcement for more information](https://epiph.yt/en/blog/2024/form-block-1-4-0-release-and-opinions-on-date-pickers/)) * Added: All supported input types that were previously only part of the Pro version diff --git a/form-block.php b/form-block.php index fd56c58..314fc33 100644 --- a/form-block.php +++ b/form-block.php @@ -15,16 +15,19 @@ use const WP_PLUGIN_DIR; /* -Plugin Name: Form Block -Plugin URI: https://formblock.pro/en/ -Description: An extensive yet user-friendly form block. -Version: 1.4.0 -Author: Epiphyt -Author URI: https://epiph.yt -License: GPL2 -License URI: https://www.gnu.org/licenses/gpl-2.0.html -Tags: form, blocks, block editor, email, contact form -Text Domain: form-block +Plugin Name: Form Block +Plugin URI: https://formblock.pro/en/ +Description: An extensive yet user-friendly form block. +Version: 1.4.1 +Author: Epiphyt +Author URI: https://epiph.yt +License: GPL2 +License URI: https://www.gnu.org/licenses/gpl-2.0.html +Requires at least: 6.3 +Requires PHP: 5.6 +Tags: form, blocks, block editor, email, contact form +Tested up to: 6.6 +Text Domain: form-block Form Block is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -43,7 +46,7 @@ // exit if ABSPATH is not defined defined( 'ABSPATH' ) || exit; -define( 'FORM_BLOCK_VERSION', '1.4.0' ); +define( 'FORM_BLOCK_VERSION', '1.4.1' ); if ( ! defined( 'EPI_FORM_BLOCK_BASE' ) ) { define( 'EPI_FORM_BLOCK_BASE', WP_PLUGIN_DIR . '/form-block/' ); diff --git a/readme.txt b/readme.txt index 47c567a..18254e7 100644 --- a/readme.txt +++ b/readme.txt @@ -2,8 +2,8 @@ Contributors: epiphyt, kittmedia Tags: form, contact form, gutenberg, block editor, accessibility Requires at least: 6.3 -Stable tag: 1.4.0 -Tested up to: 6.5 +Stable tag: 1.4.1 +Tested up to: 6.6 Requires PHP: 7.4 License: GPL2 License URI: https://www.gnu.org/licenses/gpl-2.0.html @@ -95,6 +95,13 @@ You can report security bugs through the Patchstack Vulnerability Disclosure Pro == Changelog == += 1.4.1 = +* Improved: The notice for required fields is now above the form for enhanced accessibility +* Fixed: Gaps in certain browsers from hidden input fields +* Fixed: The value of hidden input fields is now populated in the frontend +* Fixed: Options without a label now correctly show the value in the select +* Fixed: Potential PHP warning for split date and time fields + = 1.4.0 = * Added: Custom separated date fields (read [the announcement for more information](https://epiph.yt/en/blog/2024/form-block-1-4-0-release-and-opinions-on-date-pickers/)) * Added: All supported input types that were previously only part of the Pro version