Skip to content

Commit

Permalink
🔖 Prepare version 1.4.2
Browse files Browse the repository at this point in the history
  • Loading branch information
MatzeKitt committed Nov 4, 2024
1 parent 145d8a6 commit 5aacfc8
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 7 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
8 changes: 4 additions & 4 deletions form-block.php
Original file line number Diff line number Diff line change
Expand Up @@ -18,15 +18,15 @@
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
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
Tested up to: 6.7
Text Domain: form-block
Form Block is free software: you can redistribute it and/or modify
Expand All @@ -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/' );
Expand Down Expand Up @@ -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__ . '\\' );
Expand Down
12 changes: 9 additions & 3 deletions readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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

Expand Down Expand Up @@ -87,14 +88,19 @@ 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? =

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)

== 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
Expand Down

0 comments on commit 5aacfc8

Please sign in to comment.