Skip to content

Commit 5aacfc8

Browse files
committed
🔖 Prepare version 1.4.2
1 parent 145d8a6 commit 5aacfc8

File tree

3 files changed

+18
-7
lines changed

3 files changed

+18
-7
lines changed

‎CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# Changelog
22

3+
## 1.4.2
4+
* Fixed: Validation issues for separated date fields
5+
* Fixed: Line breaks in labels are no more removed in the email
6+
* Fixed: Error text for a field too large to upload does not indicate anymore that it has been uploaded
7+
38
## 1.4.1
49
* Improved: The notice for required fields is now above the form for enhanced accessibility
510
* Fixed: Gaps in certain browsers from hidden input fields

‎form-block.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,15 +18,15 @@
1818
Plugin Name: Form Block
1919
Plugin URI: https://formblock.pro/en/
2020
Description: An extensive yet user-friendly form block.
21-
Version: 1.4.1
21+
Version: 1.4.2
2222
Author: Epiphyt
2323
Author URI: https://epiph.yt
2424
License: GPL2
2525
License URI: https://www.gnu.org/licenses/gpl-2.0.html
2626
Requires at least: 6.3
2727
Requires PHP: 5.6
2828
Tags: form, blocks, block editor, email, contact form
29-
Tested up to: 6.6
29+
Tested up to: 6.7
3030
Text Domain: form-block
3131
3232
Form Block is free software: you can redistribute it and/or modify
@@ -46,7 +46,7 @@
4646
// exit if ABSPATH is not defined
4747
defined( 'ABSPATH' ) || exit;
4848

49-
define( 'FORM_BLOCK_VERSION', '1.4.1' );
49+
define( 'FORM_BLOCK_VERSION', '1.4.2' );
5050

5151
if ( ! defined( 'EPI_FORM_BLOCK_BASE' ) ) {
5252
define( 'EPI_FORM_BLOCK_BASE', WP_PLUGIN_DIR . '/form-block/' );
@@ -79,7 +79,7 @@ function disable_plugin() {
7979
/**
8080
* Autoload all necessary classes.
8181
*
82-
* @param string $class The class name of the autoloaded class
82+
* @param string $class The class name of the auto-loaded class
8383
*/
8484
spl_autoload_register( function( string $class ) {
8585
$namespace = strtolower( __NAMESPACE__ . '\\' );

‎readme.txt

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
Contributors: epiphyt, kittmedia
33
Tags: form, contact form, gutenberg, block editor, accessibility
44
Requires at least: 6.3
5-
Stable tag: 1.4.1
6-
Tested up to: 6.6
5+
Stable tag: 1.4.2
6+
Tested up to: 6.7
77
Requires PHP: 7.4
88
License: GPL2
99
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
5252
* Custom recipient(s) for each form
5353
* Custom form action
5454
* Upload via drag and drop
55+
* Storing files in WordPress instead of attaching them to an email
5556
* Global defined consent checkbox
5657
* Field dependencies
5758

@@ -87,14 +88,19 @@ The code is open source and hosted on [GitHub](https://github.com/epiphyt/form-b
8788

8889
= Who are you, folks? =
8990

90-
We are [Epiphyt](https://epiph.yt/), your friendly neighborhood WordPress plugin shop from southern Germany.
91+
We are [Epiphyt](https://epiph.yt/en/), your friendly neighborhood WordPress plugin shop from southern Germany.
9192

9293
= How can I report security bugs? =
9394

9495
You can report security bugs through the Patchstack Vulnerability Disclosure Program. The Patchstack team help validate, triage and handle any security vulnerabilities. [Report a security vulnerability.](https://patchstack.com/database/vdp/form-block)
9596

9697
== Changelog ==
9798

99+
= 1.4.2 =
100+
* Fixed: Validation issues for separated date fields
101+
* Fixed: Line breaks in labels are no more removed in the email
102+
* Fixed: Error text for a field too large to upload does not indicate anymore that it has been uploaded
103+
98104
= 1.4.1 =
99105
* Improved: The notice for required fields is now above the form for enhanced accessibility
100106
* Fixed: Gaps in certain browsers from hidden input fields

0 commit comments

Comments
 (0)