Skip to content

Commit

Permalink
Build v1.13.1
Browse files Browse the repository at this point in the history
  • Loading branch information
donmhico committed Oct 10, 2024
1 parent 7898196 commit c333b8f
Show file tree
Hide file tree
Showing 8 changed files with 20 additions and 16 deletions.
20 changes: 10 additions & 10 deletions assets/languages/wp-mail-logging.pot
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
msgid ""
msgstr ""
"Project-Id-Version: WP Mail Logging 1.13.0\n"
"Project-Id-Version: WP Mail Logging 1.13.1\n"
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/wp-mail-logging\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"POT-Creation-Date: 2024-10-08T08:43:32+00:00\n"
"POT-Creation-Date: 2024-10-10T03:46:09+00:00\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"X-Generator: WP-CLI 2.8.1\n"
"X-Domain: wp-mail-logging\n"
Expand Down Expand Up @@ -594,7 +594,7 @@ msgstr ""
#: src/WPML_LifeCycle.php:204
#: src/WPML_OptionsManager.php:420
#: src/WPML_OptionsManager.php:421
#: src/WPML_Plugin.php:301
#: src/WPML_Plugin.php:302
msgid "Settings"
msgstr ""

Expand All @@ -608,13 +608,13 @@ msgstr ""

#: src/WPML_OptionsManager.php:409
#: src/WPML_OptionsManager.php:410
#: src/WPML_Plugin.php:291
#: src/WPML_Plugin.php:292
msgid "Email Log"
msgstr ""

#: src/WPML_OptionsManager.php:428
#: src/WPML_OptionsManager.php:429
#: src/WPML_Plugin.php:305
#: src/WPML_Plugin.php:306
msgid "SMTP"
msgstr ""

Expand Down Expand Up @@ -655,25 +655,25 @@ msgstr ""
msgid "Anyone"
msgstr ""

#: src/WPML_Plugin.php:420
#: src/WPML_Plugin.php:421
msgid "Heads up!"
msgstr ""

#: src/WPML_Plugin.php:421
#: src/WPML_Plugin.php:422
#: src/WPML_UserFeedback.php:116
msgid "Yes"
msgstr ""

#: src/WPML_Plugin.php:422
#: src/WPML_Plugin.php:423
msgid "Cancel"
msgstr ""

#: src/WPML_Plugin.php:424
#: src/WPML_Plugin.php:425
msgid "Warning!"
msgstr ""

#. translators: $1$s - WP Mail Logging plugin name; $2$s - WP.org review link; $3$s - WP.org review link.
#: src/WPML_Plugin.php:607
#: src/WPML_Plugin.php:628
msgid "Please rate %1$s <a href=\"%2$s\" target=\"_blank\" rel=\"noopener noreferrer\">&#9733;&#9733;&#9733;&#9733;&#9733;</a> on <a href=\"%3$s\" target=\"_blank\" rel=\"noopener\">WordPress.org</a> to help us spread the word."
msgstr ""

Expand Down
Binary file modified assets/wporg/banner-772x250.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified assets/wporg/icon-128x128.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified assets/wporg/icon-256x256.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "wp-mail-logging",
"version": "1.13.0",
"version": "1.13.1",
"description": "WordPress plugin that logs each email sent by WordPress.",
"repository": {
"type": "git",
Expand Down
6 changes: 5 additions & 1 deletion readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ License URI: http://www.gnu.org/licenses/gpl-3.0.html
Requires at least: 5.0
Tested up to: 6.6
Requires PHP: 7.1
Stable tag: 1.13.0
Stable tag: 1.13.1

Log, view, and resend all emails sent from your WordPress site. Great for resolving email sending issues or keeping a copy for auditing.

Expand Down Expand Up @@ -108,6 +108,10 @@ Yes, you can contribute on <a href="https://github.com/awesomemotive/wp-mail-log
3. The Settings - part 2

== Changelog ==
= 1.13.1 - 2024-10-10 =
Added: Action hook when saving email logs.
Fixed: Issue with email content type.

= 1.13.0 - 2024-10-08 =
Improved: Allow admins to always have access to WP Mail Logging logs.
Improved: Use the `wp_mail_content_type` filter to determine the email content type when saving the logs.
Expand Down
6 changes: 3 additions & 3 deletions src/WPML_Plugin.php
Original file line number Diff line number Diff line change
Expand Up @@ -502,7 +502,7 @@ public function log_email_failed( $wperror ) {
* @since 1.0
* @since 1.12.0 Short-circuit if $mailArray is not an array.
* @since 1.13.0 Trim the subject to < 200 characters and save the Content-Type header if not set.
* @since {VERSION} Add a hook action `wp_mail_logging_log_email` to log email data before being sent.
* @since 1.13.1 Add a hook action `wp_mail_logging_log_email` to log email data before being sent.
*
* @return array $mailOriginal
*/
Expand All @@ -511,7 +511,7 @@ public function log_email( $mailArray ) {
/**
* Log email data before being sent.
*
* @since {VERSION}
* @since 1.13.1
*
* @param array $mailArray Array containing the mail data to be logged.
*/
Expand All @@ -523,7 +523,7 @@ public function log_email( $mailArray ) {
/**
* Save the email logs to the database.
*
* @since {VERSION}
* @since 1.13.1
*
* @param array $mail_data Array containing the mail data to be logged.
*/
Expand Down
2 changes: 1 addition & 1 deletion wp-mail-logging.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
/**
* Plugin Name: WP Mail Logging
* Plugin URI: https://wordpress.org/plugins/wp-mail-logging/
* Version: 1.13.0
* Version: 1.13.1
* Requires at least: 5.0
* Requires PHP: 7.1
* Author: WP Mail Logging Team
Expand Down

0 comments on commit c333b8f

Please sign in to comment.