|
| 1 | +------------------------------------------------------------------------------------------------------------------- |
| 2 | +Version 1.8.7.11 |
| 3 | + - Fixed issue with quantity of single product fields allowing negative values to be entered |
| 4 | + |
| 5 | +------------------------------------------------------------------------------------------------------------------- |
| 6 | +Version 1.8.7.10 |
| 7 | + - Fixed issue with number field validation |
| 8 | + |
| 9 | +------------------------------------------------------------------------------------------------------------------- |
| 10 | +Version 1.8.7.9 |
| 11 | + - AF: Added more logging statements to the Payment Add-On |
| 12 | + - AF: Added the function is_callback_valid which can be overwritten for use by Payment plugins for the Payment Add-On |
| 13 | + - AF: Added entry and action objects to be passed as parameters for custom events for the Payment Add-On |
| 14 | + - AF: Updated logging to go to the plugins log instead of Gravity Forms' log for the Payment Add-on |
| 15 | + - AF: Updated to remove caching the feed in the Payment Add-On |
| 16 | + |
| 17 | +------------------------------------------------------------------------------------------------------------------- |
| 18 | +Version 1.8.7.8 |
| 19 | + - Fixed issue with multi-file upload field throwing javascript errors when the number of files uploaded reached the max files setting |
| 20 | + |
| 21 | +------------------------------------------------------------------------------------------------------------------- |
| 22 | +Version 1.8.7.7 |
| 23 | + - Fixed issue with Addon Browser not recognizing valid licenses |
| 24 | + |
| 25 | +------------------------------------------------------------------------------------------------------------------- |
| 26 | +Version 1.8.7.6 |
| 27 | + - Fixed notice in GFFormDisplay::get_chosen_init_script() where $input_type was not defined |
| 28 | + - Updated the Locking API to use a Heartbeat interval of 30 seconds as standard and 5 seconds while waiting for the response to a control request. The lock timeout is now 150 seconds - equivalent to Posts and Pages. |
| 29 | + |
| 30 | +------------------------------------------------------------------------------------------------------------------- |
| 31 | +Version 1.8.7.5 |
| 32 | + - Added support for Proxy to resolve issues with sites on blacklisted IPs not being able to access the Gravity Help API |
| 33 | + |
| 34 | +------------------------------------------------------------------------------------------------------------------- |
| 35 | +Version 1.8.7.4 |
| 36 | + - Fixed issue where selecting option from bulk choice menu scrolled page to top |
| 37 | + - Updated links to sign up page for reCAPTCHA |
| 38 | + |
| 39 | +------------------------------------------------------------------------------------------------------------------- |
| 40 | +Version 1.8.7.3 |
| 41 | + - Added 'gform_export_form' hook to allow modification of the form meta before export |
| 42 | + add_filter( 'gform_export_form', 'modify_form_for_export' ); |
| 43 | + function modify_form_for_export( $form ) { |
| 44 | + $form['exported'] = true; |
| 45 | + return $form; |
| 46 | + } |
| 47 | + - Added 'gform_export_options' hook to allow adding custom export options |
| 48 | + add_filter( 'gform_export_options', 'my_export_options', 10, 2 ); |
| 49 | + function my_export_options( $options, $forms ) { |
| 50 | + $options["forms/form/myCustomProperty/id"] = array( 'is_attribute' => true ); |
| 51 | + return $options; |
| 52 | + } |
| 53 | + - Added 'gform_form_update_meta' hook to allow modifying form meta before it is saved to the database |
| 54 | + add_filter( 'gform_form_update_meta', 'my_import_form', 10, 3 ); |
| 55 | + function my_import_form( $meta, $form_id, $meta_name ) { |
| 56 | + |
| 57 | + $is_import_page = GFForms::get_page() == 'import_form'; |
| 58 | + $is_updating_display_meta = $meta_name == 'display_meta'; |
| 59 | + |
| 60 | + if( ! $is_import_page || ! $is_updating_display_meta ) |
| 61 | + return $meta; |
| 62 | + |
| 63 | + $form = $meta; |
| 64 | + $form['isImported'] = true; |
| 65 | + |
| 66 | + return $form; |
| 67 | + } |
| 68 | + - Updated name of "gform_before_update_form_meta" hook to "gform_post_update_form_meta" and changed from "add_action" to "do_action" |
| 69 | + |
1 | 70 | -------------------------------------------------------------------------------------------------------------------
|
2 | 71 | Version 1.8.7.2
|
3 | 72 | - Fixed issue with chosen script throwing javascript errors on certain situations
|
|
0 commit comments