Skip to content

Commit a73b103

Browse files
committed
version 2.0.11 released
1 parent 226d9ed commit a73b103

11 files changed

Lines changed: 238 additions & 226 deletions

File tree

README.txt

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
Contributors: codeboxr, manchumahara
33
Tags: changelog, history, release, version, product log
44
Requires at least: 5.3
5-
Tested up to: 6.8
6-
Stable tag: 2.0.10
5+
Tested up to: 6.9
6+
Stable tag: 2.0.11
77
Requires PHP: 7.4
88
License: GPLv2 or later
99
License URI: https://www.gnu.org/licenses/gpl-2.0.html
@@ -105,6 +105,11 @@ Yes. The Pro Addon adds a “Changelog” tab to WooCommerce products.
105105

106106

107107
== Changelog ==
108+
= 2.0.11 =
109+
* [improved] Feature field is made longer for a single change in dashboard area
110+
* [updated] WordPress core 6.9 compatible
111+
* [new] Pro addon plugin 1.2.5 released
112+
* [updated] Plugin Check 1.9.0 compatible
108113

109114
= 2.0.10 =
110115
* [updated] Composer and autoload based implementation

assets/css/cbxchangelog-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/cbxchangelog-listing.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/cbxchangelog-setting.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/images/9840-profile.png

104 KB
Loading

cbxchangelog.php

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
* Plugin Name: CBX Changelog & Release Note
1111
* Plugin URI: http://codeboxr.com/product/cbx-changelog-for-wordpress/
1212
* Description: Easy change log manager for WordPress, use for any product post type or releases notes
13-
* Version: 2.0.10
13+
* Version: 2.0.11
1414
* Author: Codeboxr
1515
* Author URI: http://codeboxr.com
1616
* License: GPL-2.0+
@@ -27,14 +27,15 @@
2727
use Cbx\Changelog\Helpers\CBXChangelogHelper;
2828

2929
defined( 'CBXCHANGELOG_PLUGIN_NAME' ) or define( 'CBXCHANGELOG_PLUGIN_NAME', 'cbxchangelog' );
30-
defined( 'CBXCHANGELOG_PLUGIN_VERSION' ) or define( 'CBXCHANGELOG_PLUGIN_VERSION', '2.0.10' );
30+
defined( 'CBXCHANGELOG_PLUGIN_VERSION' ) or define( 'CBXCHANGELOG_PLUGIN_VERSION', '2.0.11' );
3131
defined( 'CBXCHANGELOG_ROOT_PATH' ) or define( 'CBXCHANGELOG_ROOT_PATH', plugin_dir_path( __FILE__ ) );
3232
defined( 'CBXCHANGELOG_ROOT_URL' ) or define( 'CBXCHANGELOG_ROOT_URL', plugin_dir_url( __FILE__ ) );
3333
defined( 'CBXCHANGELOG_BASE_NAME' ) or define( 'CBXCHANGELOG_BASE_NAME', plugin_basename( __FILE__ ) );
3434

3535
defined( 'CBXCHANGELOG_WP_MIN_VERSION' ) or define( 'CBXCHANGELOG_WP_MIN_VERSION', '5.3' );
3636
defined( 'CBXCHANGELOG_PHP_MIN_VERSION' ) or define( 'CBXCHANGELOG_PHP_MIN_VERSION', '7.4' );
37-
defined( 'CBXCHANGELOG_PRO_VERSION' ) or define( 'CBXCHANGELOG_PRO_VERSION', '1.2.4' );
37+
38+
defined( 'CBXCHANGELOG_PRO_VERSION' ) or define( 'CBXCHANGELOG_PRO_VERSION', '1.2.5' );
3839

3940
// Include the main class
4041
if ( ! class_exists( 'CBXChangelog', false ) ) {
@@ -47,7 +48,7 @@
4748
* @return bool
4849
*/
4950
function cbxchangelog_compatible_wp_version($version = '') {
50-
if($version == '') $version = CBXCHANGELOG_WP_MIN_VERSION;
51+
if($version === '') $version = CBXCHANGELOG_WP_MIN_VERSION;
5152

5253
if ( version_compare( $GLOBALS['wp_version'], $version, '<' ) ) {
5354
return false;
@@ -64,7 +65,7 @@ function cbxchangelog_compatible_wp_version($version = '') {
6465
* @return bool
6566
*/
6667
function cbxchangelog_compatible_php_version($version = '') {
67-
if($version == '') $version = CBXCHANGELOG_PHP_MIN_VERSION;
68+
if($version === '') $version = CBXCHANGELOG_PHP_MIN_VERSION;
6869

6970
if ( version_compare( PHP_VERSION, $version, '<' ) ) {
7071
return false;

includes/CBXChangelogAdmin.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,7 @@ public function init_post_types() {
143143
'show_in_nav_menus' => true,
144144
'show_in_admin_bar' => true,
145145
'rewrite' => [ 'slug' => apply_filters( 'cbxchangelog_single_slug', $post_slug ) ],
146-
'menu_icon' => plugins_url( 'assets/images/icon_20.png', dirname( __FILE__ ) ),
146+
'menu_icon' => CBXCHANGELOG_ROOT_URL. 'assets/images/icon_20.png',
147147
'can_export' => true,
148148
'has_archive' => false,
149149
'exclude_from_search' => false,

0 commit comments

Comments
 (0)