Version Description
- Feature: Add support for Gravity Forms Repeater Fields in PDFs [GH#833]
- Feature: Add support for Gravity Wiz's Nested Forms Perk in PDFs
- Feature: Add support for Gravity Forms Consent Field in PDFs [GH#832]
- Feature: Add signed-URL authentication to [gravitypdf] shortcode using new "signed" and "expires" attributes [GH#841]
- Feature: Add new "raw" attribute to the [gravitypdf] shortcode which will display the raw PDF URL [GH#841]
Feature: Added "Debug Mode" Global PDF Setting which replaces "Shortcode Debug Message", WP_DEBUG settings, and caches the template headers [GH#823]
Dev Feature: Add
gfpdf_disable_global_addon_data
filter to disable aggrigate Survey / Poll / Quiz data in $form_data array (for performance)Dev Feature: Add
gfpdf_disable_product_table
filter to disable Product table in PDF [GH#827]Dev Feature: Pass additional parameters to the
gfpdf_show_field_value
filterDev Feature: Trigger
gfpdf_template_loaded
JS event after loading new PDF Template settings dynamicallyDev Feature: Add
gfpdf_field_product_value
filter to change Product table HTML mark-up in PDFBug: Enable Image Watermarks in PDF
Bug: Prevent HTML fields getting passed through
wpautop()
[GH#834]Bug: Test for writability in the mPDF tmp directory and fallback to the Gravity PDF tmp directory if failed [GH#837]
Bug: Fix scheduled licensing status check and display better error if license deactivation fails [GH#838]
Bug: Correctly display the values for multiple Option fields assigned to a single Product when Product Table is ungrouped in PDF [GH#839]
Bug: Disable IP-based authentication when the entry IP matches the server IP [GH#840]
Release Info
Developer | Blue Liquid Designs |
Plugin | Gravity PDF |
Version | 5.1.0 |
Comparing to | |
See all releases |
Code changes from version 5.1.0-RC1 to 5.1.0
- README.txt +1 -1
- pdf.php +2 -2
@@ -5,7 +5,7 @@ Donate link: https://gravitypdf.com/donate-to-plugin/
|
|
5 |
Tags: gravity, forms, pdf, automation, attachment, email
|
6 |
Requires at least: 4.8
|
7 |
Tested up to: 4.9
|
8 |
-
Stable tag: 5.1.0
|
9 |
Requires PHP: 5.6
|
10 |
License: GPLv2 or later
|
11 |
License URI: http://www.gnu.org/licenses/gpl.txt
|
5 |
Tags: gravity, forms, pdf, automation, attachment, email
|
6 |
Requires at least: 4.8
|
7 |
Tested up to: 4.9
|
8 |
+
Stable tag: 5.1.0
|
9 |
Requires PHP: 5.6
|
10 |
License: GPLv2 or later
|
11 |
License URI: http://www.gnu.org/licenses/gpl.txt
|
@@ -1,7 +1,7 @@
|
|
1 |
<?php
|
2 |
/*
|
3 |
Plugin Name: Gravity PDF
|
4 |
-
Version: 5.1.0
|
5 |
Description: Automatically generate highly-customisable PDF documents using Gravity Forms.
|
6 |
Author: Gravity PDF
|
7 |
Author URI: https://gravitypdf.com
|
@@ -37,7 +37,7 @@ if ( ! defined( 'ABSPATH' ) ) {
|
|
37 |
/*
|
38 |
* Set base constants we'll use throughout the plugin
|
39 |
*/
|
40 |
-
define( 'PDF_EXTENDED_VERSION', '5.1.0
|
41 |
define( 'PDF_PLUGIN_DIR', plugin_dir_path( __FILE__ ) ); /* plugin directory path */
|
42 |
define( 'PDF_PLUGIN_URL', plugin_dir_url( __FILE__ ) ); /* plugin directory url */
|
43 |
define( 'PDF_PLUGIN_BASENAME', plugin_basename( __FILE__ ) ); /* the plugin basename */
|
1 |
<?php
|
2 |
/*
|
3 |
Plugin Name: Gravity PDF
|
4 |
+
Version: 5.1.0
|
5 |
Description: Automatically generate highly-customisable PDF documents using Gravity Forms.
|
6 |
Author: Gravity PDF
|
7 |
Author URI: https://gravitypdf.com
|
37 |
/*
|
38 |
* Set base constants we'll use throughout the plugin
|
39 |
*/
|
40 |
+
define( 'PDF_EXTENDED_VERSION', '5.1.0' ); /* the current plugin version */
|
41 |
define( 'PDF_PLUGIN_DIR', plugin_dir_path( __FILE__ ) ); /* plugin directory path */
|
42 |
define( 'PDF_PLUGIN_URL', plugin_dir_url( __FILE__ ) ); /* plugin directory url */
|
43 |
define( 'PDF_PLUGIN_BASENAME', plugin_basename( __FILE__ ) ); /* the plugin basename */
|