Skip to content

Commit

Permalink
🔖 Prepare version 1.4.1
Browse files Browse the repository at this point in the history
  • Loading branch information
MatzeKitt committed Sep 2, 2024
1 parent 526cecc commit f3cfb9f
Show file tree
Hide file tree
Showing 3 changed files with 30 additions and 13 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
25 changes: 14 additions & 11 deletions form-block.php
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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/' );
Expand Down
11 changes: 9 additions & 2 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.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
Expand Down Expand Up @@ -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
Expand Down

0 comments on commit f3cfb9f

Please sign in to comment.