Changeset 1918375
- Timestamp:
- 08/01/2018 04:44:02 PM (8 years ago)
- Location:
- ninja-mail
- Files:
-
- 24 added
- 3 edited
-
tags/1.0.3 (added)
-
tags/1.0.3/CONTRIBUTING.md (added)
-
tags/1.0.3/README.md (added)
-
tags/1.0.3/bootstrap.php (added)
-
tags/1.0.3/includes (added)
-
tags/1.0.3/includes/admin.php (added)
-
tags/1.0.3/includes/app (added)
-
tags/1.0.3/includes/app/logger.php (added)
-
tags/1.0.3/includes/app/mailer.php (added)
-
tags/1.0.3/includes/app/service.php (added)
-
tags/1.0.3/includes/functions.php (added)
-
tags/1.0.3/includes/plugin.php (added)
-
tags/1.0.3/includes/resources (added)
-
tags/1.0.3/includes/resources/views (added)
-
tags/1.0.3/includes/resources/views/admin-mail-log.html.php (added)
-
tags/1.0.3/includes/resources/views/admin-menu.html.php (added)
-
tags/1.0.3/includes/resources/views/admin-settings.html.php (added)
-
tags/1.0.3/includes/tests.php (added)
-
tags/1.0.3/lib (added)
-
tags/1.0.3/lib/wordpress (added)
-
tags/1.0.3/lib/wordpress/mailer.php (added)
-
tags/1.0.3/lib/wordpress/plugin.php (added)
-
tags/1.0.3/ninja-mail.php (added)
-
tags/1.0.3/readme.txt (added)
-
trunk/includes/app/service.php (modified) (2 diffs)
-
trunk/ninja-mail.php (modified) (2 diffs)
-
trunk/readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
ninja-mail/trunk/includes/app/service.php
r1904723 r1918375 20 20 add_action( 'wp_ajax_nf_service_ninja-mail', [ $this, 'sync_service' ] ); 21 21 22 if( $this->is_service_enabled() ){ 23 add_filter( 'ninja-forms-dashboard-promotions', [ $this, 'remove_promotion' ] ); 24 } 22 add_filter( 'ninja-forms-dashboard-promotions', [ $this, 'remove_promotion' ] ); 25 23 26 24 return $this; … … 100 98 101 99 public function remove_promotion( $promotions ){ 102 unset( $promotions[ 'ninja-mail' ] ); 100 if( $this->is_service_enabled() ){ 101 unset( $promotions[ 'ninja-mail' ] ); 102 } 103 103 return $promotions; 104 104 } -
ninja-mail/trunk/ninja-mail.php
r1904723 r1918375 5 5 * Plugin URI: http://ninjaforms.com/ 6 6 * Description: A transactional email service for Ninja Forms. 7 * Version: 1.0. 27 * Version: 1.0.3 8 8 * Author: Ninja Forms 9 9 * Author URI: http://ninjaforms.com … … 17 17 require_once( plugin_dir_path( __FILE__ ) . 'bootstrap.php' ); 18 18 19 \NinjaMail\Plugin::getInstance()->setup( '1.0. 2', __FILE__ );19 \NinjaMail\Plugin::getInstance()->setup( '1.0.3', __FILE__ ); 20 20 21 21 register_activation_hook( __FILE__, function() { -
ninja-mail/trunk/readme.txt
r1904723 r1918375 5 5 Requires at least: 4.7 6 6 Tested up to: 4.9 7 Stable Tag: 1.0. 27 Stable Tag: 1.0.3 8 8 License: GPLv2 or later 9 9 … … 35 35 == Upgrade Notice == 36 36 37 * Reverted fallback to avoid possible duplicate emails. 38 * Fixed a PHP Warning when custom email headers are not set. 37 * Reduced the number of external requests to the server. 39 38 40 39 == Changelog == 40 41 = 1.0.3 (01 August 2018) = 42 43 * Reduced the number of external requests to the server. 41 44 42 45 = 1.0.2 (05 July 2018) =
Note: See TracChangeset
for help on using the changeset viewer.