Child Theme Configurator - Version 1.1.7

Version Description

  • Added tutorial video to help tabs.
Download this release

Release Info

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

Code changes from version 1.1.6 to 1.1.7

child-theme-configurator.php CHANGED
@@ -6,13 +6,13 @@ if ( !defined('ABSPATH')) exit;
6
  Plugin Name: Child Theme Configurator
7
  Plugin URI: http://www.lilaeamedia.com/plugins/child-theme-configurator/
8
  Description: Create a Child Theme from any installed Theme. Each CSS selector, rule and value can then be searched, previewed and modified.
9
- Version: 1.1.6
10
  Author: Lilaea Media
11
  Author URI: http://www.lilaeamedia.com/
12
  Text Domain: chld_thm_cfg
13
  Domain Path: /lang
14
  License: GPLv2
15
- Copyright (C) 2013 Lilaea Media
16
  */
17
 
18
  defined('LF') or define('LF', "\n");
6
  Plugin Name: Child Theme Configurator
7
  Plugin URI: http://www.lilaeamedia.com/plugins/child-theme-configurator/
8
  Description: Create a Child Theme from any installed Theme. Each CSS selector, rule and value can then be searched, previewed and modified.
9
+ Version: 1.1.7
10
  Author: Lilaea Media
11
  Author URI: http://www.lilaeamedia.com/
12
  Text Domain: chld_thm_cfg
13
  Domain Path: /lang
14
  License: GPLv2
15
+ Copyright (C) 2014 Lilaea Media
16
  */
17
 
18
  defined('LF') or define('LF', "\n");
includes/class-ctc-css.php CHANGED
@@ -6,13 +6,13 @@ if ( !defined('ABSPATH')) exit;
6
  Class: Child_Theme_Configurator_CSS
7
  Plugin URI: http://www.lilaeamedia.com/plugins/child-theme-configurator/
8
  Description: Handles all CSS output, parsing, normalization
9
- Version: 1.1.6
10
  Author: Lilaea Media
11
  Author URI: http://www.lilaeamedia.com/
12
  Text Domain: chld_thm_cfg
13
  Domain Path: /lang
14
  License: GPLv2
15
- Copyright (C) 2013 Lilaea Media
16
  */
