diff --git a/CHANGELOG.md b/CHANGELOG.md index 487c503..eede6a7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,10 @@ # Changelog +## 1.4.2 +* Fixed: Validation issues for separated date fields +* Fixed: Line breaks in labels are no more removed in the email +* Fixed: Error text for a field too large to upload does not indicate anymore that it has been uploaded + ## 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 diff --git a/form-block.php b/form-block.php index 314fc33..78f743f 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.4.1 +Version: 1.4.2 Author: Epiphyt Author URI: https://epiph.yt License: GPL2 @@ -26,7 +26,7 @@ Requires at least: 6.3 Requires PHP: 5.6 Tags: form, blocks, block editor, email, contact form -Tested up to: 6.6 +Tested up to: 6.7 Text Domain: form-block Form Block is free software: you can redistribute it and/or modify @@ -46,7 +46,7 @@ // exit if ABSPATH is not defined defined( 'ABSPATH' ) || exit; -define( 'FORM_BLOCK_VERSION', '1.4.1' ); +define( 'FORM_BLOCK_VERSION', '1.4.2' ); if ( ! defined( 'EPI_FORM_BLOCK_BASE' ) ) { define( 'EPI_FORM_BLOCK_BASE', WP_PLUGIN_DIR . '/form-block/' ); @@ -79,7 +79,7 @@ function disable_plugin() { /** * Autoload all necessary classes. * - * @param string $class The class name of the autoloaded class + * @param string $class The class name of the auto-loaded class */ spl_autoload_register( function( string $class ) { $namespace = strtolower( __NAMESPACE__ . '\\' ); diff --git a/readme.txt b/readme.txt index 18254e7..74e5d95 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.1 -Tested up to: 6.6 +Stable tag: 1.4.2 +Tested up to: 6.7 Requires PHP: 7.4 License: GPL2 License URI: https://www.gnu.org/licenses/gpl-2.0.html @@ -52,6 +52,7 @@ There is also a Pro version of Form Block available. It offers additional featur * Custom recipient(s) for each form * Custom form action * Upload via drag and drop +* Storing files in WordPress instead of attaching them to an email * Global defined consent checkbox * Field dependencies @@ -87,7 +88,7 @@ The code is open source and hosted on [GitHub](https://github.com/epiphyt/form-b = Who are you, folks? = -We are [Epiphyt](https://epiph.yt/), your friendly neighborhood WordPress plugin shop from southern Germany. +We are [Epiphyt](https://epiph.yt/en/), your friendly neighborhood WordPress plugin shop from southern Germany. = How can I report security bugs? = @@ -95,6 +96,11 @@ You can report security bugs through the Patchstack Vulnerability Disclosure Pro == Changelog == += 1.4.2 = +* Fixed: Validation issues for separated date fields +* Fixed: Line breaks in labels are no more removed in the email +* Fixed: Error text for a field too large to upload does not indicate anymore that it has been uploaded + = 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