Plugin Directory

Changeset 3177382


Ignore:
Timestamp:
10/28/2024 05:22:46 PM (17 months ago)
Author:
themolitor
Message:

v1.2.0

  • Added support for WordPress 6.7.
  • Added short key support [Shift + Alt + W] to toggle Wayfinder on/off.
Location:
wayfinder
Files:
1 added
2 edited

Legend:

Unmodified
Added
Removed
  • wayfinder/trunk/index.php

    r3166088 r3177382  
    22
    33/* Plugin Name: Wayfinder
    4  * Plugin URI: https://wordpress.org/plugins/wayfinder
     4 * Plugin URI: https://themolitor.com/wayfinder
    55 * Description: Easily select and identify nested blocks in the editor.
    6  * Version: 1.1.7
     6 * Version: 1.2.0
    77 * Author: THE MOLITOR
    88 * Author URI: https://themolitor.com
     
    1212*/
    1313
    14 $wayfinder_version = '1.1.7';
     14$wayfinder_version = '1.2.0';
    1515
    1616
     
    343343    global $wayfinder_version;
    344344    wp_enqueue_style( 'wayfinder_css',plugin_dir_url( __FILE__ ).'css/editor-style.css', array(), $wayfinder_version);
     345    wp_enqueue_script('wayfinder_toggle', plugin_dir_url(__FILE__) . 'js/wayfinder-toggle.js', array('wp-data'), $wayfinder_version, true);
    345346}
    346347add_action( 'admin_enqueue_scripts', 'enqueue_wayfinder' );
  • wayfinder/trunk/readme.txt

    r3166101 r3177382  
    33Tags: block, finder, helper, identifier, selector
    44Requires at least: 4.7
    5 Tested up to: 6.6
    6 Stable tag: 1.1.7
     5Tested up to: 6.7
     6Stable tag: 1.2.0
    77Requires PHP: 5.6
    88License: GPLv2 or later
     
    2121* View block outline on hover (optional)
    2222* See spacer blocks outline at all times (optional)
     23* "Shift + Alt + W" to toggle Wayfinder on/off
    2324
    2425= Links =
     
    5152
    5253== Changelog ==
     54
     55= 1.2.0 =
     56
     57* Added support for WordPress 6.7.
     58* Added short key support [Shift + Alt + W] to toggle Wayfinder on/off.
    5359
    5460= 1.1.7 =
Note: See TracChangeset for help on using the changeset viewer.