Skip to content

Commit 7264c81

Browse files
committed
updated checker issue
1 parent a628829 commit 7264c81

File tree

4 files changed

+11
-8
lines changed

4 files changed

+11
-8
lines changed

cbxtaxonomy.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
* Plugin Name: CBX Taxonomy
1717
* Plugin URI: https://github.com/codeboxrcodehub/cbxtaxonomy
1818
* Description: Custom taxonomy system for custom table/custom object types. This feature plugin is required for ComfortResume, ComfortJob and others plugins.
19-
* Version: 1.0.1
19+
* Version: 1.0.2
2020
* Requires at least: 5.3
2121
* Requires PHP: 8.2
2222
* Author: Codeboxr
@@ -35,7 +35,7 @@
3535
use Cbx\Taxonomy\CBXTaxonomyHelper;
3636

3737
defined( 'CBXTAXONOMY_PLUGIN_NAME' ) or define( 'CBXTAXONOMY_PLUGIN_NAME', 'cbxtaxonomy' );
38-
defined( 'CBXTAXONOMY_PLUGIN_VERSION' ) or define( 'CBXTAXONOMY_PLUGIN_VERSION', '1.0.1' );
38+
defined( 'CBXTAXONOMY_PLUGIN_VERSION' ) or define( 'CBXTAXONOMY_PLUGIN_VERSION', '1.0.2' );
3939
defined( 'CBXTAXONOMY_BASE_NAME' ) or define( 'CBXTAXONOMY_BASE_NAME', plugin_basename( __FILE__ ) );
4040
defined( 'CBXTAXONOMY_ROOT_PATH' ) or define( 'CBXTAXONOMY_ROOT_PATH', plugin_dir_path( __FILE__ ) );
4141
defined( 'CBXTAXONOMY_ROOT_URL' ) or define( 'CBXTAXONOMY_ROOT_URL', plugin_dir_url( __FILE__ ) );

includes/CBXTaxonomy.php

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -38,13 +38,14 @@ public function __construct() {
3838

3939
$this->include_files();
4040

41-
//$this->unit_testing();
41+
//$this->unit_testing();//don't delete this
4242
$this->load_orm();
43-
$this->load_plugin_textdomain();
4443

44+
45+
add_filter( 'init', [ $this, 'load_plugin_textdomain' ]);
4546
add_filter( 'plugin_row_meta', [ $this, 'plugin_row_meta' ], 10, 4 );
4647

47-
//new Hooks();
48+
//new Hooks();//we are not using the github update checker
4849
}//end of method constructor
4950

5051
/**

includes/Hooks.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
class Hooks {
88
public function __construct() {
9-
//$this->update_checker();
9+
$this->update_checker();
1010
}
1111

1212
public function update_checker() {

readme.txt

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
=== CBX Taxonomy ===
22
Contributors: codeboxr, manchumahara
33
Requires at least: 5.3
4-
Tested up to: 6.7.2
5-
Stable tag: 1.0.1
4+
Tested up to: 6.8
5+
Stable tag: 1.0.2
66
License: MIT
77
License URI: https://github.com/codeboxrcodehub/cbxtaxonomy/blob/master/LICENSE.txt
88

@@ -29,6 +29,8 @@ The following software is required to develop using CBXTaxonomy:
2929

3030

3131
== Changelog ==
32+
= 1.0.2 =
33+
* Github based plugin checker removed
3234

3335
= 1.0.1 =
3436
* Added language file

0 commit comments

Comments
 (0)