Plugin Directory

Changeset 1264984


Ignore:
Timestamp:
10/13/2015 04:04:04 PM (10 years ago)
Author:
JohnPBloch
Message:

Release 1.1.2

Location:
child-themify
Files:
14 added
6 edited

Legend:

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

    r1067067 r1264984  
    1 /*! Child Themify - v1.1.1
     1/*! Child Themify - v1.1.2
    22* Copyright (c) 2015 John P. Bloch */
    33(function (window, l10n) {
  • child-themify/trunk/assets/js/legacy.min.js

    r1067067 r1264984  
    1 /*! Child Themify - v1.1.1
     1/*! Child Themify - v1.1.2
    22* Copyright (c) 2015 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

    r1067067 r1264984  
    33 * Plugin Name: Child Themify
    44 * Description: Create child themes at the click of a button.
    5  * Version: 1.1.1
     5 * Version: 1.1.2
    66 * Plugin URI: https://github.com/johnpbloch/child-themify
    77 * Author: John P. Bloch
    88 * License: GPL-2.0+
     9 * Text Domain: child-themify
     10 * Domain Path: /languages
    911 */
    1012
    1113define( 'CTF_PATH', WP_PLUGIN_DIR . '/' . basename( dirname( __FILE__ ) ) . '/' . basename( __FILE__ ) );
    1214define( 'CTF_URL', WP_PLUGIN_URL . '/' . basename( dirname( __FILE__ ) ) . '/' . basename( __FILE__ ) );
    13 define( 'CTF_VERSION', '1.1.1' );
     15define( 'CTF_VERSION', '1.1.2' );
    1416
    1517
  • child-themify/trunk/includes/plugin.php

    r1050389 r1264984  
    224224
    225225    public function init() {
    226         load_plugin_textdomain( 'child-themify', false, basename( dirname( __FILE__ ) ) . '/languages' );
     226        load_plugin_textdomain( 'child-themify', false, basename( dirname( dirname( __FILE__ ) ) ) . '/languages' );
    227227        add_filter( 'theme_action_links', array( $this, 'addActionLink' ), 10, 2 );
    228228        add_action( 'load-themes.php', array( $this, 'loadThemesPage' ) );
  • child-themify/trunk/languages/child-themify.pot

    r1067067 r1264984  
    33msgid ""
    44msgstr ""
    5 "Project-Id-Version: Child Themify 1.1.1\n"
     5"Project-Id-Version: Child Themify 1.1.2\n"
    66"Report-Msgid-Bugs-To: http://wordpress.org/support/plugin/child-themify\n"
    7 "POT-Creation-Date: 2015-01-13 13:36:37+00:00\n"
     7"POT-Creation-Date: 2015-10-13 15:49:47+00:00\n"
    88"MIME-Version: 1.0\n"
    99"Content-Type: text/plain; charset=UTF-8\n"
  • child-themify/trunk/readme.txt

    r1245140 r1264984  
    44Requires at least: 3.4.2
    55Tested up to: 4.3.9
    6 Stable tag: 1.1.1
     6Stable tag: 1.1.2
    77License: GPL-2.0+
    88License URI: http://www.gnu.org/licenses/gpl-2.0.html
     9Text Domain: child-themify
     10Domain Path: /languages
    911
    1012Create child themes at the click of a button.
     
    3436
    3537== Changelog ==
     38
     39= 1.1.2 =
     40* Released: 2015-10-13
     41* Fixed basename location when loading the textdomain
     42* Added textdomain and domainpath headers to plugin file
    3643
    3744= 1.1.1 =
     
    6774== Upgrade Notice ==
    6875
    69 Added French translation
     76I18n improvements
    7077
Note: See TracChangeset for help on using the changeset viewer.