Plugin Directory

Changeset 2688015


Ignore:
Timestamp:
03/03/2022 08:09:27 AM (4 years ago)
Author:
heyjackmail
Message:

jackmail-newsletters 1.2.20

Location:
jackmail-newsletters
Files:
10 edited
1 copied

Legend:

Unmodified
Added
Removed
  • jackmail-newsletters/tags/1.2.20/jackmail-newsletters.php

    r2605428 r2688015  
    44Plugin URI: https://www.jackmail.com
    55Description: Create and send responsive newsletter with a professional routing platform and a lot of features: automated emails and newsletters, statistics, email & Live Support etc.
    6 Version: 1.2.19
     6Version: 1.2.20
    77Author: Jackmail & Sarbacane
    88Author URI: https://www.jackmail.com
  • jackmail-newsletters/tags/1.2.20/jackmail_core.php

    r2577695 r2688015  
    17931793
    17941794    public function get_emailbuilder_version() {
    1795         $min_emailbuilder_version = '3.0.20';
     1795        $min_emailbuilder_version = '3.1.61';
    17961796        $emailbuilder_version     = get_option( 'jackmail_emailbuilder_version', $min_emailbuilder_version );
    17971797        if ( version_compare( $emailbuilder_version, $min_emailbuilder_version, '<' ) ) {
  • jackmail-newsletters/tags/1.2.20/js/controllers.js

    r2343905 r2688015  
    54025402
    54035403        $rootScope.get_percent = function( value, total ) {
     5404            value = Number( value );
     5405            total = Number( total );
    54045406            if ( total !== 0 ) {
    54055407                return parseFloat( ( value / total * 100 ).toFixed( 2 ) );
     
    54085410        };
    54095411    } ] );
     5412
    54105413
    54115414angular.module( 'jackmail.controllers' ).controller( 'TemplateController', [
  • jackmail-newsletters/tags/1.2.20/js/directives.js

    r2547943 r2688015  
    577577        return {
    578578            restrict: 'A',
    579             link: function(scope, element, attrs) {
    580                 element.bind('load', function() {
    581                     scope.$apply(attrs.ngSrcLoaded)(true);
     579            link: function( scope, element, attrs ) {
     580                element.bind( 'load', function() {
     581                    scope.$apply( attrs.ngSrcLoaded, true );
    582582                });
    583                 element.bind('error', function(){
    584                     scope.$apply(attrs.ngSrcLoaded)(false);
     583                element.bind( 'error', function() {
     584                    scope.$apply( attrs.ngSrcLoaded, false );
    585585                });
    586586            }
  • jackmail-newsletters/tags/1.2.20/readme.txt

    r2605428 r2688015  
    33Tags: newsletter, newsletters, email, WooCommerce emails & Mailchimp
    44Requires at least: 4.0
    5 Tested up to: 5.8
     5Tested up to: 5.9
    66Requires PHP : 5.4
    7 Stable tag: 1.2.19
     7Stable tag: 1.2.20
    88License: GPLv2
    99
     
    166166== Changelog ==
    167167
     168= 1.2.20 =
     169* Widget compatibility for WordPress 5.9
     170* Update EmailBuilder
     171
    168172= 1.2.19 =
    169173* Widget compatibility for WordPress 5.8
  • jackmail-newsletters/trunk/jackmail-newsletters.php

    r2605428 r2688015  
    44Plugin URI: https://www.jackmail.com
    55Description: Create and send responsive newsletter with a professional routing platform and a lot of features: automated emails and newsletters, statistics, email & Live Support etc.
    6 Version: 1.2.19
     6Version: 1.2.20
    77Author: Jackmail & Sarbacane
    88Author URI: https://www.jackmail.com
  • jackmail-newsletters/trunk/jackmail_core.php

    r2577695 r2688015  
    17931793
    17941794    public function get_emailbuilder_version() {
    1795         $min_emailbuilder_version = '3.0.20';
     1795        $min_emailbuilder_version = '3.1.61';
    17961796        $emailbuilder_version     = get_option( 'jackmail_emailbuilder_version', $min_emailbuilder_version );
    17971797        if ( version_compare( $emailbuilder_version, $min_emailbuilder_version, '<' ) ) {
  • jackmail-newsletters/trunk/js/controllers.js

    r2343905 r2688015  
    54025402
    54035403        $rootScope.get_percent = function( value, total ) {
     5404            value = Number( value );
     5405            total = Number( total );
    54045406            if ( total !== 0 ) {
    54055407                return parseFloat( ( value / total * 100 ).toFixed( 2 ) );
     
    54085410        };
    54095411    } ] );
     5412
    54105413
    54115414angular.module( 'jackmail.controllers' ).controller( 'TemplateController', [
  • jackmail-newsletters/trunk/js/directives.js

    r2547943 r2688015  
    577577        return {
    578578            restrict: 'A',
    579             link: function(scope, element, attrs) {
    580                 element.bind('load', function() {
    581                     scope.$apply(attrs.ngSrcLoaded)(true);
     579            link: function( scope, element, attrs ) {
     580                element.bind( 'load', function() {
     581                    scope.$apply( attrs.ngSrcLoaded, true );
    582582                });
    583                 element.bind('error', function(){
    584                     scope.$apply(attrs.ngSrcLoaded)(false);
     583                element.bind( 'error', function() {
     584                    scope.$apply( attrs.ngSrcLoaded, false );
    585585                });
    586586            }
  • jackmail-newsletters/trunk/readme.txt

    r2605428 r2688015  
    33Tags: newsletter, newsletters, email, WooCommerce emails & Mailchimp
    44Requires at least: 4.0
    5 Tested up to: 5.8
     5Tested up to: 5.9
    66Requires PHP : 5.4
    7 Stable tag: 1.2.19
     7Stable tag: 1.2.20
    88License: GPLv2
    99
     
    166166== Changelog ==
    167167
     168= 1.2.20 =
     169* Widget compatibility for WordPress 5.9
     170* Update EmailBuilder
     171
    168172= 1.2.19 =
    169173* Widget compatibility for WordPress 5.8
Note: See TracChangeset for help on using the changeset viewer.