Skip to content

Commit 966106e

Browse files
committed
version 1.0.11 released
1 parent 40d54a6 commit 966106e

1,724 files changed

Lines changed: 19278 additions & 51758 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

README.txt

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22
Contributors: codeboxr, manchumahara
33
Tags: wordpress smtp,wordpress email log,smtp
44
Requires at least: 5.3
5-
Requires PHP: 8.2
6-
Tested up to: 6.8
7-
Stable tag: 2.0.10
5+
Requires PHP: 7.4
6+
Tested up to: 6.9
7+
Stable tag: 2.0.11
88
License: GPLv2 or later
99
License URI: http://www.gnu.org/licenses/gpl-2.0.html
1010

@@ -117,6 +117,12 @@ e.g.
117117

118118

119119
== Changelog ==
120+
= 2.0.11 =
121+
* [updated] WordPress Core 6.9 Compatible
122+
* [updated] Plugin Check 1.8.0 Compatible
123+
* [updated] Pro addon V1.0.8 released
124+
* [updated] Misc changes
125+
120126
= 2.0.10 =
121127
* [updated] Pro addon V1.0.7 released
122128
* [fixed] Composer platform check issue fixed

assets/css/comfortsmtp-admin.css

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

assets/css/comfortsmtp-builder.css

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

assets/js/build/comfortsmtplogs.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

cbxwpemaillogger.php

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,9 @@
1616
* Plugin Name: Comfort Email SMTP, Logger & Email Api
1717
* Plugin URI: https://codeboxr.com/product/cbx-email-logger-for-wordpress/
1818
* Description: Various SMTP protocol, Logs email, tracks sent or failed status and more.
19-
* Version: 2.0.10
19+
* Version: 2.0.11
2020
* Requires at least: 5.3
21-
* Requires PHP: 8.2
21+
* Requires PHP: 7.4
2222
* Author: Codeboxr
2323
* Author URI: https://codeboxr.com
2424
* License: GPL-2.0+
@@ -35,17 +35,18 @@
3535
}
3636

3737
defined( 'COMFORTSMTP_PLUGIN_NAME' ) or define( 'COMFORTSMTP_PLUGIN_NAME', 'cbxwpemaillogger' );
38-
defined( 'COMFORTSMTP_PLUGIN_VERSION' ) or define( 'COMFORTSMTP_PLUGIN_VERSION', '2.0.10' );
38+
defined( 'COMFORTSMTP_PLUGIN_VERSION' ) or define( 'COMFORTSMTP_PLUGIN_VERSION', '2.0.11' );
3939
defined( 'COMFORTSMTP_BASE_NAME' ) or define( 'COMFORTSMTP_BASE_NAME', plugin_basename( __FILE__ ) );
4040
defined( 'COMFORTSMTP_ROOT_PATH' ) or define( 'COMFORTSMTP_ROOT_PATH', plugin_dir_path( __FILE__ ) );
4141
defined( 'COMFORTSMTP_ROOT_URL' ) or define( 'COMFORTSMTP_ROOT_URL', plugin_dir_url( __FILE__ ) );
4242

4343
defined( 'COMFORTSMTP_WP_MIN_VERSION' ) or define( 'COMFORTSMTP_WP_MIN_VERSION', '5.3' );
44-
defined( 'COMFORTSMTP_PHP_MIN_VERSION' ) or define( 'COMFORTSMTP_PHP_MIN_VERSION', '8.2' );
44+
defined( 'COMFORTSMTP_PHP_MIN_VERSION' ) or define( 'COMFORTSMTP_PHP_MIN_VERSION', '7.4' );
4545

4646

47+
defined( 'COMFORTSMTP_PRO_VERSION' ) or define( 'COMFORTSMTP_PRO_VERSION', '1.0.8' );
48+
4749
defined( 'COMFORTSMTP_DEV_MODE' ) or define( 'COMFORTSMTP_DEV_MODE', false );
48-
defined( 'COMFORTSMTP_PRO_VERSION' ) or define( 'COMFORTSMTP_PRO_VERSION', '1.0.7' );
4950

5051

5152
// Include the main Cbx class.

composer.json

Lines changed: 0 additions & 29 deletions
This file was deleted.

includes/Api/ComfortRoute.php

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,11 @@
22

33
namespace Comfort\Crm\Smtp\Api;
44

5+
// If this file is called directly, abort.
6+
if ( ! defined( 'WPINC' ) ) {
7+
die;
8+
}
9+
510
use WP_Error;
611

712
/**

includes/Api/index.php

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,5 @@
11
<?php
2+
// If this file is called directly, abort.
3+
if ( ! defined( 'WPINC' ) ) {
4+
die;
5+
}

includes/ComfortSmtp.php

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,8 @@
11
<?php
2+
// If this file is called directly, abort.
3+
if ( ! defined( 'WPINC' ) ) {
4+
die;
5+
}
26

37
use Comfort\Crm\Smtp\Helpers\ComfortSmtpHelpers;
48
use Comfort\Crm\Smtp\ComfortSmtpHooks;
@@ -88,7 +92,7 @@ public function __set( string $key, $value ) {
8892
* @since 2.0.5
8993
*/
9094
public function __clone() {
91-
cbxmcratingreview_doing_it_wrong( __FUNCTION__, esc_html__( 'Cloning is forbidden.', 'cbxwpemaillogger' ), '2.0.5' );
95+
comfortsmtp_doing_it_wrong( __FUNCTION__, esc_html__( 'Cloning is forbidden.', 'cbxwpemaillogger' ), '2.0.5' );
9296
}//end method clone
9397

9498
/**
@@ -97,7 +101,7 @@ public function __clone() {
97101
* @since 2.0.5
98102
*/
99103
public function __wakeup() {
100-
cbxmcratingreview_doing_it_wrong( __FUNCTION__, esc_html__( 'Unserializing instances of this class is forbidden.', 'cbxwpemaillogger' ), '2.0.5' );
104+
comfortsmtp_doing_it_wrong( __FUNCTION__, esc_html__( 'Unserializing instances of this class is forbidden.', 'cbxwpemaillogger' ), '2.0.5' );
101105
}//end method wakeup
102106

103107
/**

includes/ComfortSmtpAdmin.php

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,11 @@
11
<?php
2-
32
namespace Comfort\Crm\Smtp;
43

4+
// If this file is called directly, abort.
5+
if ( ! defined( 'WPINC' ) ) {
6+
die;
7+
}
8+
59
//phpcs:disable WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedHooknameFound
610

711
use Comfort\Crm\Smtp\Helpers\ComfortSmtpHelpers;

0 commit comments

Comments
 (0)