Plugin Directory

Changeset 1812024


Ignore:
Timestamp:
01/30/2018 04:03:30 PM (8 years ago)
Author:
JohnPBloch
Message:

Release 2.0.1

Location:
child-themify
Files:
12 added
3 edited

Legend:

Unmodified
Added
Removed
  • child-themify/trunk/child-themify.php

    r1741211 r1812024  
    33 * Plugin Name: Child Themify
    44 * Description: Create child themes at the click of a button
    5  * Version: 2.0.0
     5 * Version: 2.0.1
    66 * Plugin URI: https://github.com/johnpbloch/child-themify
    77 * Author: John P. Bloch
     
    1111 */
    1212
    13 define( 'CTF_PATH', __FILE__ );
    14 define( 'CTF_URL', plugin_dir_url( CTF_PATH ) );
    15 define( 'CTF_VERSION', '2.0.0' );
     13define( 'JPB_CTF_PATH', __FILE__ );
     14define( 'JPB_CTF_URL', plugin_dir_url( JPB_CTF_PATH ) );
     15define( 'JPB_CTF_VERSION', '2.0.1' );
    1616
    1717function ctf_plugins_loaded() {
    18     $inc = plugin_dir_path( CTF_PATH ) . '/includes/';
     18    $inc = plugin_dir_path( JPB_CTF_PATH ) . '/includes/';
    1919    require_once $inc . 'util.php';
    2020    require_once $inc . 'api.php';
  • child-themify/trunk/includes/util.php

    r1727838 r1812024  
    1212    return esc_url_raw( sprintf(
    1313        '%sassets/%s/%s',
    14         CTF_URL,
     14        JPB_CTF_URL,
    1515        ( 'js' === $type ) ? 'js' : 'css',
    1616        $file
     
    4848 */
    4949function child_themify_asset_version() {
    50     return '{{VERSION}}' === CTF_VERSION ? time() : CTF_VERSION;
     50    return '{{VERSION}}' === JPB_CTF_VERSION ? time() : JPB_CTF_VERSION;
    5151}
    5252
  • child-themify/trunk/readme.txt

    r1741211 r1812024  
    44Requires at least: 4.7.0
    55Tested up to: 4.8.9
    6 Stable tag: 2.0.0
     6Stable tag: 2.0.1
    77License: GPL-2.0+
    88License URI: http://www.gnu.org/licenses/gpl-2.0.html
Note: See TracChangeset for help on using the changeset viewer.