17
  class Child_Theme_Configurator_CSS {
18
  var $version;
@@ -42,7 +42,7 @@ class Child_Theme_Configurator_CSS {
42
 
43
  function __construct() {
44
  // scalars
45
- $this->version = '1.1.6';
46
  $this->querykey = 0;
47
  $this->selkey = 0;
48
  $this->qskey = 0;
6
  Class: Child_Theme_Configurator_CSS
7
  Plugin URI: http://www.lilaeamedia.com/plugins/child-theme-configurator/
8
  Description: Handles all CSS output, parsing, normalization
9
+ Version: 1.1.7
10
  Author: Lilaea Media
11
  Author URI: http://www.lilaeamedia.com/
12
  Text Domain: chld_thm_cfg
13
  Domain Path: /lang
14
  License: GPLv2
15
+ Copyright (C) 2014 Lilaea Media
16
  */
17
  class Child_Theme_Configurator_CSS {
18
  var $version;
42
 
43
  function __construct() {
44
  // scalars
45
+ $this->version = '1.1.7';
46
  $this->querykey = 0;
47
  $this->selkey = 0;
48
  $this->qskey = 0;
includes/class-ctc-ui.php CHANGED
@@ -5,13 +5,13 @@ if ( !defined('ABSPATH')) exit;
5
  Class: Child_Theme_Configurator_UI
6
  Plugin URI: http://www.lilaeamedia.com/plugins/child-theme-configurator/
7
  Description: Handles the plugin User Interface
8
- Version: 1.1.6
9
  Author: Lilaea Media
10
  Author URI: http://www.lilaeamedia.com/
11
  Text Domain: chld_thm_cfg
12
  Domain Path: /lang
13
  License: GPLv2
14
- Copyright (C) 2013 Lilaea Media
15
  */
16
  class Child_Theme_Configurator_UI {
17
  var $swatch_text;
@@ -343,6 +343,14 @@ class Child_Theme_Configurator_UI {
343
  if ( $screen->id != $chld_thm_cfg->hook )
344
  return;
345
  // Add help tabs
 
 
 
 
 
 
 
 
346
  $screen->add_help_tab( array(
347
  'id' => 'ctc_getting_started',
348
  'title' => __( 'Start Here', 'chld_thm_cfg' ),
5
  Class: Child_Theme_Configurator_UI
6
  Plugin URI: http://www.lilaeamedia.com/plugins/child-theme-configurator/
7
  Description: Handles the plugin User Interface
8
+ Version: 1.1.7
9
  Author: Lilaea Media
10
  Author URI: http://www.lilaeamedia.com/
11
  Text Domain: chld_thm_cfg
12
  Domain Path: /lang
13
  License: GPLv2
14
+ Copyright (C) 2014 Lilaea Media
15
  */
16
  class Child_Theme_Configurator_UI {
17
  var $swatch_text;
343
  if ( $screen->id != $chld_thm_cfg->hook )
344
  return;
345
  // Add help tabs
346
+
347
+ $screen->add_help_tab( array(
348
+ 'id' => 'ctc_tutorial',
349
+ 'title' => __( 'Tutorial Video', 'chld_thm_cfg' ),
350
+ 'content' => __('<iframe width="480" height="270" src="//www.youtube.com/embed/xL2HkWQxgOA?rel=0&modestbranding=1" frameborder="0" allowfullscreen></iframe>', 'chld_thm_cfg'),
351
+ ) );
352
+
353
+
354
  $screen->add_help_tab( array(
355
  'id' => 'ctc_getting_started',
356
  'title' => __( 'Start Here', 'chld_thm_cfg' ),
includes/class-ctc.php CHANGED
@@ -6,19 +6,19 @@ if ( !defined('ABSPATH')) exit;
6
  Class: Child_Theme_Configurator
7
  Plugin URI: http://www.lilaeamedia.com/plugins/child-theme-configurator/
8
  Description: Main Controller Class
9
- Version: 1.1.6
10
  Author: Lilaea Media
11
  Author URI: http://www.lilaeamedia.com/
12
  Text Domain: chld_thm_cfg
13
  Domain Path: /lang
14
  License: GPLv2
15
- Copyright (C) 2013 Lilaea Media
16
  */
17
  require_once('class-ctc-ui.php');
18
  require_once('class-ctc-css.php');
19
  class Child_Theme_Configurator {
20
 
21
- var $version = '1.1.6';
22
  var $css;
23
  var $optionsName;
24
  var $menuName;
6
  Class: Child_Theme_Configurator
7
  Plugin URI: http://www.lilaeamedia.com/plugins/child-theme-configurator/
8
  Description: Main Controller Class
9
+ Version: 1.1.7
10
  Author: Lilaea Media
11
  Author URI: http://www.lilaeamedia.com/
12
  Text Domain: chld_thm_cfg
13
  Domain Path: /lang
14
  License: GPLv2
15
+ Copyright (C) 2014 Lilaea Media
16
  */
17
  require_once('class-ctc-ui.php');
18
  require_once('class-ctc-css.php');
19
  class Child_Theme_Configurator {
20
 
21
+ var $version = '1.1.7';
22
  var $css;
23
  var $optionsName;
24
  var $menuName;
js/chld-thm-cfg.js CHANGED
@@ -2,7 +2,7 @@
2
  * Script: chld-thm-cfg.js
3
  * Plugin URI: http://www.lilaeamedia.com/plugins/child-theme-configurator/
4
  * Description: Handles jQuery, AJAX and other UI
5
- * Version: 1.1.6
6
  * Author: Lilaea Media
7
  * Author URI: http://www.lilaeamedia.com/
8
  * License: GPLv2
2
  * Script: chld-thm-cfg.js
3
  * Plugin URI: http://www.lilaeamedia.com/plugins/child-theme-configurator/
4
  * Description: Handles jQuery, AJAX and other UI
5
+ * Version: 1.1.7
6
  * Author: Lilaea Media
7
  * Author URI: http://www.lilaeamedia.com/
8
  * License: GPLv2
js/chld-thm-cfg.min.js CHANGED
@@ -2,7 +2,7 @@
2
  * Script: chld-thm-cfg.js
3
  * Plugin URI: http://www.lilaeamedia.com/plugins/child-theme-configurator/
4
  * Description: Handles jQuery, AJAX and other UI
5
- * Version: 1.1.6
6
  * Author: Lilaea Media
7
  * Author URI: http://www.lilaeamedia.com/
8
  * License: GPLv2
2
  * Script: chld-thm-cfg.js
3
  * Plugin URI: http://www.lilaeamedia.com/plugins/child-theme-configurator/
4
  * Description: Handles jQuery, AJAX and other UI
5
+ * Version: 1.1.7
6
  * Author: Lilaea Media
7
  * Author URI: http://www.lilaeamedia.com/
8
  * License: GPLv2
readme.txt CHANGED
@@ -2,9 +2,9 @@
2
  Contributors: lilaeamedia
3
  Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=8QE5YJ8WE96AJ
4
  Tags: child theme, custom theme, CSS, responsive design, CSS editor, theme generator
5
- Requires at least: 3.5
6
  Tested up to: 3.8
7
- Stable tag: 1.1.6
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
@@ -41,6 +41,10 @@ Why create Child Themes using the Child Theme Configurator?
41
 
42
  == Frequently Asked Questions ==
43
 
 
 
 
 
44
  = Where is it in the Admin? =
45
 
46
  The Child Theme Configurator can be found under the "Tools" menu in the WordPress Admin. Click "Child Themes" to get started.
@@ -113,6 +117,9 @@ You can also create a secondary stylesheet that contains @font-face rules and im
113
 
114
  == Changelog ==
115
 
 
 
 
116
  = 1.1.6 =
117
  * Added call to reset_updates() before update_option() to prevent serialization errors.
118
 
@@ -176,7 +183,7 @@ The first step is to create a child theme and import your parent theme styles in
176
 
177
  1. Select an existing parent theme from the menu.
178
  2. Select "New" or "Existing" child theme.
179
- * If creating a new theme, enter a "slug" (lower case, no spaces). This is used to name the theme directory and identify the theme to WordPress.</li>
180
  * If using an existing theme, select a child theme from the menu.
181
  3. Enter a Name for the child theme.
182
  4. Enter an author for the child theme.
@@ -236,4 +243,6 @@ Click the Preview CSS tab to see your new masterpiece as CSS code. To preview th
236
 
237
  == Documentation ==
238
 
239
- Go to http://www.lilaeamedia.com/plugins/child-theme-configurator
 
 
2
  Contributors: lilaeamedia
3
  Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=8QE5YJ8WE96AJ
4
  Tags: child theme, custom theme, CSS, responsive design, CSS editor, theme generator
5
+ Requires at least: 3.7
6
  Tested up to: 3.8
7
+ Stable tag: 1.1.7
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
41
 
42
  == Frequently Asked Questions ==
43
 
44
+ = Is there a tutorial? =
45
+
46
+ http://www.youtube.com/watch?v=xL2HkWQxgOA
47
+
48
  = Where is it in the Admin? =
49
 
50
  The Child Theme Configurator can be found under the "Tools" menu in the WordPress Admin. Click "Child Themes" to get started.
117
 
118
  == Changelog ==
119
 
120
+ = 1.1.7 =
121
+ * Added tutorial video to help tabs.
122
+
123
  = 1.1.6 =
124
  * Added call to reset_updates() before update_option() to prevent serialization errors.
125
 
183
 
184
  1. Select an existing parent theme from the menu.
185
  2. Select "New" or "Existing" child theme.
186
+ * If creating a new theme, enter a "slug" (lower case, no spaces). This is used to name the theme directory and identify the theme to WordPress.
187
  * If using an existing theme, select a child theme from the menu.
188
  3. Enter a Name for the child theme.
189
  4. Enter an author for the child theme.
243
 
244
  == Documentation ==
245
 
246
+ Go to http://www.lilaeamedia.com/plugins/child-theme-configurator
247
+
248
+ Copyright: (C) 2014 Lilaea Media