Skip to content

Commit

Permalink
v4.6.88
Browse files Browse the repository at this point in the history
  • Loading branch information
RensTillmann committed Jun 5, 2019
1 parent 63b39e5 commit 0eb7ea4
Show file tree
Hide file tree
Showing 6 changed files with 16 additions and 10 deletions.
11 changes: 7 additions & 4 deletions docs/changelog.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,4 @@
### Jun 03, 2019 - Version 4.6.87
- Fix: Issue with autosuggest keywords on mobile phone when autofill is applied by the browser, it would not validate the field correctly
- Fix: Issue with new ajax handler not working in combination with active WC installation
- Fix: Signature attachment not being a valid bitmap file when sending email over SMTP
### Jun 05, 2019 - Version 4.6.88
- Added: Compatibility for TinyMCE Visual editor to count words with Calculator Add-on
- Added: Option to specify field type for "Text" fields, allowing to determine what "Keyboard Layout" it should use on mobile devices. To name a few:
- `email` (for email keyboard layout)
Expand All @@ -13,8 +10,14 @@
- Added: A custom Ajax handler for faster Ajax requests (significant speed improvement for building/editing forms)
- Added: Translation feature (allows you to translate your form into multiple languages, this also includes translating specific form settings)
*when in translation mode, you won't be able to delete and change the layout of the form, just the strings of each element and the form settings*
- Improved: Mailchimp error debugging and other small improvements
- Improved: Speed improvement upon page load, now skipping calculator elements of which the value didn't yet change, so no need to loop through any elements connected to this field
- Improved: Currency field will now have field type set to `tel` for phonenumber keyboard layout to enter numbers easily on mobile devices
- Fix: issue with new ajax handler stripping slashes (it shouldn't be doing this) was resulting in issues with HTML element and line breaks
- Fix: PHP notice about undefined variables
- Fix: Issue with autosuggest keywords on mobile phone when autofill is applied by the browser, it would not validate the field correctly
- Fix: Issue with new ajax handler not working in combination with active WC installation
- Fix: Signature attachment not being a valid bitmap file when sending email over SMTP
- Fix: Bug fix conditional logic when setting $_GET on radio buttons
- Fix: Radio buttons not responsding to predefined `$_GET` or `$_POST` parameters
- Fix: When doing custom POST and "Enable custom parameter string for POST method" is enabled file URL's where not parsed as data
Expand Down
3 changes: 3 additions & 0 deletions src/add-ons/super-forms-mailchimp/changelog.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
Jun 05, 2019 - Version 1.4.1
- Improved: Mailchimp error debugging and other small improvements

Apr 22, 2019 - Version 1.4.0
- Compatibility with latest Super Forms
- Improved: Update functionality
Expand Down
4 changes: 2 additions & 2 deletions src/add-ons/super-forms-mailchimp/super-forms-mailchimp.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
* Plugin Name: Super Forms - Mailchimp
* Plugin URI: http://codecanyon.net/item/super-forms-drag-drop-form-builder/13979866
* Description: Subscribes and unsubscribes users from a specific Mailchimp list
* Version: 1.4.0
* Version: 1.4.1
* Author: feeling4design
* Author URI: http://codecanyon.net/user/feeling4design
* Text Domain: super-forms
Expand Down Expand Up @@ -39,7 +39,7 @@ final class SUPER_Mailchimp {
*
* @since 1.0.0
*/
public $version = '1.4.0';
public $version = '1.4.1';


/**
Expand Down
5 changes: 3 additions & 2 deletions src/assets/css/frontend/elements.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion src/assets/css/frontend/elements.css.map

Large diffs are not rendered by default.

1 change: 0 additions & 1 deletion src/assets/js/common.js
Original file line number Diff line number Diff line change
Expand Up @@ -2900,7 +2900,6 @@ function SUPERreCaptcha(){

if($this.attr('name')==='mailchimp_list_id'){
if($this.attr('data-vip')) $data[$this.attr('name')]['vip'] = $this.attr('data-vip');
if($this.attr('data-tags')) $data[$this.attr('name')]['tags'] = $this.attr('data-tags');
}
var $super_field = $this.parents('.super-field:eq(0)');

Expand Down

0 comments on commit 0eb7ea4

Please sign in to comment.