Changeset 1264984
- Timestamp:
- 10/13/2015 04:04:04 PM (10 years ago)
- Location:
- child-themify
- Files:
-
- 14 added
- 6 edited
-
tags/1.1.2 (added)
-
tags/1.1.2/assets (added)
-
tags/1.1.2/assets/js (added)
-
tags/1.1.2/assets/js/legacy.js (added)
-
tags/1.1.2/assets/js/legacy.min.js (added)
-
tags/1.1.2/child-themify.php (added)
-
tags/1.1.2/includes (added)
-
tags/1.1.2/includes/legacy.php (added)
-
tags/1.1.2/includes/plugin.php (added)
-
tags/1.1.2/languages (added)
-
tags/1.1.2/languages/child-themify-fr_FR.mo (added)
-
tags/1.1.2/languages/child-themify-fr_FR.po (added)
-
tags/1.1.2/languages/child-themify.pot (added)
-
tags/1.1.2/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) (1 diff)
-
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
r1067067 r1264984 1 /*! Child Themify - v1.1. 11 /*! Child Themify - v1.1.2 2 2 * Copyright (c) 2015 John P. Bloch */ 3 3 (function (window, l10n) { -
child-themify/trunk/assets/js/legacy.min.js
r1067067 r1264984 1 /*! Child Themify - v1.1. 11 /*! Child Themify - v1.1.2 2 2 * Copyright (c) 2015 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
r1067067 r1264984 3 3 * Plugin Name: Child Themify 4 4 * Description: Create child themes at the click of a button. 5 * Version: 1.1. 15 * Version: 1.1.2 6 6 * Plugin URI: https://github.com/johnpbloch/child-themify 7 7 * Author: John P. Bloch 8 8 * License: GPL-2.0+ 9 * Text Domain: child-themify 10 * Domain Path: /languages 9 11 */ 10 12 11 13 define( 'CTF_PATH', WP_PLUGIN_DIR . '/' . basename( dirname( __FILE__ ) ) . '/' . basename( __FILE__ ) ); 12 14 define( 'CTF_URL', WP_PLUGIN_URL . '/' . basename( dirname( __FILE__ ) ) . '/' . basename( __FILE__ ) ); 13 define( 'CTF_VERSION', '1.1. 1' );15 define( 'CTF_VERSION', '1.1.2' ); 14 16 15 17 -
child-themify/trunk/includes/plugin.php
r1050389 r1264984 224 224 225 225 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' ); 227 227 add_filter( 'theme_action_links', array( $this, 'addActionLink' ), 10, 2 ); 228 228 add_action( 'load-themes.php', array( $this, 'loadThemesPage' ) ); -
child-themify/trunk/languages/child-themify.pot
r1067067 r1264984 3 3 msgid "" 4 4 msgstr "" 5 "Project-Id-Version: Child Themify 1.1. 1\n"5 "Project-Id-Version: Child Themify 1.1.2\n" 6 6 "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" 8 8 "MIME-Version: 1.0\n" 9 9 "Content-Type: text/plain; charset=UTF-8\n" -
child-themify/trunk/readme.txt
r1245140 r1264984 4 4 Requires at least: 3.4.2 5 5 Tested up to: 4.3.9 6 Stable tag: 1.1. 16 Stable tag: 1.1.2 7 7 License: GPL-2.0+ 8 8 License URI: http://www.gnu.org/licenses/gpl-2.0.html 9 Text Domain: child-themify 10 Domain Path: /languages 9 11 10 12 Create child themes at the click of a button. … … 34 36 35 37 == 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 36 43 37 44 = 1.1.1 = … … 67 74 == Upgrade Notice == 68 75 69 Added French translation 76 I18n improvements 70 77
Note: See TracChangeset
for help on using the changeset viewer.