Version Description
- 2019-11-07 =
- Updated: plugin author.
Download this release
Release Info
Developer | wysija |
Plugin | WP Mail Logging |
Version | 1.9.5 |
Comparing to | |
See all releases |
Code changes from version 1.9.4 to 1.9.5
- languages/wp-mail-logging.pot +1 -1
- package.json +3 -3
- readme.txt +4 -1
- src/inc/redux/WPML_Redux_Framework_config.php +1 -1
- wp-mail-logging.php +4 -4
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 |
"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.5\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,15 +1,15 @@
|
|
1 |
{
|
2 |
"name": "wp-mail-logging",
|
3 |
-
"version": "1.9.
|
4 |
"description": "WordPress plugin that logs each email sent by WordPress.",
|
5 |
"repository": {
|
6 |
"type": "git",
|
7 |
-
"url": "https://github.com/
|
8 |
},
|
9 |
"author": "No3x",
|
10 |
"license": "GPL-2.0",
|
11 |
"bugs": {
|
12 |
-
"url": "https://github.com/
|
13 |
},
|
14 |
"devDependencies": {
|
15 |
"gitignore-to-glob": "^0.1.2",
|
1 |
{
|
2 |
"name": "wp-mail-logging",
|
3 |
+
"version": "1.9.5",
|
4 |
"description": "WordPress plugin that logs each email sent by WordPress.",
|
5 |
"repository": {
|
6 |
"type": "git",
|
7 |
+
"url": "https://github.com/mailpoet/wp-mail-logging"
|
8 |
},
|
9 |
"author": "No3x",
|
10 |
"license": "GPL-2.0",
|
11 |
"bugs": {
|
12 |
+
"url": "https://github.com/mailpoet/wp-mail-logging/issues"
|
13 |
},
|
14 |
"devDependencies": {
|
15 |
"gitignore-to-glob": "^0.1.2",
|
readme.txt
CHANGED
@@ -5,7 +5,7 @@ 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.
|
9 |
|
10 |
Log every single email sent by WordPress. Zero configuration. Entirely free.
|
11 |
|
@@ -119,6 +119,9 @@ Yes, directly on <a href="https://github.com/mailpoet/wp-mail-logging" rel="nofo
|
|
119 |
|
120 |
== Changelog ==
|
121 |
|
|
|
|
|
|
|
122 |
= 1.9.4 - 2019-11-07 =
|
123 |
- Fixed: assets files.
|
124 |
|
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.5
|
9 |
|
10 |
Log every single email sent by WordPress. Zero configuration. Entirely free.
|
11 |
|
119 |
|
120 |
== Changelog ==
|
121 |
|
122 |
+
= 1.9.5 - 2019-11-07 =
|
123 |
+
- Updated: plugin author.
|
124 |
+
|
125 |
= 1.9.4 - 2019-11-07 =
|
126 |
- Fixed: assets files.
|
127 |
|
src/inc/redux/WPML_Redux_Framework_config.php
CHANGED
@@ -334,7 +334,7 @@ if (!class_exists('WPML_Redux_Framework_config')) {
|
|
334 |
|
335 |
// SOCIAL ICONS -> Setup custom links in the footer for quick links in your panel footer icons.
|
336 |
$this->args['share_icons'][] = array(
|
337 |
-
'url' => 'https://github.com/
|
338 |
'title' => 'Visit us on GitHub',
|
339 |
'icon' => 'el-icon-github'
|
340 |
//'img' => '', // You can use icon OR img. IMG needs to be a full URL.
|
334 |
|
335 |
// SOCIAL ICONS -> Setup custom links in the footer for quick links in your panel footer icons.
|
336 |
$this->args['share_icons'][] = array(
|
337 |
+
'url' => 'https://github.com/mailpoet/wp-mail-logging',
|
338 |
'title' => 'Visit us on GitHub',
|
339 |
'icon' => 'el-icon-github'
|
340 |
//'img' => '', // You can use icon OR img. IMG needs to be a full URL.
|
wp-mail-logging.php
CHANGED
@@ -2,10 +2,10 @@
|
|
2 |
/*
|
3 |
Plugin Name: WP Mail Logging
|
4 |
Plugin URI: http://wordpress.org/extend/plugins/wp-mail-logging/
|
5 |
-
Support URI: https://github.com/
|
6 |
-
Version: 1.9.
|
7 |
-
Author:
|
8 |
-
Author URI:
|
9 |
Description: Logs each email sent by WordPress.
|
10 |
Text Domain: wp-mail-logging
|
11 |
License: GPLv3
|
2 |
/*
|
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.5
|
7 |
+
Author: MailPoet
|
8 |
+
Author URI: https://www.mailpoet.com/
|
9 |
Description: Logs each email sent by WordPress.
|
10 |
Text Domain: wp-mail-logging
|
11 |
License: GPLv3
|