Child Theme Configurator - Version 2.1.1

Version Description

  • change packer class to use standard < 5.4 array syntax
Download this release

Release Info

Developer lilaeamedia
Plugin Icon 128x128 Child Theme Configurator
Version 2.1.1
Comparing to
See all releases

Code changes from version 2.1.0 to 2.1.1

child-theme-configurator.php CHANGED
@@ -6,7 +6,7 @@ if ( !defined( 'ABSPATH' ) ) exit;
6
  Plugin Name: Child Theme Configurator
7
  Plugin URI: http://www.childthemeconfigurator.com
8
  Description: When using the Customizer is not enough - Create child themes and customize styles, templates, functions and more.
9
- Version: 2.1.0
10
  Author: Lilaea Media
11
  Author URI: http://www.lilaeamedia.com
12
  Text Domain: child-theme-configurator
6
  Plugin Name: Child Theme Configurator
7
  Plugin URI: http://www.childthemeconfigurator.com
8
  Description: When using the Customizer is not enough - Create child themes and customize styles, templates, functions and more.
9
+ Version: 2.1.1
10
  Author: Lilaea Media
11
  Author URI: http://www.lilaeamedia.com
12
  Text Domain: child-theme-configurator
includes/class-ctc-admin.php CHANGED
@@ -6,7 +6,7 @@ if ( !defined( 'ABSPATH' ) ) exit;
6
  Class: ChildThemeConfiguratorAdmin
7
  Plugin URI: http://www.childthemeconfigurator.com/
8
  Description: Main Controller Class
9
- Version: 2.1.0
10
  Author: Lilaea Media
11
  Author URI: http://www.lilaeamedia.com/
12
  Text Domain: child-theme-configurator
6
  Class: ChildThemeConfiguratorAdmin
7
  Plugin URI: http://www.childthemeconfigurator.com/
8
  Description: Main Controller Class
9
+ Version: 2.1.1
10
  Author: Lilaea Media
11
  Author URI: http://www.lilaeamedia.com/
12
  Text Domain: child-theme-configurator
includes/class-ctc-css.php CHANGED
@@ -6,7 +6,7 @@ if ( !defined( 'ABSPATH' ) ) exit;
6
  Class: ChildThemeConfiguratorCSS
7
  Plugin URI: http://www.childthemeconfigurator.com/
8
  Description: Handles all CSS input, output, parsing, normalization and storage
9
- Version: 2.1.0
10
  Author: Lilaea Media
11
  Author URI: http://www.lilaeamedia.com/
12
  Text Domain: chld_thm_cfg
