Skip to content

Commit

Permalink
release 1.2.5
Browse files Browse the repository at this point in the history
  • Loading branch information
webaware committed Dec 2, 2015
1 parent e9b49f2 commit b52b6fa
Show file tree
Hide file tree
Showing 4 changed files with 64 additions and 30 deletions.
38 changes: 38 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
# Disable Emails

## Changelog

### 1.2.5, 2015-12-02

* added: Chinese translation (thanks, [Cai_Miao](https://profiles.wordpress.org/cai_miao)!)
* added: Japanese translation (thanks, [Cai_Miao](https://profiles.wordpress.org/cai_miao)!)
* added: status message on At A Glance dashboard metabox when emails are disabled

### 1.2.4, 2015-02-28

* added: German translation (thanks, [Peter Harlacher](http://helvetian.io/)!)

### 1.2.3, 2014-11-03

* added: Czech translation (thanks, [Rudolf Klusal](http://www.klusik.cz/)!)

### 1.2.2, 2014-08-31

* added: Norwegian translations (thanks, [neonnero](http://www.neonnero.com/)!)

### 1.2.1, 2014-06-22

* added: warn when wp_mail() can't be replaced, so admin knows that emails cannot be disabled

### 1.2.0, 2014-04-19

* changed: refactored to fully support filter and action hooks that other plugins might use to listen to and modify emails, e.g. so that email loggers can properly record what would have been sent

### 1.1.0, 2014-02-25

* fixed: `wp_mail()` now returns true, simulating a successful email attempt
* added: support filter hook `wp_mail` so that listeners can act, e.g. log emails (even though they will not be sent); can be turned off in settings

### 1.0.0, 2014-02-18

* initial release
2 changes: 1 addition & 1 deletion disable-emails.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
Plugin Name: Disable Emails
Plugin URI: http://shop.webaware.com.au/downloads/disable-emails/
Description: Stop WordPress from sending any emails. ANY!
Version: 1.2.5-dev
Version: 1.2.5
Author: WebAware
Author URI: http://webaware.com.au/
Text Domain: disable-emails
Expand Down
16 changes: 10 additions & 6 deletions languages/disable-emails.pot
Original file line number Diff line number Diff line change
Expand Up @@ -4,35 +4,39 @@ msgid ""
msgstr ""
"Project-Id-Version: disable-emails 1.2.5\n"
"Report-Msgid-Bugs-To: [email protected]\n"
"POT-Creation-Date: 2015-12-02 17:42+1100\n"
"PO-Revision-Date: 2015-12-02 17:42+1100\n"
"POT-Creation-Date: 2015-12-02 18:16+1100\n"
"PO-Revision-Date: 2015-12-02 18:16+1100\n"
"Last-Translator: Ross McKay <[email protected]>\n"
"Language-Team: \n"
"Language: en_US\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"

#: includes/class.DisableEmailsPlugin.php:126
#: includes/class.DisableEmailsPlugin.php:127
msgctxt "plugin details links"
msgid "Get help"
msgstr ""

#: includes/class.DisableEmailsPlugin.php:127
#: includes/class.DisableEmailsPlugin.php:128
msgctxt "plugin details links"
msgid "Rating"
msgstr ""

#: includes/class.DisableEmailsPlugin.php:128
#: includes/class.DisableEmailsPlugin.php:129
msgctxt "plugin details links"
msgid "Translate"
msgstr ""

#: includes/class.DisableEmailsPlugin.php:129
#: includes/class.DisableEmailsPlugin.php:130
msgctxt "plugin details links"
msgid "Donate"
msgstr ""

#: includes/class.DisableEmailsPlugin.php:151
msgid "Emails are disabled."
msgstr ""

#: views/settings-form.php:10
msgid "Disable Emails settings"
msgstr ""
Expand Down
38 changes: 15 additions & 23 deletions readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ Author URI: http://webaware.com.au/
Donate link: http://shop.webaware.com.au/donations/?donation_for=Disable+Emails
Tags: disable emails, block emails
Requires at least: 3.6.1
Tested up to: 4.3
Stable tag: 1.2.4
Tested up to: 4.4
Stable tag: 1.2.5
License: GPLv2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html

Expand Down Expand Up @@ -63,38 +63,30 @@ Behind the scenes, it creates a private copy of PHPMailer and allows the system
* [Translate into your preferred language](https://translate.webaware.com.au/projects/disable-emails)
* [Fork me on GitHub](https://github.com/webaware/disable-emails)

== Upgrade Notice ==

= 1.2.5 =

added Chinese and Japanese translations, verified working in WordPress 4.4

== Changelog ==

= 1.2.5, soon... =
The full changelog can be found [on GitHub](https://github.com/webaware/disable-emails/blob/master/changelog.md). Recent entries:

### 1.2.5, 2015-12-02

* added: Chinese translation (thanks, [Cai_Miao](https://profiles.wordpress.org/cai_miao)!)
* added: Japanese translation (thanks, [Cai_Miao](https://profiles.wordpress.org/cai_miao)!)
* added: status message on At A Glance dashboard metabox when emails are disabled

= 1.2.4, 2015-02-28 =
### 1.2.4, 2015-02-28

* added: German translation (thanks, [Peter Harlacher](http://helvetian.io/)!)

= 1.2.3, 2014-11-03 =
### 1.2.3, 2014-11-03

* added: Czech translation (thanks, [Rudolf Klusal](http://www.klusik.cz/)!)

= 1.2.2, 2014-08-31 =
### 1.2.2, 2014-08-31

* added: Norwegian translations (thanks, [neonnero](http://www.neonnero.com/)!)

= 1.2.1, 2014-06-22 =

* added: warn when wp_mail() can't be replaced, so admin knows that emails cannot be disabled

= 1.2.0, 2014-04-19 =

* changed: refactored to fully support filter and action hooks that other plugins might use to listen to and modify emails, e.g. so that email loggers can properly record what would have been sent

= 1.1.0, 2014-02-25 =

* fixed: `wp_mail()` now returns true, simulating a successful email attempt
* added: support filter hook `wp_mail` so that listeners can act, e.g. log emails (even though they will not be sent); can be turned off in settings

= 1.0.0, 2014-02-18 =

* initial release

0 comments on commit b52b6fa

Please sign in to comment.