WP Mail Logging - Version 1.9.7

Version Description

  • 2020-09-02 =
  • Added: wpml_banner_display filter to hide MailPoet banner;
  • Updated: support for WordPress 5.5.
Download this release

Release Info

Developer wysija
Plugin Icon 128x128 WP Mail Logging
Version 1.9.7
Comparing to
See all releases

Code changes from version 1.9.6 to 1.9.7

languages/wp-mail-logging.pot CHANGED
@@ -2,7 +2,7 @@
2
  # This file is distributed under the GPLv3.
3
  msgid ""
4
  msgstr ""
5
- "Project-Id-Version: WP Mail Logging 1.9.6\n"
6
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/wp-mail-logging\n"
7
  "POT-Creation-Date: 2019-04-18 13:01:12+00:00\n"
8
  "MIME-Version: 1.0\n"
2
  # This file is distributed under the GPLv3.
3
  msgid ""
4
  msgstr ""
5
+ "Project-Id-Version: WP Mail Logging 1.9.7\n"
6
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/wp-mail-logging\n"
7
  "POT-Creation-Date: 2019-04-18 13:01:12+00:00\n"
8
  "MIME-Version: 1.0\n"
package.json CHANGED
@@ -1,6 +1,6 @@
1
  {
2
  "name": "wp-mail-logging",
3
- "version": "1.9.6",
4
  "description": "WordPress plugin that logs each email sent by WordPress.",
5
  "repository": {
6
  "type": "git",
1
  {
2
  "name": "wp-mail-logging",
3
+ "version": "1.9.7",
4
  "description": "WordPress plugin that logs each email sent by WordPress.",
5
  "repository": {
6
  "type": "git",
readme.txt CHANGED
@@ -4,8 +4,8 @@ Tags: mail, email, log, logging, email log, debug, smtp, spam, deliverability
4
  License: GPLv3
5
  License URI: http://www.gnu.org/licenses/gpl-3.0.html
6
  Requires at least: 5.0
7
- Tested up to: 5.2
8
- Stable tag: 1.9.6
9
 
10
  Log every single email sent by WordPress. Zero configuration. Entirely free.
11
 
@@ -118,6 +118,10 @@ Yes, directly on <a href="https://github.com/mailpoet/wp-mail-logging" rel="nofo
118
 
119
  == Changelog ==
120
 
 
 
 
 
121
  = 1.9.6 - 2020-05-05 =
122
  - Removed: contextual help tab.
123
 
4
  License: GPLv3
5
  License URI: http://www.gnu.org/licenses/gpl-3.0.html
6
  Requires at least: 5.0
7
+ Tested up to: 5.5
8
+ Stable tag: 1.9.7
9
 
10
  Log every single email sent by WordPress. Zero configuration. Entirely free.
11
 
118
 
119
  == Changelog ==
120
 
121
+ = 1.9.7 - 2020-09-02 =
122
+ - Added: wpml_banner_display filter to hide MailPoet banner;
123
+ - Updated: support for WordPress 5.5.
124
+
125
  = 1.9.6 - 2020-05-05 =
126
  - Removed: contextual help tab.
127
 
src/WPML_OptionsManager.php CHANGED
@@ -537,7 +537,21 @@ class WPML_OptionsManager {
537
  $emailLogList->display();
538
  ?>
539
  </form>
540
- <?php $this->displayMP3Banner() ?>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
541
  <?php
542
  }
543
 
537
  $emailLogList->display();
538
  ?>
539
  </form>
540
+ <?php
541
+ /**
542
+ * Control whether the banner is displayed or not
543
+ *
544
+ * @since 1.9.7
545
+ *
546
+ * @param boolean $display Whether the banner should be displayed. (default: true)
547
+ *
548
+ * @return boolean
549
+ */
550
+ $display = apply_filters('wpml_banner_display', true);
551
+ if ( $display ) {
552
+ $this->displayMP3Banner();
553
+ }
554
+ ?>
555
  <?php
556
  }
557
 
wp-mail-logging.php CHANGED
@@ -3,7 +3,7 @@
3
  Plugin Name: WP Mail Logging
4
  Plugin URI: http://wordpress.org/extend/plugins/wp-mail-logging/
5
  Support URI: https://github.com/mailpoet/wp-mail-logging/issues
6
- Version: 1.9.6
7
  Author: MailPoet
8
  Author URI: https://www.mailpoet.com/
9
  Description: Logs each email sent by WordPress.
3
  Plugin Name: WP Mail Logging
4
  Plugin URI: http://wordpress.org/extend/plugins/wp-mail-logging/
5
  Support URI: https://github.com/mailpoet/wp-mail-logging/issues
6
+ Version: 1.9.7
7
  Author: MailPoet
8
  Author URI: https://www.mailpoet.com/
9
  Description: Logs each email sent by WordPress.