Changeset 2688015
- Timestamp:
- 03/03/2022 08:09:27 AM (4 years ago)
- Location:
- jackmail-newsletters
- Files:
-
- 10 edited
- 1 copied
-
tags/1.2.20 (copied) (copied from jackmail-newsletters/trunk)
-
tags/1.2.20/jackmail-newsletters.php (modified) (1 diff)
-
tags/1.2.20/jackmail_core.php (modified) (1 diff)
-
tags/1.2.20/js/controllers.js (modified) (2 diffs)
-
tags/1.2.20/js/directives.js (modified) (1 diff)
-
tags/1.2.20/readme.txt (modified) (2 diffs)
-
trunk/jackmail-newsletters.php (modified) (1 diff)
-
trunk/jackmail_core.php (modified) (1 diff)
-
trunk/js/controllers.js (modified) (2 diffs)
-
trunk/js/directives.js (modified) (1 diff)
-
trunk/readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
jackmail-newsletters/tags/1.2.20/jackmail-newsletters.php
r2605428 r2688015 4 4 Plugin URI: https://www.jackmail.com 5 5 Description: 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. 196 Version: 1.2.20 7 7 Author: Jackmail & Sarbacane 8 8 Author URI: https://www.jackmail.com -
jackmail-newsletters/tags/1.2.20/jackmail_core.php
r2577695 r2688015 1793 1793 1794 1794 public function get_emailbuilder_version() { 1795 $min_emailbuilder_version = '3. 0.20';1795 $min_emailbuilder_version = '3.1.61'; 1796 1796 $emailbuilder_version = get_option( 'jackmail_emailbuilder_version', $min_emailbuilder_version ); 1797 1797 if ( version_compare( $emailbuilder_version, $min_emailbuilder_version, '<' ) ) { -
jackmail-newsletters/tags/1.2.20/js/controllers.js
r2343905 r2688015 5402 5402 5403 5403 $rootScope.get_percent = function( value, total ) { 5404 value = Number( value ); 5405 total = Number( total ); 5404 5406 if ( total !== 0 ) { 5405 5407 return parseFloat( ( value / total * 100 ).toFixed( 2 ) ); … … 5408 5410 }; 5409 5411 } ] ); 5412 5410 5413 5411 5414 angular.module( 'jackmail.controllers' ).controller( 'TemplateController', [ -
jackmail-newsletters/tags/1.2.20/js/directives.js
r2547943 r2688015 577 577 return { 578 578 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 ); 582 582 }); 583 element.bind( 'error', function(){584 scope.$apply( attrs.ngSrcLoaded)(false);583 element.bind( 'error', function() { 584 scope.$apply( attrs.ngSrcLoaded, false ); 585 585 }); 586 586 } -
jackmail-newsletters/tags/1.2.20/readme.txt
r2605428 r2688015 3 3 Tags: newsletter, newsletters, email, WooCommerce emails & Mailchimp 4 4 Requires at least: 4.0 5 Tested up to: 5. 85 Tested up to: 5.9 6 6 Requires PHP : 5.4 7 Stable tag: 1.2. 197 Stable tag: 1.2.20 8 8 License: GPLv2 9 9 … … 166 166 == Changelog == 167 167 168 = 1.2.20 = 169 * Widget compatibility for WordPress 5.9 170 * Update EmailBuilder 171 168 172 = 1.2.19 = 169 173 * Widget compatibility for WordPress 5.8 -
jackmail-newsletters/trunk/jackmail-newsletters.php
r2605428 r2688015 4 4 Plugin URI: https://www.jackmail.com 5 5 Description: 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. 196 Version: 1.2.20 7 7 Author: Jackmail & Sarbacane 8 8 Author URI: https://www.jackmail.com -
jackmail-newsletters/trunk/jackmail_core.php
r2577695 r2688015 1793 1793 1794 1794 public function get_emailbuilder_version() { 1795 $min_emailbuilder_version = '3. 0.20';1795 $min_emailbuilder_version = '3.1.61'; 1796 1796 $emailbuilder_version = get_option( 'jackmail_emailbuilder_version', $min_emailbuilder_version ); 1797 1797 if ( version_compare( $emailbuilder_version, $min_emailbuilder_version, '<' ) ) { -
jackmail-newsletters/trunk/js/controllers.js
r2343905 r2688015 5402 5402 5403 5403 $rootScope.get_percent = function( value, total ) { 5404 value = Number( value ); 5405 total = Number( total ); 5404 5406 if ( total !== 0 ) { 5405 5407 return parseFloat( ( value / total * 100 ).toFixed( 2 ) ); … … 5408 5410 }; 5409 5411 } ] ); 5412 5410 5413 5411 5414 angular.module( 'jackmail.controllers' ).controller( 'TemplateController', [ -
jackmail-newsletters/trunk/js/directives.js
r2547943 r2688015 577 577 return { 578 578 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 ); 582 582 }); 583 element.bind( 'error', function(){584 scope.$apply( attrs.ngSrcLoaded)(false);583 element.bind( 'error', function() { 584 scope.$apply( attrs.ngSrcLoaded, false ); 585 585 }); 586 586 } -
jackmail-newsletters/trunk/readme.txt
r2605428 r2688015 3 3 Tags: newsletter, newsletters, email, WooCommerce emails & Mailchimp 4 4 Requires at least: 4.0 5 Tested up to: 5. 85 Tested up to: 5.9 6 6 Requires PHP : 5.4 7 Stable tag: 1.2. 197 Stable tag: 1.2.20 8 8 License: GPLv2 9 9 … … 166 166 == Changelog == 167 167 168 = 1.2.20 = 169 * Widget compatibility for WordPress 5.9 170 * Update EmailBuilder 171 168 172 = 1.2.19 = 169 173 * Widget compatibility for WordPress 5.8
Note: See TracChangeset
for help on using the changeset viewer.