Version Description
- Removed curly brace syntax from substring argument in Packer class.
Download this release
Release Info
Developer | lilaeamedia |
Plugin | Child Theme Configurator |
Version | 2.5.5 |
Comparing to | |
See all releases |
Code changes from version 2.5.4 to 2.5.5
- child-theme-configurator.php +1 -1
- includes/classes/CSS.php +2 -2
- includes/classes/Core.php +1 -1
- includes/classes/Packer.php +2 -2
- js/chldthmcfg.js +1 -1
- readme.txt +3 -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.5.
|
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.5.5
|
10 |
Author: Lilaea Media
|
11 |
Author URI: http://www.lilaeamedia.com
|
12 |
Text Domain: child-theme-configurator
|
includes/classes/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.5.
|
10 |
Author: Lilaea Media
|
11 |
Author URI: http://www.lilaeamedia.com/
|
12 |
Text Domain: chld_thm_cfg
|
@@ -172,7 +172,7 @@ class ChildThemeConfiguratorCSS {
|
|
172 |
$this->ignoreparnt = 0;
|
173 |
$this->qpriority = 10;
|
174 |
$this->mpriority = 10;
|
175 |
-
$this->version = '2.5.
|
176 |
|
177 |
// do not set enqueue, not being set is used to flag old versions
|
178 |
|
6 |
Class: ChildThemeConfiguratorCSS
|
7 |
Plugin URI: http://www.childthemeconfigurator.com/
|
8 |
Description: Handles all CSS input, output, parsing, normalization and storage
|
9 |
+
Version: 2.5.5
|
10 |
Author: Lilaea Media
|
11 |
Author URI: http://www.lilaeamedia.com/
|
12 |
Text Domain: chld_thm_cfg
|
172 |
$this->ignoreparnt = 0;
|
173 |
$this->qpriority = 10;
|
174 |
$this->mpriority = 10;
|
175 |
+
$this->version = '2.5.5';
|
176 |
|
177 |
// do not set enqueue, not being set is used to flag old versions
|
178 |
|
includes/classes/Core.php
CHANGED
@@ -14,7 +14,7 @@ if ( !defined( 'ABSPATH' ) ) exit;
|
|
14 |
define( 'LILAEAMEDIA_URL', "http://www.lilaeamedia.com" );
|
15 |
defined( 'CHLD_THM_CFG_DOCS_URL' ) or
|
16 |
define( 'CHLD_THM_CFG_DOCS_URL', "http://www.childthemeconfigurator.com" );
|
17 |
-
define( 'CHLD_THM_CFG_VERSION', '2.5.
|
18 |
define( 'CHLD_THM_CFG_PREV_VERSION', '1.7.9.1' );
|
19 |
define( 'CHLD_THM_CFG_MIN_WP_VERSION', '3.7' );
|
20 |
define( 'CHLD_THM_CFG_PRO_MIN_VERSION', '2.2.0' );
|
14 |
define( 'LILAEAMEDIA_URL', "http://www.lilaeamedia.com" );
|
15 |
defined( 'CHLD_THM_CFG_DOCS_URL' ) or
|
16 |
define( 'CHLD_THM_CFG_DOCS_URL', "http://www.childthemeconfigurator.com" );
|
17 |
+
define( 'CHLD_THM_CFG_VERSION', '2.5.5' );
|
18 |
define( 'CHLD_THM_CFG_PREV_VERSION', '1.7.9.1' );
|
19 |
define( 'CHLD_THM_CFG_MIN_WP_VERSION', '3.7' );
|
20 |
define( 'CHLD_THM_CFG_PRO_MIN_VERSION', '2.2.0' );
|
includes/classes/Packer.php
CHANGED
@@ -317,7 +317,7 @@ class ChildThemeConfiguratorPacker {
|
|
317 |
$o = '';
|
318 |
$b = 0;
|
319 |
for ( $i = 0; $i < $l; ++$i ):
|
320 |
-
$c = $this->dectab[ $d
|
321 |
if ( !isset( $c ) )
|
322 |
continue;
|
323 |
if ( $v < 0 ):
|
@@ -346,7 +346,7 @@ class ChildThemeConfiguratorPacker {
|
|
346 |
$o = '';
|
347 |
$b = 0;
|
348 |
for ( $i = 0; $i < $l; ++$i ):
|
349 |
-
$b |= ord( $d
|
350 |
$n += 8;
|
351 |
if ( $n > 13 ):
|
352 |
$v = $b & 8191;
|
317 |
$o = '';
|
318 |
$b = 0;
|
319 |
for ( $i = 0; $i < $l; ++$i ):
|
320 |
+
$c = $this->dectab[ substr( $d, $i, 1 ) ];
|
321 |
if ( !isset( $c ) )
|
322 |
continue;
|
323 |
if ( $v < 0 ):
|
346 |
$o = '';
|
347 |
$b = 0;
|
348 |
for ( $i = 0; $i < $l; ++$i ):
|
349 |
+
$b |= ord( substr( $d, $i, 1 ) ) << $n;
|
350 |
$n += 8;
|
351 |
if ( $n > 13 ):
|
352 |
$v = $b & 8191;
|
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.5.
|
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.5.5
|
6 |
* Author: Lilaea Media
|
7 |
* Author URI: http://www.lilaeamedia.com/
|
8 |
* License: GPLv2
|
readme.txt
CHANGED
@@ -5,7 +5,7 @@ Tags: child, theme, child theme, child themes, custom styles, customize styles,
|
|
5 |
Requires at least: 4.0
|
6 |
Requires PHP: 5.6.36
|
7 |
Tested up to: 5.4
|
8 |
-
Stable tag: 2.5.
|
9 |
License: GPLv2 or later
|
10 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
11 |
|
@@ -299,6 +299,8 @@ https://www.youtube.com/watch?v=iBiiAgsK4G4
|
|
299 |
7. Files tab
|
300 |
|
301 |
== Changelog ==
|
|
|
|
|
302 |
= 2.5.4 =
|
303 |
* Fixed case where registered styles not showing in queue during analysis.
|
304 |
= 2.5.3 =
|
5 |
Requires at least: 4.0
|
6 |
Requires PHP: 5.6.36
|
7 |
Tested up to: 5.4
|
8 |
+
Stable tag: 2.5.5
|
9 |
License: GPLv2 or later
|
10 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
11 |
|
299 |
7. Files tab
|
300 |
|
301 |
== Changelog ==
|
302 |
+
= 2.5.5 =
|
303 |
+
* Removed curly brace syntax from substring argument in Packer class.
|
304 |
= 2.5.4 =
|
305 |
* Fixed case where registered styles not showing in queue during analysis.
|
306 |
= 2.5.3 =
|