Changeset 3301120
- Timestamp:
- 05/27/2025 04:15:01 AM (10 months ago)
- Location:
- edit-author-slug
- Files:
-
- 12 edited
- 1 copied
-
tags/1.9.2 (copied) (copied from edit-author-slug/trunk)
-
tags/1.9.2/README.md (modified) (2 diffs)
-
tags/1.9.2/edit-author-slug.php (modified) (3 diffs)
-
tags/1.9.2/includes/classes/class-ba-edit-author-slug.php (modified) (2 diffs)
-
tags/1.9.2/js/edit-author-slug.min.js (modified) (1 diff)
-
tags/1.9.2/languages/edit-author-slug.pot (modified) (2 diffs)
-
tags/1.9.2/readme.txt (modified) (2 diffs)
-
trunk/README.md (modified) (2 diffs)
-
trunk/edit-author-slug.php (modified) (3 diffs)
-
trunk/includes/classes/class-ba-edit-author-slug.php (modified) (2 diffs)
-
trunk/js/edit-author-slug.min.js (modified) (1 diff)
-
trunk/languages/edit-author-slug.pot (modified) (2 diffs)
-
trunk/readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
edit-author-slug/tags/1.9.2/README.md
r3168187 r3301120 3 3 **Tags:** author, author base, author slug, user nicename, nicename, permalink, permalinks, slug, users, user, role, roles 4 4 **Requires at least:** 5.8 5 **Tested up to:** 6. 65 **Tested up to:** 6.8 6 6 **Requires PHP:** 7.4 7 **Stable tag:** 1.9. 17 **Stable tag:** 1.9.2 8 8 **License:** GPLv2 or later 9 9 **License URI:** https://www.gnu.org/licenses/old-licenses/gpl-2.0.html … … 67 67 68 68 ## Changelog ## 69 70 ### 1.9.2 ### 71 * Release date: 2025-05-27 72 * Bumps "Tested up to" version to 6.8 73 * Fixes issue where `load_plugin_textdomain` was called too early. 74 * Update dependency package versions 69 75 70 76 ### 1.9.1 ### -
edit-author-slug/tags/1.9.2/edit-author-slug.php
r3168187 r3301120 8 8 * Text Domain: edit-author-slug 9 9 * Domain Path: /languages 10 * Version: 1.9. 110 * Version: 1.9.2 11 11 * Requires at least: 5.8 12 12 * Requires PHP: 7.4 … … 14 14 * License URI: https://www.gnu.org/licenses/old-licenses/gpl-2.0.html 15 15 * 16 * Copyright (C) 2009-202 4Brandon Allen (https://github.com/thebrandonallen)16 * Copyright (C) 2009-2025 Brandon Allen (https://github.com/thebrandonallen) 17 17 * 18 18 * This program is free software; you can redistribute it and/or modify … … 33 33 * @subpackage Main 34 34 * @author Brandon Allen 35 * @version 1.9. 135 * @version 1.9.2 36 36 */ 37 37 -
edit-author-slug/tags/1.9.2/includes/classes/class-ba-edit-author-slug.php
r3168187 r3301120 28 28 * @var string 29 29 */ 30 const VERSION = '1.9. 1';30 const VERSION = '1.9.2'; 31 31 32 32 /** … … 310 310 add_action( 'init', 'ba_eas_wp_rewrite_overrides', 4 ); 311 311 add_action( 'init', array( $this, 'add_rewrite_tags' ), 20 ); 312 313 // Localize.314 add_action( 'ba_eas_loaded', array( $this, 'load_textdomain' ) );315 312 } 316 313 317 314 /** Public Methods ****************************************************/ 318 319 /**320 * Load the translation file for the current language.321 *322 * We only check the default WP language plugins folder.323 * (ie - wp-content/languages/plugins).324 *325 * @since 0.9.6326 * @since 1.5.0 Only check the default WP languages folder.327 *328 * @return bool329 */330 public function load_textdomain() {331 return load_plugin_textdomain( 'edit-author-slug' );332 }333 315 334 316 /** -
edit-author-slug/tags/1.9.2/js/edit-author-slug.min.js
r3168187 r3301120 1 /*! edit-author-slug - v1.9. 1 - 2024-10-14 05:00:35UTC - https://github.com/thebrandonallen/edit-author-slug/ */1 /*! edit-author-slug - v1.9.2 - 2025-05-27 03:32:00 UTC - https://github.com/thebrandonallen/edit-author-slug/ */ 2 2 !function(){const e=function(e){e&&Object.prototype.hasOwnProperty.call(e,"classList")&&e.classList.toggle("hidden")};document.addEventListener("DOMContentLoaded",(function(){const t=document.querySelector('input[name="ba_eas_author_slug_custom"]'),n=document.querySelector(".eas-demo-author-base-front"),c=document.querySelector('input[name="_ba_eas_remove_front"]');c&&(c.checked&&e(n),c.addEventListener("click",(function(){e(n)}))),document.querySelectorAll('input[class="eas-checkbox"]').forEach((function(t){const n=t.parentNode.parentNode.nextElementSibling;t.checked||e(n),t.addEventListener("click",(function(){e(n)}))})),document.querySelectorAll('input[name="ba_eas_author_slug"]').forEach((function(e){e.addEventListener("click",(function(){e.classList.contains("eas-author-slug-custom-radio")||(t.value=e.value)}))})),t&&t.addEventListener("focus",(function(){document.querySelector(".eas-author-slug-custom-radio").checked="checked"})),document.querySelectorAll("select").forEach((function(t){t.addEventListener("change",(function(t){const n=t.target.nextElementSibling;n&&n.classList.contains("eas-author-slug-select-error")&&e(n)}))}))}))}(); -
edit-author-slug/tags/1.9.2/languages/edit-author-slug.pot
r3168187 r3301120 1 # Copyright (C) 2009-202 4Brandon Allen1 # Copyright (C) 2009-2025 Brandon Allen 2 2 # This file is distributed under the same license as the Edit Author Slug package. 3 3 # Submit translations to https://translate.wordpress.org/projects/wp-plugins/edit-author-slug. 4 4 msgid "" 5 5 msgstr "" 6 "Project-Id-Version: Edit Author Slug 1.9. 1\n"6 "Project-Id-Version: Edit Author Slug 1.9.2\n" 7 7 "Report-Msgid-Bugs-To: https://github.com/thebrandonallen/edit-author-slug/issues\n" 8 8 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" … … 11 11 "Content-Type: text/plain; charset=UTF-8\n" 12 12 "Content-Transfer-Encoding: 8bit\n" 13 "POT-Creation-Date: 202 4-10-14T05:00:36+00:00\n"13 "POT-Creation-Date: 2025-05-27T03:32:00+00:00\n" 14 14 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 15 15 "X-Generator: WP-CLI 2.11.0\n" -
edit-author-slug/tags/1.9.2/readme.txt
r3168187 r3301120 3 3 Tags: author, author base, author slug, user nicename, nicename, permalink, permalinks, slug, users, user, role, roles 4 4 Requires at least: 5.8 5 Tested up to: 6. 65 Tested up to: 6.8 6 6 Requires PHP: 7.4 7 Stable tag: 1.9. 17 Stable tag: 1.9.2 8 8 License: GPLv2 or later 9 9 License URI: https://www.gnu.org/licenses/old-licenses/gpl-2.0.html … … 67 67 68 68 == Changelog == 69 70 = 1.9.2 = 71 * Release date: 2025-05-27 72 * Bumps "Tested up to" version to 6.8 73 * Fixes issue where `load_plugin_textdomain` was called too early. 74 * Update dependency package versions 69 75 70 76 = 1.9.1 = -
edit-author-slug/trunk/README.md
r3168187 r3301120 3 3 **Tags:** author, author base, author slug, user nicename, nicename, permalink, permalinks, slug, users, user, role, roles 4 4 **Requires at least:** 5.8 5 **Tested up to:** 6. 65 **Tested up to:** 6.8 6 6 **Requires PHP:** 7.4 7 **Stable tag:** 1.9. 17 **Stable tag:** 1.9.2 8 8 **License:** GPLv2 or later 9 9 **License URI:** https://www.gnu.org/licenses/old-licenses/gpl-2.0.html … … 67 67 68 68 ## Changelog ## 69 70 ### 1.9.2 ### 71 * Release date: 2025-05-27 72 * Bumps "Tested up to" version to 6.8 73 * Fixes issue where `load_plugin_textdomain` was called too early. 74 * Update dependency package versions 69 75 70 76 ### 1.9.1 ### -
edit-author-slug/trunk/edit-author-slug.php
r3168187 r3301120 8 8 * Text Domain: edit-author-slug 9 9 * Domain Path: /languages 10 * Version: 1.9. 110 * Version: 1.9.2 11 11 * Requires at least: 5.8 12 12 * Requires PHP: 7.4 … … 14 14 * License URI: https://www.gnu.org/licenses/old-licenses/gpl-2.0.html 15 15 * 16 * Copyright (C) 2009-202 4Brandon Allen (https://github.com/thebrandonallen)16 * Copyright (C) 2009-2025 Brandon Allen (https://github.com/thebrandonallen) 17 17 * 18 18 * This program is free software; you can redistribute it and/or modify … … 33 33 * @subpackage Main 34 34 * @author Brandon Allen 35 * @version 1.9. 135 * @version 1.9.2 36 36 */ 37 37 -
edit-author-slug/trunk/includes/classes/class-ba-edit-author-slug.php
r3168187 r3301120 28 28 * @var string 29 29 */ 30 const VERSION = '1.9. 1';30 const VERSION = '1.9.2'; 31 31 32 32 /** … … 310 310 add_action( 'init', 'ba_eas_wp_rewrite_overrides', 4 ); 311 311 add_action( 'init', array( $this, 'add_rewrite_tags' ), 20 ); 312 313 // Localize.314 add_action( 'ba_eas_loaded', array( $this, 'load_textdomain' ) );315 312 } 316 313 317 314 /** Public Methods ****************************************************/ 318 319 /**320 * Load the translation file for the current language.321 *322 * We only check the default WP language plugins folder.323 * (ie - wp-content/languages/plugins).324 *325 * @since 0.9.6326 * @since 1.5.0 Only check the default WP languages folder.327 *328 * @return bool329 */330 public function load_textdomain() {331 return load_plugin_textdomain( 'edit-author-slug' );332 }333 315 334 316 /** -
edit-author-slug/trunk/js/edit-author-slug.min.js
r3168187 r3301120 1 /*! edit-author-slug - v1.9. 1 - 2024-10-14 05:00:35UTC - https://github.com/thebrandonallen/edit-author-slug/ */1 /*! edit-author-slug - v1.9.2 - 2025-05-27 03:32:00 UTC - https://github.com/thebrandonallen/edit-author-slug/ */ 2 2 !function(){const e=function(e){e&&Object.prototype.hasOwnProperty.call(e,"classList")&&e.classList.toggle("hidden")};document.addEventListener("DOMContentLoaded",(function(){const t=document.querySelector('input[name="ba_eas_author_slug_custom"]'),n=document.querySelector(".eas-demo-author-base-front"),c=document.querySelector('input[name="_ba_eas_remove_front"]');c&&(c.checked&&e(n),c.addEventListener("click",(function(){e(n)}))),document.querySelectorAll('input[class="eas-checkbox"]').forEach((function(t){const n=t.parentNode.parentNode.nextElementSibling;t.checked||e(n),t.addEventListener("click",(function(){e(n)}))})),document.querySelectorAll('input[name="ba_eas_author_slug"]').forEach((function(e){e.addEventListener("click",(function(){e.classList.contains("eas-author-slug-custom-radio")||(t.value=e.value)}))})),t&&t.addEventListener("focus",(function(){document.querySelector(".eas-author-slug-custom-radio").checked="checked"})),document.querySelectorAll("select").forEach((function(t){t.addEventListener("change",(function(t){const n=t.target.nextElementSibling;n&&n.classList.contains("eas-author-slug-select-error")&&e(n)}))}))}))}(); -
edit-author-slug/trunk/languages/edit-author-slug.pot
r3168187 r3301120 1 # Copyright (C) 2009-202 4Brandon Allen1 # Copyright (C) 2009-2025 Brandon Allen 2 2 # This file is distributed under the same license as the Edit Author Slug package. 3 3 # Submit translations to https://translate.wordpress.org/projects/wp-plugins/edit-author-slug. 4 4 msgid "" 5 5 msgstr "" 6 "Project-Id-Version: Edit Author Slug 1.9. 1\n"6 "Project-Id-Version: Edit Author Slug 1.9.2\n" 7 7 "Report-Msgid-Bugs-To: https://github.com/thebrandonallen/edit-author-slug/issues\n" 8 8 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" … … 11 11 "Content-Type: text/plain; charset=UTF-8\n" 12 12 "Content-Transfer-Encoding: 8bit\n" 13 "POT-Creation-Date: 202 4-10-14T05:00:36+00:00\n"13 "POT-Creation-Date: 2025-05-27T03:32:00+00:00\n" 14 14 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 15 15 "X-Generator: WP-CLI 2.11.0\n" -
edit-author-slug/trunk/readme.txt
r3168187 r3301120 3 3 Tags: author, author base, author slug, user nicename, nicename, permalink, permalinks, slug, users, user, role, roles 4 4 Requires at least: 5.8 5 Tested up to: 6. 65 Tested up to: 6.8 6 6 Requires PHP: 7.4 7 Stable tag: 1.9. 17 Stable tag: 1.9.2 8 8 License: GPLv2 or later 9 9 License URI: https://www.gnu.org/licenses/old-licenses/gpl-2.0.html … … 67 67 68 68 == Changelog == 69 70 = 1.9.2 = 71 * Release date: 2025-05-27 72 * Bumps "Tested up to" version to 6.8 73 * Fixes issue where `load_plugin_textdomain` was called too early. 74 * Update dependency package versions 69 75 70 76 = 1.9.1 =
Note: See TracChangeset
for help on using the changeset viewer.