From 80da7cbad8ffa3f5dc7913dc42704f711675da6c Mon Sep 17 00:00:00 2001 From: Matthias Kittsteiner Date: Wed, 9 Aug 2023 17:27:55 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=96=20Prepare=20version=201.1.3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- CHANGELOG.md | 4 ++++ form-block.php | 4 ++-- readme.txt | 8 ++++++-- 3 files changed, 12 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index fdd2966..e4586cc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## 1.1.3 +* Fixed: Invalid fields are now marked via `aria-invalid` for better accessibility +* Fixed: Added `aria-hidden="true"` to the asterisk, marking a field as required, for better accessibility + ## 1.1.2 * Fixed: Issue storing form data for forms when they are in another block (e.g. in a column) diff --git a/form-block.php b/form-block.php index 6d16d50..a01dd8d 100644 --- a/form-block.php +++ b/form-block.php @@ -18,7 +18,7 @@ Plugin Name: Form Block Plugin URI: https://formblock.pro/en/ Description: An extensive yet user-friendly form block. -Version: 1.1.2 +Version: 1.1.3 Author: Epiphyt Author URI: https://epiph.yt License: GPL2 @@ -43,7 +43,7 @@ // exit if ABSPATH is not defined defined( 'ABSPATH' ) || exit; -define( 'FORM_BLOCK_VERSION', '1.1.2' ); +define( 'FORM_BLOCK_VERSION', '1.1.3' ); 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 39f2bdc..92d21a7 100644 --- a/readme.txt +++ b/readme.txt @@ -2,8 +2,8 @@ Contributors: epiphyt, kittmedia Tags: contact, form, contact form, gutenberg, block editor Requires at least: 6.0 -Stable tag: 1.1.2 -Tested up to: 6.2 +Stable tag: 1.1.3 +Tested up to: 6.3 Requires PHP: 7.4 License: GPL2 License URI: https://www.gnu.org/licenses/gpl-2.0.html @@ -43,6 +43,10 @@ We are [Epiphyt](https://epiph.yt/), your friendly neighborhood WordPress plugin == Changelog == += 1.1.3 = +* Fixed: Invalid fields are now marked via `aria-invalid` for better accessibility +* Fixed: Added `aria-hidden="true"` to the asterisk, marking a field as required, for better accessibility + = 1.1.2 = * Fixed: Issue storing form data for forms when they are in another block (e.g. in a column)