Changeset 3483198
- Timestamp:
- 03/15/2026 04:23:38 PM (13 days ago)
- Location:
- menupilot
- Files:
-
- 5 edited
- 1 copied
-
assets/blueprints/blueprint.json (modified) (1 diff)
-
tags/1.0.19 (copied) (copied from menupilot/trunk)
-
tags/1.0.19/menupilot.php (modified) (2 diffs)
-
tags/1.0.19/readme.txt (modified) (2 diffs)
-
trunk/menupilot.php (modified) (2 diffs)
-
trunk/readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
menupilot/assets/blueprints/blueprint.json
r3483196 r3483198 1 1 { 2 "landingPage": "/wp-admin/admin.php?page=menupilot", 3 "preferredVersions": { 4 "php": "7.4", 5 "wp": "6.7" 6 }, 7 "steps": [ 8 { 9 "step": "login", 10 "username": "admin" 2 "landingPage": "/wp-admin/admin.php?page=menupilot", 3 "preferredVersions": { 4 "php": "7.4", 5 "wp": "6.7" 11 6 }, 12 { 13 "step": "installPlugin", 14 "pluginZipFile": { 15 "resource": "wordpress.org/plugins", 16 "slug": "menupilot" 17 }, 18 "options": { 19 "activate": true 20 } 21 }, 22 { 23 "step": "writeFile", 24 "path": "/wordpress/wp-content/mu-plugins/playground-notice.php", 25 "data": "<?php add_action( 'admin_notices', function() { echo '<div class=\"notice notice-info is-dismissible\"><p>This is a live preview of <strong>MenuPilot</strong>, powered by <a href=\"https://wordpress.org/playground/\" target=\"_blank\">WordPress Playground</a>.</p></div>'; } );" 26 } 27 ] 7 "phpExtensionBundles": [ 8 "kitchen-sink" 9 ], 10 "steps": [ 11 { 12 "step": "login", 13 "username": "admin", 14 "password": "password" 15 }, 16 { 17 "step": "installPlugin", 18 "pluginZipFile": { 19 "resource": "wordpress.org/plugins", 20 "slug": "menupilot" 21 }, 22 "options": { 23 "activate": true 24 } 25 } 26 ] 28 27 } -
menupilot/tags/1.0.19/menupilot.php
r3483196 r3483198 4 4 * Plugin URI: https://github.com/mayankmajeji/menupilot 5 5 * Description: Safely import and export WordPress navigation menus with a preview-first workflow. Review and map menus before importing. 6 * Version: 1.0.1 86 * Version: 1.0.19 7 7 * Author: Mayank Majeji 8 8 * Author URI: … … 26 26 27 27 // Plugin version. 28 define( 'MENUPILOT_VERSION', '1.0.1 8' );28 define( 'MENUPILOT_VERSION', '1.0.19' ); 29 29 define( 'MENUPILOT_PLUGIN_DIR', plugin_dir_path( __FILE__ ) ); 30 30 define( 'MENUPILOT_PLUGIN_URL', plugin_dir_url( __FILE__ ) ); -
menupilot/tags/1.0.19/readme.txt
r3483197 r3483198 5 5 Tested up to: 6.9 6 6 Requires PHP: 7.4 7 Stable tag: 1.0.1 77 Stable tag: 1.0.19 8 8 License: GPLv2 or later 9 9 License URI: https://www.gnu.org/licenses/gpl-2.0.html … … 12 12 13 13 == Description == 14 15 **[Try MenuPilot live in your browser](https://playground.wordpress.net/?blueprint-url=https://wordpress.org/plugins/wp-json/plugins/v1/plugin/menupilot/blueprint.json)**16 14 17 15 MenuPilot is a focused menu import and export plugin designed to help you move **one menu at a time** between WordPress sites with confidence. -
menupilot/trunk/menupilot.php
r3483196 r3483198 4 4 * Plugin URI: https://github.com/mayankmajeji/menupilot 5 5 * Description: Safely import and export WordPress navigation menus with a preview-first workflow. Review and map menus before importing. 6 * Version: 1.0.1 86 * Version: 1.0.19 7 7 * Author: Mayank Majeji 8 8 * Author URI: … … 26 26 27 27 // Plugin version. 28 define( 'MENUPILOT_VERSION', '1.0.1 8' );28 define( 'MENUPILOT_VERSION', '1.0.19' ); 29 29 define( 'MENUPILOT_PLUGIN_DIR', plugin_dir_path( __FILE__ ) ); 30 30 define( 'MENUPILOT_PLUGIN_URL', plugin_dir_url( __FILE__ ) ); -
menupilot/trunk/readme.txt
r3483197 r3483198 5 5 Tested up to: 6.9 6 6 Requires PHP: 7.4 7 Stable tag: 1.0.1 77 Stable tag: 1.0.19 8 8 License: GPLv2 or later 9 9 License URI: https://www.gnu.org/licenses/gpl-2.0.html … … 12 12 13 13 == Description == 14 15 **[Try MenuPilot live in your browser](https://playground.wordpress.net/?blueprint-url=https://wordpress.org/plugins/wp-json/plugins/v1/plugin/menupilot/blueprint.json)**16 14 17 15 MenuPilot is a focused menu import and export plugin designed to help you move **one menu at a time** between WordPress sites with confidence.
Note: See TracChangeset
for help on using the changeset viewer.