@@ -165,7 +165,7 @@ class ChildThemeConfiguratorCSS {
165
  $this->parnt = '';
166
  $this->ignoreparnt = 0;
167
  $this->qpriority = 10;
168
- $this->version = '2.1.0';
169
 
170
  // do not set enqueue, not being set is used to flag old versions
171
 
6
  Class: ChildThemeConfiguratorCSS
7
  Plugin URI: http://www.childthemeconfigurator.com/
8
  Description: Handles all CSS input, output, parsing, normalization and storage
9
+ Version: 2.1.1
10
  Author: Lilaea Media
11
  Author URI: http://www.lilaeamedia.com/
12
  Text Domain: chld_thm_cfg
165
  $this->parnt = '';
166
  $this->ignoreparnt = 0;
167
  $this->qpriority = 10;
168
+ $this->version = '2.1.1';
169
 
170
  // do not set enqueue, not being set is used to flag old versions
171
 
includes/class-ctc-packer.php CHANGED
@@ -282,7 +282,7 @@ class ChildThemeConfiguratorPacker {
282
 
283
  private function unpackArray( $size ) {
284
 
285
- $array = [];
286
  for ( $i = $size; $i; --$i ) {
287
  $array[] = $this->unpack();
288
  }
@@ -292,7 +292,7 @@ class ChildThemeConfiguratorPacker {
292
 
293
  private function unpackMap( $size ) {
294
 
295
- $map = [];
296
  for ( $i = $size; $i; --$i ) {
297
  $map[ $this->unpack() ] = $this->unpack();
298
  }
282
 
283
  private function unpackArray( $size ) {
284
 
285
+ $array = array();
286
  for ( $i = $size; $i; --$i ) {
287
  $array[] = $this->unpack();
288
  }
292
 
293
  private function unpackMap( $size ) {
294
 
295
+ $map = array();
296
  for ( $i = $size; $i; --$i ) {
297
  $map[ $this->unpack() ] = $this->unpack();
298
  }
includes/class-ctc-ui.php CHANGED
@@ -5,7 +5,7 @@ if ( !defined( 'ABSPATH' ) ) exit;
5
  Class: ChildThemeConfiguratorUI
6
  Plugin URI: http://www.childthemeconfigurator.com/
7
  Description: Handles the plugin User Interface
8
- Version: 2.1.0
9
  Author: Lilaea Media
10
  Author URI: http://www.lilaeamedia.com/
11
  Text Domain: chld_thm_cfg
5
  Class: ChildThemeConfiguratorUI
6
  Plugin URI: http://www.childthemeconfigurator.com/
7
  Description: Handles the plugin User Interface
8
+ Version: 2.1.1
9
  Author: Lilaea Media
10
  Author URI: http://www.lilaeamedia.com/
11
  Text Domain: chld_thm_cfg
includes/class-ctc.php CHANGED
@@ -169,7 +169,7 @@ if ( !defined( 'ABSPATH' ) ) exit;
169
  define( 'LILAEAMEDIA_URL', "http://www.lilaeamedia.com" );
170
  defined( 'CHLD_THM_CFG_DOCS_URL' ) or
171
  define( 'CHLD_THM_CFG_DOCS_URL', "http://www.childthemeconfigurator.com" );
172
- define( 'CHLD_THM_CFG_VERSION', '2.1.0' );
173
  define( 'CHLD_THM_CFG_PREV_VERSION', '1.7.9.1' );
174
  define( 'CHLD_THM_CFG_MIN_WP_VERSION', '3.7' );
175
  define( 'CHLD_THM_CFG_PRO_MIN_VERSION', '2.2.0' );
169
  define( 'LILAEAMEDIA_URL', "http://www.lilaeamedia.com" );
170
  defined( 'CHLD_THM_CFG_DOCS_URL' ) or
171
  define( 'CHLD_THM_CFG_DOCS_URL', "http://www.childthemeconfigurator.com" );
172
+ define( 'CHLD_THM_CFG_VERSION', '2.1.1' );
173
  define( 'CHLD_THM_CFG_PREV_VERSION', '1.7.9.1' );
174
  define( 'CHLD_THM_CFG_MIN_WP_VERSION', '3.7' );
175
  define( 'CHLD_THM_CFG_PRO_MIN_VERSION', '2.2.0' );
js/chldthmcfg.js CHANGED
@@ -2,7 +2,7 @@
2
  * Script: chldthmcfg.js
3
  * Plugin URI: http://www.childthemeconfigurator.com/
4
  * Description: Handles jQuery, AJAX and other UI
5
- * Version: 2.1.0
6
  * Author: Lilaea Media
7
  * Author URI: http://www.lilaeamedia.com/
8
  * License: GPLv2
2
  * Script: chldthmcfg.js
3
  * Plugin URI: http://www.childthemeconfigurator.com/
4
  * Description: Handles jQuery, AJAX and other UI
5
+ * Version: 2.1.1
6
  * Author: Lilaea Media
7
  * Author URI: http://www.lilaeamedia.com/
8
  * License: GPLv2
readme.txt CHANGED
@@ -4,7 +4,7 @@ Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_i
4
  Tags: child, theme, child theme, child themes, custom styles, customize styles, customize theme, css, responsive, css editor, child theme editor, child theme generator, child theme creator, style, stylesheet, customizer, childtheme, childthemes
5
  Requires at least: 4.0
6
  Tested up to: 4.6
7
- Stable tag: 2.1.0
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
@@ -287,13 +287,16 @@ https://www.youtube.com/watch?v=iBiiAgsK4G4
287
  7. Files tab
288
 
289
  == Changelog ==
 
 
 
290
  = 2.1.0 =
291
  * Loading dictionaries on demand
292
  * Reversed key/value dictionary structure for huge memory improvement
293
  * Added packer class to flatten multidim arrays for huge memory improvement
294
  * Reduced key name lengths throughout
295
  * Improved data validation on inputs
296
- * Minimum Pro version
297
  * Move html output to separate view includes
298
  * Move theme mod routines to own functions
299
 
4
  Tags: child, theme, child theme, child themes, custom styles, customize styles, customize theme, css, responsive, css editor, child theme editor, child theme generator, child theme creator, style, stylesheet, customizer, childtheme, childthemes
5
  Requires at least: 4.0
6
  Tested up to: 4.6
7
+ Stable tag: 2.1.1
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
287
  7. Files tab
288
 
289
  == Changelog ==
290
+ = 2.1.1 =
291
+ * change packer class to use standard < 5.4 array syntax
292
+
293
  = 2.1.0 =
294
  * Loading dictionaries on demand
295
  * Reversed key/value dictionary structure for huge memory improvement
296
  * Added packer class to flatten multidim arrays for huge memory improvement
297
  * Reduced key name lengths throughout
298
  * Improved data validation on inputs
299
+ * Require minimum Pro version ( Pro users only )
300
  * Move html output to separate view includes
301
  * Move theme mod routines to own functions
302