Skip to content

Commit

Permalink
Version 1.0.12
Browse files Browse the repository at this point in the history
= Version 1.0.12 – Apr 10, 2024 =

+   Added notice if activated without {eac}Doojigger.
  • Loading branch information
KBurkholder committed Apr 16, 2024
1 parent cd0e007 commit 8eab7d5
Show file tree
Hide file tree
Showing 4 changed files with 26 additions and 8 deletions.
3 changes: 3 additions & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
.distignore export-ignore
.gitattributes export-ignore
.gitignore export-ignore
17 changes: 14 additions & 3 deletions eacSimpleSMTP.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,15 +7,15 @@
* @category WordPress Plugin
* @package {eac}SimpleSMTP\{eac}Doojigger Extensions
* @author Kevin Burkholder <KBurkholder@EarthAsylum.com>
* @copyright Copyright (c) 2023 EarthAsylum Consulting <www.earthasylum.com>
* @copyright Copyright (c) 2024 EarthAsylum Consulting <www.earthasylum.com>
* @version 1.x
*
* @wordpress-plugin
* Plugin Name: {eac}SimpleSMTP
* Description: {eac}SimpleSMTP Configure WordPress wp_mail and phpmailer to use your SMTP server
* Version: 1.0.11
* Version: 1.0.12
* Requires at least: 5.5.0
* Tested up to: 6.4
* Tested up to: 6.5
* Requires PHP: 7.2
* Plugin URI: https://eacdoojigger.earthasylum.com/eacsimplesmtp/
* Author: EarthAsylum Consulting
Expand All @@ -24,6 +24,17 @@
* License URI: https://www.gnu.org/licenses/gpl.html
*/

if (!defined('EAC_DOOJIGGER_VERSION'))
{
\add_action( 'all_admin_notices', function()
{
echo '<div class="notice notice-error is-dismissible"><p>{eac}SimpleSMTP requires installation & activation of '.
'<a href="https://eacdoojigger.earthasylum.com/eacdoojigger" target="_blank">{eac}Doojigger</a>.</p></div>';
}
);
return;
}

class eacSimpleSMTP
{
/**
Expand Down
4 changes: 2 additions & 2 deletions readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@

Plugin URI: https://eacdoojigger.earthasylum.com/eacsimplesmtp/
Author: [EarthAsylum Consulting](https://www.earthasylum.com)
Stable tag: 1.0.11
Last Updated: 31-Oct-2023
Stable tag: 1.0.12
Last Updated: 10-Apr-2024
Requires at least: 5.5.0
Tested up to: 6.4
Requires PHP: 7.2
Expand Down
10 changes: 7 additions & 3 deletions readme.txt
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
=== {eac}Doojigger Simple SMTP Extension for WordPress ===
Plugin URI: https://eacdoojigger.earthasylum.com/eacsimplesmtp/
Author: [EarthAsylum Consulting](https://www.earthasylum.com)
Stable tag: 1.0.11
Last Updated: 31-Oct-2023
Stable tag: 1.0.12
Last Updated: 10-Apr-2024
Requires at least: 5.5.0
Tested up to: 6.4
Requires PHP: 7.2
Expand Down Expand Up @@ -123,7 +123,7 @@ Once installed and activated options for this extension will show in the 'Simple

== Copyright ==

= Copyright © 2019-2023, EarthAsylum Consulting, distributed under the terms of the GNU GPL. =
= Copyright © 2019-2024, EarthAsylum Consulting, distributed under the terms of the GNU GPL. =

This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.

Expand All @@ -134,6 +134,10 @@ You should receive a copy of the GNU General Public License along with this prog

== Changelog ==

= Version 1.0.12 – Apr 10, 2024 =

+ Added notice if activated without {eac}Doojigger.

= Version 1.0.11 – October 31, 2023 =

+ Prevent direct load of included files.
Expand Down

0 comments on commit 8eab7d5

Please sign in to comment.