Changeset 990329
- Timestamp:
- 09/15/2014 04:32:30 PM (11 years ago)
- Location:
- child-themify
- Files:
-
- 12 added
- 6 edited
-
tags/1.0.4 (added)
-
tags/1.0.4/assets (added)
-
tags/1.0.4/assets/js (added)
-
tags/1.0.4/assets/js/legacy.js (added)
-
tags/1.0.4/assets/js/legacy.min.js (added)
-
tags/1.0.4/child-themify.php (added)
-
tags/1.0.4/includes (added)
-
tags/1.0.4/includes/legacy.php (added)
-
tags/1.0.4/includes/plugin.php (added)
-
tags/1.0.4/languages (added)
-
tags/1.0.4/languages/child-themify.pot (added)
-
tags/1.0.4/readme.txt (added)
-
trunk/assets/js/legacy.js (modified) (1 diff)
-
trunk/assets/js/legacy.min.js (modified) (1 diff)
-
trunk/child-themify.php (modified) (2 diffs)
-
trunk/includes/plugin.php (modified) (1 diff)
-
trunk/languages/child-themify.pot (modified) (1 diff)
-
trunk/readme.txt (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
child-themify/trunk/assets/js/legacy.js
r893680 r990329 1 /*! Child Themify - v1.0. 31 /*! Child Themify - v1.0.4 2 2 * Copyright (c) 2014 John P. Bloch */ 3 3 (function (window, l10n) { -
child-themify/trunk/assets/js/legacy.min.js
r893680 r990329 1 /*! Child Themify - v1.0. 31 /*! Child Themify - v1.0.4 2 2 * Copyright (c) 2014 John P. Bloch */ 3 3 !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 3 3 * Plugin Name: Child Themify 4 4 * Description: Create child themes at the click of a button. 5 * Version: 1.0. 35 * Version: 1.0.4 6 6 * Plugin URI: https://github.com/johnpbloch/child-themify 7 7 * Author: John P. Bloch … … 11 11 define( 'CTF_PATH', WP_PLUGIN_DIR . '/' . basename( dirname( __FILE__ ) ) . '/' . basename( __FILE__ ) ); 12 12 define( 'CTF_URL', WP_PLUGIN_URL . '/' . basename( dirname( __FILE__ ) ) . '/' . basename( __FILE__ ) ); 13 define( 'CTF_VERSION', '1.0. 3' );13 define( 'CTF_VERSION', '1.0.4' ); 14 14 15 15 -
child-themify/trunk/includes/plugin.php
r893680 r990329 216 216 add_filter( 'theme_action_links', array( $this, 'addActionLink' ), 10, 2 ); 217 217 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', '<' ) ) { 219 219 add_action( 'admin_footer-themes.php', array( $this, 'override_tmpl_theme_single' ) ); 220 220 } -
child-themify/trunk/languages/child-themify.pot
r893680 r990329 5 5 "Project-Id-Version: Child Themify 1.0.3\n" 6 6 "Report-Msgid-Bugs-To: http://wordpress.org/support/plugin/child-themify\n" 7 "POT-Creation-Date: 2014-04-15 15:2 3:02+00:00\n"7 "POT-Creation-Date: 2014-04-15 15:20:40+00:00\n" 8 8 "MIME-Version: 1.0\n" 9 9 "Content-Type: text/plain; charset=UTF-8\n" -
child-themify/trunk/readme.txt
r893680 r990329 3 3 Tags: themes, child, theme 4 4 Requires at least: 3.4.2 5 Tested up to: 3.96 Stable tag: 1.0. 35 Tested up to: 4.0.9 6 Stable tag: 1.0.4 7 7 License: GPL-2.0+ 8 8 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 33 33 == Changelog == 34 34 35 = 1.0.4 = 36 * Released: 2014-09-15 37 * Added support for WordPress 4.0 38 35 39 = 1.0.3 = 36 40 * Released: 2014-04-15 … … 52 56 == Upgrade Notice == 53 57 54 This version cleans up 3.8+ compatibility and ensures 3.9compatibility58 This version fixes 4.0 compatibility 55 59
Note: See TracChangeset
for help on using the changeset viewer.