Changeset 3371447
- Timestamp:
- 10/01/2025 11:13:11 PM (5 months ago)
- Location:
- noakes-menu-manager/trunk
- Files:
-
- 4 added
- 4 deleted
- 5 edited
-
assets/debug/scripts/script-b2eaa6e35e.js (deleted)
-
assets/debug/scripts/script-ec28edce84.js (added)
-
assets/debug/styles/style-807896d47e.css (added)
-
assets/debug/styles/style-993a991701.css (deleted)
-
assets/manifest.json (modified) (1 diff)
-
assets/release/scripts/script-b2eaa6e35e.js (deleted)
-
assets/release/scripts/script-ec28edce84.js (added)
-
assets/release/styles/style-807896d47e.css (added)
-
assets/release/styles/style-993a991701.css (deleted)
-
includes/static/class-constants.php (modified) (1 diff)
-
includes/templates/repeatable-buttons.php (modified) (2 diffs)
-
noakes-menu-manager.php (modified) (1 diff)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
noakes-menu-manager/trunk/assets/manifest.json
r3261833 r3371447 2 2 "noatice.css": "noatice-9cfe489b62.css", 3 3 "noatice.js": "noatice-35bd19b79b.js", 4 "script.js": "script- b2eaa6e35e.js",5 "style.css": "style- 993a991701.css"4 "script.js": "script-ec28edce84.js", 5 "style.css": "style-807896d47e.css" 6 6 } -
noakes-menu-manager/trunk/includes/static/class-constants.php
r3261833 r3371447 47 47 * @var string 48 48 */ 49 const VERSION = '3.2. 6';50 const VERSION_PREVIOUS = '3.2. 5';49 const VERSION = '3.2.7'; 50 const VERSION_PREVIOUS = '3.2.6'; 51 51 52 52 /** -
noakes-menu-manager/trunk/includes/templates/repeatable-buttons.php
r2810236 r3371447 3 3 * Repeatable buttons template. 4 4 * 5 * @since 3.2.7 Converted to button elements. 5 6 * @since 3.0.0 6 7 * … … 16 17 <script id="tmpl-nmm-repeatable-buttons" type="text/html"> 17 18 18 < a class="nmm-repeatable-move" href="javascript:;" tabindex="-1" title="<?php esc_attr_e('Move Item', 'noakes-menu-manager'); ?>">19 <button class="nmm-repeatable-move" tabindex="-1" title="<?php esc_attr_e('Move Item', 'noakes-menu-manager'); ?>" type="button"> 19 20 20 21 <span class="nmm-repeatable-count"></span> 21 <span class="nmm-repeatable-move-button"><span class="dashicons dashicons-move"></span></span> 22 23 <span class="nmm-repeatable-move-button"> 24 25 <span class="dashicons dashicons-move"></span> 26 27 </span> 28 29 </button> 30 31 <button class="nmm-repeatable-move-up" tabindex="-1" title="<?php esc_attr_e('Move Item Up', 'noakes-menu-manager'); ?>" type="button"> 32 33 <span class="dashicons dashicons-arrow-up-alt"></span> 34 35 </button> 36 37 <button class="nmm-repeatable-move-down" tabindex="-1" title="<?php esc_attr_e('Move Item Down', 'noakes-menu-manager'); ?>" type="button"> 38 39 <span class="dashicons dashicons-arrow-down-alt"></span> 40 41 </button> 42 43 <button class="nmm-repeatable-insert" tabindex="-1" title="<?php esc_attr_e('Insert Item Above', 'noakes-menu-manager'); ?>" type="button"> 44 45 <span class="dashicons dashicons-plus"></span> 22 46 23 47 </a> 24 48 25 <a class="nmm-repeatable-move-up" href="javascript:;" tabindex="-1" title="<?php esc_attr_e('Move Item Up', 'noakes-menu-manager'); ?>"><span class="dashicons dashicons-arrow-up-alt"></span></a> 26 <a class="nmm-repeatable-move-down" href="javascript:;" tabindex="-1" title="<?php esc_attr_e('Move Item Down', 'noakes-menu-manager'); ?>"><span class="dashicons dashicons-arrow-down-alt"></span></a> 27 <a class="nmm-repeatable-insert" href="javascript:;" tabindex="-1" title="<?php esc_attr_e('Insert Item Above', 'noakes-menu-manager'); ?>"><span class="dashicons dashicons-plus"></span></a> 28 <a class="nmm-repeatable-remove" href="javascript:;" tabindex="-1" title="<?php esc_attr_e('Remove Item', 'noakes-menu-manager'); ?>"><span class="dashicons dashicons-no"></span></a> 49 <button class="nmm-repeatable-remove" tabindex="-1" title="<?php esc_attr_e('Remove Item', 'noakes-menu-manager'); ?>" type="button"> 50 51 <span class="dashicons dashicons-no"></span> 52 53 </button> 29 54 30 55 </script> -
noakes-menu-manager/trunk/noakes-menu-manager.php
r3261833 r3371447 4 4 * Plugin URI: https://wordpress.org/plugins/noakes-menu-manager/ 5 5 * Description: Simplifies nav menu maintenance and functionality providing more control over nav menus with less coding. 6 * Version: 3.2. 66 * Version: 3.2.7 7 7 * Author: Robert Noakes 8 8 * Author URI: https://robertnoakes.com/ -
noakes-menu-manager/trunk/readme.txt
r3261833 r3371447 5 5 Requires at least: 5.0 6 6 Tested up to: 6.8 7 Stable tag: 3.2. 67 Stable tag: 3.2.7 8 8 Copyright: (c) 2016-2025 Robert Noakes (mr@robertnoakes.com) 9 9 License: GNU General Public License v3.0 … … 75 75 == Changelog == 76 76 77 = 3.2.7 = 78 79 * Fixed: Repeatable nav menus issue 80 77 81 = 3.2.6 = 78 82
Note: See TracChangeset
for help on using the changeset viewer.