Version Description
Code improvement.
Download this release
Release Info
Developer | wpexpertsio |
Plugin | myCRED |
Version | 2.4.3 |
Comparing to | |
See all releases |
Code changes from version 2.4.2 to 2.4.3
- includes/classes/class.mycred-license.php +2 -2
- mycred.php +7 -7
- readme.txt +11 -2
includes/classes/class.mycred-license.php
CHANGED
@@ -154,7 +154,7 @@ if ( ! class_exists( 'myCRED_License' ) ) :
|
|
154 |
|
155 |
$plugin_info = $this->get_plugin_detail();
|
156 |
|
157 |
-
if ( empty( $plugin_info->package ) && empty( $plugin_info->expiry ) ) {
|
158 |
|
159 |
$message = 'License not found.';
|
160 |
|
@@ -167,7 +167,7 @@ if ( ! class_exists( 'myCRED_License' ) ) :
|
|
167 |
}
|
168 |
else {
|
169 |
|
170 |
-
$plugin_meta[] = '<strong style="color:green;">Expires in ' . $this->calculate_license_expiry( $plugin_info->expiry ) . '</strong>';
|
171 |
|
172 |
}
|
173 |
|
154 |
|
155 |
$plugin_info = $this->get_plugin_detail();
|
156 |
|
157 |
+
if ( empty( $plugin_info->package ) && ( empty( $plugin_info->expiry ) || empty( $plugin_info->expiry->expiration_date ) ) ) {
|
158 |
|
159 |
$message = 'License not found.';
|
160 |
|
167 |
}
|
168 |
else {
|
169 |
|
170 |
+
$plugin_meta[] = '<strong style="color:green;">Expires in ' . $this->calculate_license_expiry( $plugin_info->expiry->expiration_date ) . '</strong>';
|
171 |
|
172 |
}
|
173 |
|
mycred.php
CHANGED
@@ -3,13 +3,13 @@
|
|
3 |
* Plugin Name: myCred
|
4 |
* Plugin URI: https://mycred.me
|
5 |
* Description: An adaptive points management system for WordPress powered websites.
|
6 |
-
* Version: 2.4.
|
7 |
* Tags: point, credit, loyalty program, engagement, reward, woocommerce rewards
|
8 |
* Author: myCred
|
9 |
* Author URI: https://mycred.me
|
10 |
* Author Email: support@mycred.me
|
11 |
* Requires at least: WP 4.8
|
12 |
-
* Tested up to: WP 5.
|
13 |
* Text Domain: mycred
|
14 |
* Domain Path: /lang
|
15 |
* License: GPLv2 or later
|
@@ -20,7 +20,7 @@ if ( ! class_exists( 'myCRED_Core' ) ) :
|
|
20 |
final class myCRED_Core {
|
21 |
|
22 |
// Plugin Version
|
23 |
-
public $version = '2.4.
|
24 |
|
25 |
// Instnace
|
26 |
protected static $_instance = NULL;
|
@@ -54,14 +54,14 @@ if ( ! class_exists( 'myCRED_Core' ) ) :
|
|
54 |
* @since 1.7
|
55 |
* @version 1.0
|
56 |
*/
|
57 |
-
public function __clone() { _doing_it_wrong( __FUNCTION__, 'Cheatin’ huh?', '2.4.
|
58 |
|
59 |
/**
|
60 |
* Not allowed
|
61 |
* @since 1.7
|
62 |
* @version 1.0
|
63 |
*/
|
64 |
-
public function __wakeup() { _doing_it_wrong( __FUNCTION__, 'Cheatin’ huh?', '2.4.
|
65 |
|
66 |
/**
|
67 |
* Get
|
@@ -82,7 +82,7 @@ if ( ! class_exists( 'myCRED_Core' ) ) :
|
|
82 |
if ( ! defined( $name ) )
|
83 |
define( $name, $value );
|
84 |
elseif ( ! $definable && defined( $name ) )
|
85 |
-
_doing_it_wrong( 'myCRED_Core->define()', 'Could not define: ' . $name . ' as it is already defined somewhere else!', '2.4.
|
86 |
}
|
87 |
|
88 |
/**
|
@@ -94,7 +94,7 @@ if ( ! class_exists( 'myCRED_Core' ) ) :
|
|
94 |
if ( file_exists( $required_file ) )
|
95 |
require_once $required_file;
|
96 |
else
|
97 |
-
_doing_it_wrong( 'myCRED_Core->file()', 'Requested file ' . $required_file . ' not found.', '2.4.
|
98 |
}
|
99 |
|
100 |
/**
|
3 |
* Plugin Name: myCred
|
4 |
* Plugin URI: https://mycred.me
|
5 |
* Description: An adaptive points management system for WordPress powered websites.
|
6 |
+
* Version: 2.4.3
|
7 |
* Tags: point, credit, loyalty program, engagement, reward, woocommerce rewards
|
8 |
* Author: myCred
|
9 |
* Author URI: https://mycred.me
|
10 |
* Author Email: support@mycred.me
|
11 |
* Requires at least: WP 4.8
|
12 |
+
* Tested up to: WP 5.9
|
13 |
* Text Domain: mycred
|
14 |
* Domain Path: /lang
|
15 |
* License: GPLv2 or later
|
20 |
final class myCRED_Core {
|
21 |
|
22 |
// Plugin Version
|
23 |
+
public $version = '2.4.3';
|
24 |
|
25 |
// Instnace
|
26 |
protected static $_instance = NULL;
|
54 |
* @since 1.7
|
55 |
* @version 1.0
|
56 |
*/
|
57 |
+
public function __clone() { _doing_it_wrong( __FUNCTION__, 'Cheatin’ huh?', '2.4.3' ); }
|
58 |
|
59 |
/**
|
60 |
* Not allowed
|
61 |
* @since 1.7
|
62 |
* @version 1.0
|
63 |
*/
|
64 |
+
public function __wakeup() { _doing_it_wrong( __FUNCTION__, 'Cheatin’ huh?', '2.4.3' ); }
|
65 |
|
66 |
/**
|
67 |
* Get
|
82 |
if ( ! defined( $name ) )
|
83 |
define( $name, $value );
|
84 |
elseif ( ! $definable && defined( $name ) )
|
85 |
+
_doing_it_wrong( 'myCRED_Core->define()', 'Could not define: ' . $name . ' as it is already defined somewhere else!', '2.4.3' );
|
86 |
}
|
87 |
|
88 |
/**
|
94 |
if ( file_exists( $required_file ) )
|
95 |
require_once $required_file;
|
96 |
else
|
97 |
+
_doing_it_wrong( 'myCRED_Core->file()', 'Requested file ' . $required_file . ' not found.', '2.4.3' );
|
98 |
}
|
99 |
|
100 |
/**
|
readme.txt
CHANGED
@@ -3,7 +3,7 @@ Contributors: mycred,wpexpertsio
|
|
3 |
Tags: badges, gamification, loyalty, points, rewards
|
4 |
Requires at least: 4.8
|
5 |
Tested up to: 5.9
|
6 |
-
Stable tag: 2.4.
|
7 |
Requires PHP: 7.0
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
@@ -300,6 +300,12 @@ You can find a list of [frequently asked questions](https://mycred.me/about/faq/
|
|
300 |
|
301 |
== Upgrade Notice ==
|
302 |
|
|
|
|
|
|
|
|
|
|
|
|
|
303 |
= 2.4.1 =
|
304 |
New features and Bug fixes.
|
305 |
|
@@ -348,8 +354,11 @@ The banking module have been replaced by Central deposite module, and interest r
|
|
348 |
|
349 |
== Changelog ==
|
350 |
|
|
|
|
|
|
|
351 |
= 2.4.2 =
|
352 |
-
- SQL query optimization
|
353 |
|
354 |
= 2.4.1 =
|
355 |
- **NEW** - Added new attributes "streaming" and "duration" in mycred_video shortcode.
|
3 |
Tags: badges, gamification, loyalty, points, rewards
|
4 |
Requires at least: 4.8
|
5 |
Tested up to: 5.9
|
6 |
+
Stable tag: 2.4.3
|
7 |
Requires PHP: 7.0
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
300 |
|
301 |
== Upgrade Notice ==
|
302 |
|
303 |
+
= 2.4.3 =
|
304 |
+
Code improvement.
|
305 |
+
|
306 |
+
= 2.4.2 =
|
307 |
+
Code improvement.
|
308 |
+
|
309 |
= 2.4.1 =
|
310 |
New features and Bug fixes.
|
311 |
|
354 |
|
355 |
== Changelog ==
|
356 |
|
357 |
+
= 2.4.3 =
|
358 |
+
- **TWAEK** - Improve license system.
|
359 |
+
|
360 |
= 2.4.2 =
|
361 |
+
- **TWEAK** - SQL query optimization
|
362 |
|
363 |
= 2.4.1 =
|
364 |
- **NEW** - Added new attributes "streaming" and "duration" in mycred_video shortcode.
|