Plugin Directory

Changeset 990329


Ignore:
Timestamp:
09/15/2014 04:32:30 PM (11 years ago)
Author:
JohnPBloch
Message:

Release 1.0.4

Location:
child-themify
Files:
12 added
6 edited

Legend:

Unmodified
Added
Removed
  • child-themify/trunk/assets/js/legacy.js

    r893680 r990329  
    1 /*! Child Themify - v1.0.3
     1/*! Child Themify - v1.0.4
    22* Copyright (c) 2014 John P. Bloch */
    33(function (window, l10n) {
  • child-themify/trunk/assets/js/legacy.min.js

    r893680 r990329  
    1 /*! Child Themify - v1.0.3
     1/*! Child Themify - v1.0.4
    22* Copyright (c) 2014 John P. Bloch */
    33!function(a,b){if(!("string"!=typeof b.link||b.link.length<1)){var c,d,e,f,g=a.document,h=g.getElementById("customize-current-theme-link");if(h){h=h.parentNode;for(c in h.childNodes)if(h.childNodes.hasOwnProperty(c)&&void 0!==h.childNodes[c].nodeName&&"UL"===h.childNodes[c].nodeName.toUpperCase()){d=h.childNodes[c];break}d&&(f=g.createElement("a"),f.appendChild(g.createTextNode(b.createAChildTheme)),f.href=b.link,e=g.createElement("li"),e.appendChild(f),d.appendChild(e))}}}(window,window.childThemify);
  • child-themify/trunk/child-themify.php

    r893680 r990329  
    33 * Plugin Name: Child Themify
    44 * Description: Create child themes at the click of a button.
    5  * Version: 1.0.3
     5 * Version: 1.0.4
    66 * Plugin URI: https://github.com/johnpbloch/child-themify
    77 * Author: John P. Bloch
     
    1111define( 'CTF_PATH', WP_PLUGIN_DIR . '/' . basename( dirname( __FILE__ ) ) . '/' . basename( __FILE__ ) );
    1212define( 'CTF_URL', WP_PLUGIN_URL . '/' . basename( dirname( __FILE__ ) ) . '/' . basename( __FILE__ ) );
    13 define( 'CTF_VERSION', '1.0.3' );
     13define( 'CTF_VERSION', '1.0.4' );
    1414
    1515
  • child-themify/trunk/includes/plugin.php

    r893680 r990329  
    216216        add_filter( 'theme_action_links', array( $this, 'addActionLink' ), 10, 2 );
    217217        add_action( 'load-themes.php', array( $this, 'loadThemesPage' ) );
    218         if ( version_compare( $GLOBALS['wp_version'], '3.9.9', '<' ) ) {
     218        if ( version_compare( $GLOBALS['wp_version'], '4.1.9', '<' ) ) {
    219219            add_action( 'admin_footer-themes.php', array( $this, 'override_tmpl_theme_single' ) );
    220220        }
  • child-themify/trunk/languages/child-themify.pot

    r893680 r990329  
    55"Project-Id-Version: Child Themify 1.0.3\n"
    66"Report-Msgid-Bugs-To: http://wordpress.org/support/plugin/child-themify\n"
    7 "POT-Creation-Date: 2014-04-15 15:23:02+00:00\n"
     7"POT-Creation-Date: 2014-04-15 15:20:40+00:00\n"
    88"MIME-Version: 1.0\n"
    99"Content-Type: text/plain; charset=UTF-8\n"
  • child-themify/trunk/readme.txt

    r893680 r990329  
    33Tags: themes, child, theme
    44Requires at least: 3.4.2
    5 Tested up to: 3.9
    6 Stable tag: 1.0.3
     5Tested up to: 4.0.9
     6Stable tag: 1.0.4
    77License: GPL-2.0+
    88License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    3333== Changelog ==
    3434
     35= 1.0.4 =
     36* Released: 2014-09-15
     37* Added support for WordPress 4.0
     38
    3539= 1.0.3 =
    3640* Released: 2014-04-15
     
    5256== Upgrade Notice ==
    5357
    54 This version cleans up 3.8+ compatibility and ensures 3.9 compatibility
     58This version fixes 4.0 compatibility
    5559
Note: See TracChangeset for help on using the changeset viewer.