Customizer Search - Version 1.1.3

Version Description

  • Setup plugin translations through https://translate.wordpress.org/projects/wp-plugins/customizer-search/.
Download this release

Release Info

Developer Nikschavan
Plugin Icon 128x128 Customizer Search
Version 1.1.3
Comparing to
See all releases

Code changes from version 1.1.2 to 1.1.3

class-customizer-search.php CHANGED
@@ -43,6 +43,16 @@ class Customizer_Search {
43
  private function hooks() {
44
  add_action( 'customize_controls_enqueue_scripts', array( $this, 'enqueue_scripts' ) );
45
  add_action( 'customize_controls_print_footer_scripts', array( $this, 'footer_scripts' ) );
 
 
 
 
 
 
 
 
 
 
46
  }
47
 
48
  /**
43
  private function hooks() {
44
  add_action( 'customize_controls_enqueue_scripts', array( $this, 'enqueue_scripts' ) );
45
  add_action( 'customize_controls_print_footer_scripts', array( $this, 'footer_scripts' ) );
46
+ add_action( 'plugins_loaded', array( $this, 'load_textdomain' ) );
47
+ }
48
+
49
+ /**
50
+ * Load the plugin textdomain.
51
+ *
52
+ * @return void
53
+ */
54
+ public function load_textdomain() {
55
+ load_plugin_textdomain( 'customizer-search', false, basename( dirname( __FILE__ ) ) . '/languages/' );
56
  }
57
 
58
  /**
customizer-search.php CHANGED
@@ -7,12 +7,12 @@
7
  * Author URI: https://www.brainstormforce.com/
8
  * Text Domain: customizer-search
9
  * Domain Path: /languages
10
- * Version: 1.1.2
11
  *
12
  * @package Customizer_Search
13
  */
14
 
15
- define( 'BSFCS_VER', '1.1.2' );
16
  define( 'BSFCS_DIR', plugin_dir_path( __FILE__ ) );
17
  define( 'BSFCS_URL', plugins_url( '/', __FILE__ ) );
18
  define( 'BSFCS_PATH', plugin_basename( __FILE__ ) );
7
  * Author URI: https://www.brainstormforce.com/
8
  * Text Domain: customizer-search
9
  * Domain Path: /languages
10
+ * Version: 1.1.3
11
  *
12
  * @package Customizer_Search
13
  */
14
 
15
+ define( 'BSFCS_VER', '1.1.3' );
16
  define( 'BSFCS_DIR', plugin_dir_path( __FILE__ ) );
17
  define( 'BSFCS_URL', plugins_url( '/', __FILE__ ) );
18
  define( 'BSFCS_PATH', plugin_basename( __FILE__ ) );
readme.txt CHANGED
@@ -2,9 +2,9 @@
2
  Contributors: brainstormforce, Nikschavan
3
  Donate link: https://www.paypal.me/BrainstormForce
4
  Tags: customizer, search
5
- Requires at least: 4.4
6
- Tested up to: 5.2.2
7
- Stable tag: 1.1.2
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
@@ -26,6 +26,9 @@ https://www.youtube.com/watch?v=IBFfap_vGzg
26
 
27
  == Changelog ==
28
 
 
 
 
29
  = 1.1.2 =
30
  - Change the background color highlight in the searched results.
31
 
2
  Contributors: brainstormforce, Nikschavan
3
  Donate link: https://www.paypal.me/BrainstormForce
4
  Tags: customizer, search
5
+ Requires at least: 4.6
6
+ Tested up to: 5.4
7
+ Stable tag: 1.1.3
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
26
 
27
  == Changelog ==
28
 
29
+ = 1.1.3 =
30
+ - Setup plugin translations through https://translate.wordpress.org/projects/wp-plugins/customizer-search/.
31
+
32
  = 1.1.2 =
33
  - Change the background color highlight in the searched results.
34