Plugin Directory

Changeset 3483198


Ignore:
Timestamp:
03/15/2026 04:23:38 PM (13 days ago)
Author:
mayankmajeji
Message:

Update to version 1.0.19 from GitHub

Location:
menupilot
Files:
5 edited
1 copied

Legend:

Unmodified
Added
Removed
  • menupilot/assets/blueprints/blueprint.json

    r3483196 r3483198  
    11{
    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"
    116    },
    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    ]
    2827}
  • menupilot/tags/1.0.19/menupilot.php

    r3483196 r3483198  
    44 * Plugin URI: https://github.com/mayankmajeji/menupilot
    55 * Description: Safely import and export WordPress navigation menus with a preview-first workflow. Review and map menus before importing.
    6  * Version: 1.0.18
     6 * Version: 1.0.19
    77 * Author: Mayank Majeji
    88 * Author URI:
     
    2626
    2727// Plugin version.
    28 define( 'MENUPILOT_VERSION', '1.0.18' );
     28define( 'MENUPILOT_VERSION', '1.0.19' );
    2929define( 'MENUPILOT_PLUGIN_DIR', plugin_dir_path( __FILE__ ) );
    3030define( 'MENUPILOT_PLUGIN_URL', plugin_dir_url( __FILE__ ) );
  • menupilot/tags/1.0.19/readme.txt

    r3483197 r3483198  
    55Tested up to: 6.9
    66Requires PHP: 7.4
    7 Stable tag: 1.0.17
     7Stable tag: 1.0.19
    88License: GPLv2 or later
    99License URI: https://www.gnu.org/licenses/gpl-2.0.html
     
    1212
    1313== 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)**
    1614
    1715MenuPilot 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  
    44 * Plugin URI: https://github.com/mayankmajeji/menupilot
    55 * Description: Safely import and export WordPress navigation menus with a preview-first workflow. Review and map menus before importing.
    6  * Version: 1.0.18
     6 * Version: 1.0.19
    77 * Author: Mayank Majeji
    88 * Author URI:
     
    2626
    2727// Plugin version.
    28 define( 'MENUPILOT_VERSION', '1.0.18' );
     28define( 'MENUPILOT_VERSION', '1.0.19' );
    2929define( 'MENUPILOT_PLUGIN_DIR', plugin_dir_path( __FILE__ ) );
    3030define( 'MENUPILOT_PLUGIN_URL', plugin_dir_url( __FILE__ ) );
  • menupilot/trunk/readme.txt

    r3483197 r3483198  
    55Tested up to: 6.9
    66Requires PHP: 7.4
    7 Stable tag: 1.0.17
     7Stable tag: 1.0.19
    88License: GPLv2 or later
    99License URI: https://www.gnu.org/licenses/gpl-2.0.html
     
    1212
    1313== 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)**
    1614
    1715MenuPilot 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.