Version Description
(2018-08-06) - Fix for backwards compatibility
Download this release
Release Info
Developer | Mailgun |
Plugin | Mailgun for WordPress |
Version | 1.5.12.1 |
Comparing to | |
See all releases |
Code changes from version 1.5.12 to 1.5.12.1
- CHANGELOG.md +3 -0
- includes/options-page.php +0 -1
- mailgun.php +1 -1
- readme.txt +4 -1
CHANGELOG.md
CHANGED
@@ -1,6 +1,9 @@
|
|
1 |
Changelog
|
2 |
=========
|
3 |
|
|
|
|
|
|
|
4 |
1.5.12 (2018-08-02)
|
5 |
- Add EU endpoint for Mailgun HTTP API
|
6 |
- Fix broken logo image on Lists page
|
1 |
Changelog
|
2 |
=========
|
3 |
|
4 |
+
1.5.12.1 (2018-08-06)
|
5 |
+
- Fix for backwards compatibility
|
6 |
+
|
7 |
1.5.12 (2018-08-02)
|
8 |
- Add EU endpoint for Mailgun HTTP API
|
9 |
- Fix broken logo image on Lists page
|
includes/options-page.php
CHANGED
@@ -36,7 +36,6 @@
|
|
36 |
</th>
|
37 |
<td>
|
38 |
<select id="mailgun-region" name="mailgun[region]">
|
39 |
-
<option value="0"<?php selected('0', $this->get_option('region')); ?>><?php _e('Select', 'mailgun') ?></option>
|
40 |
<option value="us"<?php selected('us', $this->get_option('region')); ?>><?php _e('U.S./North America', 'mailgun') ?></option>
|
41 |
<option value="eu"<?php selected('eu', $this->get_option('region')); ?>><?php _e('Europe', 'mailgun') ?></option>
|
42 |
</select>
|
36 |
</th>
|
37 |
<td>
|
38 |
<select id="mailgun-region" name="mailgun[region]">
|
|
|
39 |
<option value="us"<?php selected('us', $this->get_option('region')); ?>><?php _e('U.S./North America', 'mailgun') ?></option>
|
40 |
<option value="eu"<?php selected('eu', $this->get_option('region')); ?>><?php _e('Europe', 'mailgun') ?></option>
|
41 |
</select>
|
mailgun.php
CHANGED
@@ -4,7 +4,7 @@
|
|
4 |
* Plugin Name: Mailgun
|
5 |
* Plugin URI: http://wordpress.org/extend/plugins/mailgun/
|
6 |
* Description: Mailgun integration for WordPress
|
7 |
-
* Version: 1.5.12
|
8 |
* Author: Mailgun
|
9 |
* Author URI: http://www.mailgun.com/
|
10 |
* License: GPLv2 or later
|
4 |
* Plugin Name: Mailgun
|
5 |
* Plugin URI: http://wordpress.org/extend/plugins/mailgun/
|
6 |
* Description: Mailgun integration for WordPress
|
7 |
+
* Version: 1.5.12.1
|
8 |
* Author: Mailgun
|
9 |
* Author URI: http://www.mailgun.com/
|
10 |
* License: GPLv2 or later
|
readme.txt
CHANGED
@@ -5,7 +5,7 @@ Contributors: Mailgun, sivel, lookahead.io, m35dev
|
|
5 |
Tags: mailgun, smtp, http, api, mail, email
|
6 |
Requires at least: 3.3
|
7 |
Tested up to: 4.9.7
|
8 |
-
Stable tag: 1.5.12
|
9 |
License: GPLv2 or later
|
10 |
|
11 |
|
@@ -128,6 +128,9 @@ MAILGUN_FROM_ADDRESS Type: string
|
|
128 |
|
129 |
== Changelog ==
|
130 |
|
|
|
|
|
|
|
131 |
= 1.5.12 (2018-08-02)
|
132 |
- Add EU endpoint for Mailgun HTTP API
|
133 |
- Fix broken logo image on Lists page
|
5 |
Tags: mailgun, smtp, http, api, mail, email
|
6 |
Requires at least: 3.3
|
7 |
Tested up to: 4.9.7
|
8 |
+
Stable tag: 1.5.12.1
|
9 |
License: GPLv2 or later
|
10 |
|
11 |
|
128 |
|
129 |
== Changelog ==
|
130 |
|
131 |
+
= 1.5.12.1 (2018-08-06)
|
132 |
+
- Fix for backwards compatibility
|
133 |
+
|
134 |
= 1.5.12 (2018-08-02)
|
135 |
- Add EU endpoint for Mailgun HTTP API
|
136 |
- Fix broken logo image on Lists page
|