Skip to content

Commit 3375608

Browse files
authored
Merge pull request #116 from libreform/release/1.5
Release 1.5
2 parents 7af837d + 57fcb7d commit 3375608

2 files changed

Lines changed: 14 additions & 3 deletions

File tree

CHANGELOG.md

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,13 @@
11
# 1.5
2-
TBA
2+
- Better client side JavaScript bundle, polyfills are now only loaded when required
3+
- Much more control for emails, straight on the invidual form level
4+
- You can now import HTML to your forms, and thus you can commit your forms to Git
5+
- Forms no longer accept dynamic fields, unless allowed with a filter
6+
- Old forms continue to work as they did
7+
- Forms now save version at which they were created, this allows us to change functionalities without breaking forms
8+
- If a form is created with an older version, you will be prompted to update the creation version
9+
- Forms are now exposed to REST API
10+
- Plugins API
11+
- Any plugin can register itself as a WPLF plugin
12+
- Lets you expose your plugin methods
13+
- Settings page support

wp-libre-form.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
* Plugin name: WP Libre Form
44
* Plugin URI: https://github.com/hencca/wp-libre-form
55
* Description: A minimal HTML form builder for WordPress; made for developers
6-
* Version: 1.4.3
6+
* Version: 1.5.0
77
* Author: @anttiviljami
88
* Author URI: https://github.com/anttiviljami/
99
* License: GPLv3
@@ -32,7 +32,7 @@
3232

3333
if ( ! class_exists( 'WP_Libre_Form' ) ) :
3434

35-
define( 'WPLF_VERSION', '1.5.0-beta' );
35+
define( 'WPLF_VERSION', '1.5.0' );
3636

3737
class WP_Libre_Form {
3838
public static $instance;

0 commit comments

Comments
 (0)