Changeset 3021460
- Timestamp:
- 01/14/2024 12:54:53 AM (2 years ago)
- Location:
- child-theme-configurator
- Files:
-
- 5 edited
- 18 copied
-
tags/2.6.4 (copied) (copied from child-theme-configurator/trunk)
-
tags/2.6.4/child-theme-configurator.php (copied) (copied from child-theme-configurator/trunk/child-theme-configurator.php) (2 diffs)
-
tags/2.6.4/css/chldthmcfg.css (copied) (copied from child-theme-configurator/trunk/css/chldthmcfg.css)
-
tags/2.6.4/includes/classes/Admin.php (copied) (copied from child-theme-configurator/trunk/includes/classes/Admin.php)
-
tags/2.6.4/includes/classes/Analysis.php (copied) (copied from child-theme-configurator/trunk/includes/classes/Analysis.php)
-
tags/2.6.4/includes/classes/CSS.php (copied) (copied from child-theme-configurator/trunk/includes/classes/CSS.php) (3 diffs)
-
tags/2.6.4/includes/classes/Core.php (copied) (copied from child-theme-configurator/trunk/includes/classes/Core.php) (1 diff)
-
tags/2.6.4/includes/classes/Packer.php (copied) (copied from child-theme-configurator/trunk/includes/classes/Packer.php) (2 diffs)
-
tags/2.6.4/includes/classes/Preview.php (copied) (copied from child-theme-configurator/trunk/includes/classes/Preview.php)
-
tags/2.6.4/includes/classes/UI.php (copied) (copied from child-theme-configurator/trunk/includes/classes/UI.php)
-
tags/2.6.4/includes/forms/debug-toggle.php (copied) (copied from child-theme-configurator/trunk/includes/forms/debug-toggle.php)
-
tags/2.6.4/includes/forms/notices.php (copied) (copied from child-theme-configurator/trunk/includes/forms/notices.php)
-
tags/2.6.4/includes/forms/related.php (copied) (copied from child-theme-configurator/trunk/includes/forms/related.php)
-
tags/2.6.4/includes/help/de_DE.php (copied) (copied from child-theme-configurator/trunk/includes/help/de_DE.php)
-
tags/2.6.4/includes/help/en_US.php (copied) (copied from child-theme-configurator/trunk/includes/help/en_US.php)
-
tags/2.6.4/js/chldthmcfg.js (copied) (copied from child-theme-configurator/trunk/js/chldthmcfg.js)
-
tags/2.6.4/js/chldthmcfg.min.js (copied) (copied from child-theme-configurator/trunk/js/chldthmcfg.min.js)
-
tags/2.6.4/readme.txt (copied) (copied from child-theme-configurator/trunk/readme.txt) (1 diff)
-
trunk/child-theme-configurator.php (modified) (2 diffs)
-
trunk/includes/classes/CSS.php (modified) (3 diffs)
-
trunk/includes/classes/Core.php (modified) (1 diff)
-
trunk/includes/classes/Packer.php (modified) (2 diffs)
-
trunk/readme.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
child-theme-configurator/tags/2.6.4/child-theme-configurator.php
r2973372 r3021460 7 7 Plugin URI: http://www.childthemeplugin.com 8 8 Description: When using the Customizer is not enough - Create child themes and customize styles, templates, functions and more. 9 Version: 2.6. 39 Version: 2.6.4 10 10 Author: Lilaea Media 11 11 Author URI: http://www.lilaeamedia.com … … 13 13 Domain Path: /lang 14 14 License: GPLv2 15 Copyright (C) 2014-20 18Lilaea Media15 Copyright (C) 2014-2024 Lilaea Media 16 16 */ 17 17 // define CTC constants -
child-theme-configurator/tags/2.6.4/includes/classes/CSS.php
r2973372 r3021460 7 7 Plugin URI: http://www.childthemeplugin.com/ 8 8 Description: Handles all CSS input, output, parsing, normalization and storage 9 Version: 2.6. 39 Version: 2.6.4 10 10 Author: Lilaea Media 11 11 Author URI: http://www.lilaeamedia.com/ … … 173 173 $this->qpriority = 10; 174 174 $this->mpriority = 10; 175 $this->version = '2.6. 3';175 $this->version = '2.6.4'; 176 176 177 177 // do not set enqueue, not being set is used to flag old versions … … 1115 1115 * FIXME - migrate to event parser? handle comments? 1116 1116 */ 1117 function parse_css( $template, $basequery = NULL, $parse_imports = TRUE, $relpath = '', $reset = FALSE ) {1117 function parse_css( $template, $basequery = '', $parse_imports = TRUE, $relpath = '', $reset = FALSE ) { 1118 1118 //$this->load_config( 'sel_ndx' ); 1119 1119 $this->load_config( 'val_ndx' ); -
child-theme-configurator/tags/2.6.4/includes/classes/Core.php
r2973372 r3021460 15 15 defined( 'CHLD_THM_CFG_DOCS_URL' ) or 16 16 define( 'CHLD_THM_CFG_DOCS_URL', "http://www.childthemeplugin.com" ); 17 define( 'CHLD_THM_CFG_VERSION', '2.6. 3' );17 define( 'CHLD_THM_CFG_VERSION', '2.6.4' ); 18 18 define( 'CHLD_THM_CFG_PREV_VERSION', '1.7.9.1' ); 19 19 define( 'CHLD_THM_CFG_MIN_WP_VERSION', '3.7' ); -
child-theme-configurator/tags/2.6.4/includes/classes/Packer.php
r2321201 r3021460 359 359 $n -= 14; 360 360 endif; 361 $o .= $this->enctab[ $v % 91 ] . $this->enctab[ $v / 91];361 $o .= $this->enctab[ $v % 91 ] . $this->enctab[ (int) ( $v / 91 ) ]; 362 362 endif; 363 363 endfor; … … 365 365 $o .= $this->enctab[ $b % 91 ]; 366 366 if ( $n > 7 || $b > 90 ) 367 $o .= $this->enctab[ $b / 91];367 $o .= $this->enctab[ (int) ( $b / 91 ) ]; 368 368 endif; 369 369 return $o; -
child-theme-configurator/tags/2.6.4/readme.txt
r2973372 r3021460 5 5 Requires at least: 4.0 6 6 Requires PHP: 5.6.36 7 Tested up to: 6. 38 Stable tag: 2.6. 37 Tested up to: 6.4 8 Stable tag: 2.6.4 9 9 License: GPLv2 or later 10 10 License URI: http://www.gnu.org/licenses/gpl-2.0.html -
child-theme-configurator/trunk/child-theme-configurator.php
r2973372 r3021460 7 7 Plugin URI: http://www.childthemeplugin.com 8 8 Description: When using the Customizer is not enough - Create child themes and customize styles, templates, functions and more. 9 Version: 2.6. 39 Version: 2.6.4 10 10 Author: Lilaea Media 11 11 Author URI: http://www.lilaeamedia.com … … 13 13 Domain Path: /lang 14 14 License: GPLv2 15 Copyright (C) 2014-20 18Lilaea Media15 Copyright (C) 2014-2024 Lilaea Media 16 16 */ 17 17 // define CTC constants -
child-theme-configurator/trunk/includes/classes/CSS.php
r2973372 r3021460 7 7 Plugin URI: http://www.childthemeplugin.com/ 8 8 Description: Handles all CSS input, output, parsing, normalization and storage 9 Version: 2.6. 39 Version: 2.6.4 10 10 Author: Lilaea Media 11 11 Author URI: http://www.lilaeamedia.com/ … … 173 173 $this->qpriority = 10; 174 174 $this->mpriority = 10; 175 $this->version = '2.6. 3';175 $this->version = '2.6.4'; 176 176 177 177 // do not set enqueue, not being set is used to flag old versions … … 1115 1115 * FIXME - migrate to event parser? handle comments? 1116 1116 */ 1117 function parse_css( $template, $basequery = NULL, $parse_imports = TRUE, $relpath = '', $reset = FALSE ) {1117 function parse_css( $template, $basequery = '', $parse_imports = TRUE, $relpath = '', $reset = FALSE ) { 1118 1118 //$this->load_config( 'sel_ndx' ); 1119 1119 $this->load_config( 'val_ndx' ); -
child-theme-configurator/trunk/includes/classes/Core.php
r2973372 r3021460 15 15 defined( 'CHLD_THM_CFG_DOCS_URL' ) or 16 16 define( 'CHLD_THM_CFG_DOCS_URL', "http://www.childthemeplugin.com" ); 17 define( 'CHLD_THM_CFG_VERSION', '2.6. 3' );17 define( 'CHLD_THM_CFG_VERSION', '2.6.4' ); 18 18 define( 'CHLD_THM_CFG_PREV_VERSION', '1.7.9.1' ); 19 19 define( 'CHLD_THM_CFG_MIN_WP_VERSION', '3.7' ); -
child-theme-configurator/trunk/includes/classes/Packer.php
r2321201 r3021460 359 359 $n -= 14; 360 360 endif; 361 $o .= $this->enctab[ $v % 91 ] . $this->enctab[ $v / 91];361 $o .= $this->enctab[ $v % 91 ] . $this->enctab[ (int) ( $v / 91 ) ]; 362 362 endif; 363 363 endfor; … … 365 365 $o .= $this->enctab[ $b % 91 ]; 366 366 if ( $n > 7 || $b > 90 ) 367 $o .= $this->enctab[ $b / 91];367 $o .= $this->enctab[ (int) ( $b / 91 ) ]; 368 368 endif; 369 369 return $o; -
child-theme-configurator/trunk/readme.txt
r2973372 r3021460 5 5 Requires at least: 4.0 6 6 Requires PHP: 5.6.36 7 Tested up to: 6. 38 Stable tag: 2.6. 37 Tested up to: 6.4 8 Stable tag: 2.6.4 9 9 License: GPLv2 or later 10 10 License URI: http://www.gnu.org/licenses/gpl-2.0.html
Note: See TracChangeset
for help on using the changeset viewer.