Plugin Directory

Changeset 3439965


Ignore:
Timestamp:
01/15/2026 03:34:04 AM (8 weeks ago)
Author:
griffinforms
Message:

Release 2.1.4.0

Location:
griffinforms-form-builder/trunk
Files:
17 added
4 edited

Legend:

Unmodified
Added
Removed
  • griffinforms-form-builder/trunk/config.php

    r3433300 r3439965  
    55class Config
    66{
    7     public const VERSION = '2.1.3.0';
     7    public const VERSION = '2.1.4.0';
    88    public const DB_VER = '1.0';
    99    public const PHP_REQUIRED = '8.2';
  • griffinforms-form-builder/trunk/griffinforms.php

    r3433300 r3439965  
    44 * Plugin URI:        https://griffinforms.com/
    55 * Description:       A powerful and flexible form builder for WordPress. Create multi-page forms with drag-and-drop ease, custom validations, and full submission management.
    6  * Version:           2.1.3.0
     6 * Version:           2.1.4.0
    77 * Requires at least: 6.6
    88 * Requires PHP:      8.2
     
    100100        new Frontend\ShortCodes();
    101101    }
     102
     103    // Register Block Editor integrations (Gutenberg block + REST)
     104    Editors\Gutenberg\Registrar::register();
    102105}, 9);
    103106
  • griffinforms-form-builder/trunk/items/field.php

    r3299683 r3439965  
    77    protected $field_type;
    88    protected $label;
    9     protected $helptext;
     9    protected $description;
    1010    protected $is_required;
    1111    protected $is_hidden;
  • griffinforms-form-builder/trunk/readme.txt

    r3433315 r3439965  
    55Tested up to: 6.9
    66Requires PHP: 8.2
    7 Stable tag: 2.1.3.0
     7Stable tag: 2.1.4.0
    88License: GPLv2 or later
    99License URI: https://www.gnu.org/licenses/gpl-2.0.html
     
    20201. Create a form in **GriffinForms → Forms**.
    21212. Add pages/rows/columns, then insert fields from the field library.
    22 3. Publish the form using the shortcode: `[griffinforms_form id="123"]`.
     223. Publish the form using the shortcode: `[griffinforms_form id="123"]`, or insert the **GriffinForms** block in the WordPress block editor.
    2323
    2424Tip: start with a single-page contact form, then expand into multi-step forms as you add conditional logic, uploads, and integrations.
     
    4040- **Validations**: enforce required rules and common constraints so submissions stay clean.
    4141- **File uploads**: accept files as part of a submission and manage uploads from the admin.
     42- **Gutenberg block**: embed forms in the block editor with a lightweight preview and quick edit links.
    4243- **Payments**: collect payments through Stripe where configured (useful for donations, applications, and orders).
    4344- **Email notifications**: send notifications and route delivery via Custom SMTP, SendGrid, or Mailgun.
     
    370371== Changelog ==
    371372
     373= 2.1.4.0 – 2026-01-15 =
     374* Feature: New Gutenberg block for embedding GriffinForms with a lightweight editor preview.
     375* Improvement: Preview respects form theme styles (labels, fields, buttons) without loading frontend runtime.
     376* Improvement: Editor toolbar shortcuts to open Edit Form and Form Builder in new tabs.
     377* Improvement: Multi-page preview navigation inside the block editor.
     378
    372379= 2.1.3.0 – 2026-01-06 =
    373380* Feature: Admin alert emails can map each recipient to a message template with a default fallback.
     
    658665== Upgrade Notice ==
    659666
     667= 2.1.4.0 =
     668Adds a native Gutenberg block with a lightweight, theme-aware editor preview and quick links to edit forms. Recommended update for block editor users.
     669
    660670= 2.1.3.0 =
    661671Admin alerts can now use per-recipient message templates with mail-merge placeholders, and the message editor includes a token builder. Includes new starter templates and improved mail logging. Recommended update.
Note: See TracChangeset for help on using the changeset viewer.