Plugin Directory

Changeset 3253429


Ignore:
Timestamp:
03/10/2025 03:33:45 PM (13 months ago)
Author:
dbeja
Message:

Update to version 1.0.1 from GitHub

Location:
quick-admin-launcher
Files:
14 added
4 deleted
6 edited
1 copied

Legend:

Unmodified
Added
Removed
  • quick-admin-launcher/tags/1.0.1/README.txt

    r2922867 r3253429  
    44Donate link: https://www.paypal.com/paypalme/dbkode
    55Requires at least: 5.7 or higher
    6 Tested up to: 6.2
     6Tested up to: 6.7
    77Requires PHP: 7.2 or higher
    8 Stable tag: 1.0
     8Stable tag: 1.0.1
    99License: GPLv2 or later
    1010License URI: https://www.gnu.org/licenses/gpl-2.0.html
     
    6565
    6666== Changelog ==
     67= 1.0.1 =
     68* Convert modal template to WordPress React
     69
    6770= 1.0 =
    6871* Plugin release
  • quick-admin-launcher/tags/1.0.1/includes/class-quickal.php

    r2922867 r3253429  
    6767     */
    6868    public function admin_scripts() {
    69         wp_enqueue_script( 'quickal-js', QUICKAL_PLUGIN_URL . '/dist/quickal.js', array(), QUICKAL_VERSION, false );
     69        wp_enqueue_script( 'quickal-react', QUICKAL_PLUGIN_URL . '/build/index.js', array('wp-element'), QUICKAL_VERSION, true );
     70        wp_enqueue_style( 'quickal-react', QUICKAL_PLUGIN_URL . '/build/index.css', array(), QUICKAL_VERSION );
    7071
    7172        /**
     
    101102
    102103        wp_localize_script(
    103             'quickal-js',
     104            'quickal-react',
    104105            'quickalData',
    105106            array(
     
    147148     */
    148149    public function modal_html() {
    149         include QUICKAL_PLUGIN_DIR . 'templates/quickal-modal.php';
     150        echo '<div id="quickal-modal-root"></div>';
    150151    }
    151152
     
    407408            quickal_hotkey_input.onkeydown = function(e) {
    408409                e.preventDefault();
    409                 console.log(e);
    410410                var value = e.code.replace('Key', '');
    411411                if ( e.altKey ) {
  • quick-admin-launcher/tags/1.0.1/quick-admin-launcher.php

    r2922867 r3253429  
    22/**
    33 * Plugin Name: Quick Admin Launcher
    4  * Plugin URI:  quick-admin-launcher.com
     4 * Plugin URI:  https://wordpress.org/plugins/quick-admin-launcher/
    55 * Description: Quick Admin Launcher is a WordPress plugin that allows to quickly launch any admin tool from a search box.
    6  * Version:     1.0.0
     6 * Version:     1.0.1
    77 * Author:      dbeja
    88 * Text Domain: quickal
     
    1414define( 'QUICKAL_PLUGIN_DIR', plugin_dir_path( __FILE__ ) );
    1515define( 'QUICKAL_PLUGIN_URL', plugin_dir_url( __FILE__ ) );
    16 define( 'QUICKAL_VERSION', '1.0.0' );
     16define( 'QUICKAL_VERSION', '1.0.1' );
    1717
    1818require_once QUICKAL_PLUGIN_DIR . '/includes/autoload.php';
  • quick-admin-launcher/trunk/README.txt

    r2922867 r3253429  
    44Donate link: https://www.paypal.com/paypalme/dbkode
    55Requires at least: 5.7 or higher
    6 Tested up to: 6.2
     6Tested up to: 6.7
    77Requires PHP: 7.2 or higher
    8 Stable tag: 1.0
     8Stable tag: 1.0.1
    99License: GPLv2 or later
    1010License URI: https://www.gnu.org/licenses/gpl-2.0.html
     
    6565
    6666== Changelog ==
     67= 1.0.1 =
     68* Convert modal template to WordPress React
     69
    6770= 1.0 =
    6871* Plugin release
  • quick-admin-launcher/trunk/includes/class-quickal.php

    r2922867 r3253429  
    6767     */
    6868    public function admin_scripts() {
    69         wp_enqueue_script( 'quickal-js', QUICKAL_PLUGIN_URL . '/dist/quickal.js', array(), QUICKAL_VERSION, false );
     69        wp_enqueue_script( 'quickal-react', QUICKAL_PLUGIN_URL . '/build/index.js', array('wp-element'), QUICKAL_VERSION, true );
     70        wp_enqueue_style( 'quickal-react', QUICKAL_PLUGIN_URL . '/build/index.css', array(), QUICKAL_VERSION );
    7071
    7172        /**
     
    101102
    102103        wp_localize_script(
    103             'quickal-js',
     104            'quickal-react',
    104105            'quickalData',
    105106            array(
     
    147148     */
    148149    public function modal_html() {
    149         include QUICKAL_PLUGIN_DIR . 'templates/quickal-modal.php';
     150        echo '<div id="quickal-modal-root"></div>';
    150151    }
    151152
     
    407408            quickal_hotkey_input.onkeydown = function(e) {
    408409                e.preventDefault();
    409                 console.log(e);
    410410                var value = e.code.replace('Key', '');
    411411                if ( e.altKey ) {
  • quick-admin-launcher/trunk/quick-admin-launcher.php

    r2922867 r3253429  
    22/**
    33 * Plugin Name: Quick Admin Launcher
    4  * Plugin URI:  quick-admin-launcher.com
     4 * Plugin URI:  https://wordpress.org/plugins/quick-admin-launcher/
    55 * Description: Quick Admin Launcher is a WordPress plugin that allows to quickly launch any admin tool from a search box.
    6  * Version:     1.0.0
     6 * Version:     1.0.1
    77 * Author:      dbeja
    88 * Text Domain: quickal
     
    1414define( 'QUICKAL_PLUGIN_DIR', plugin_dir_path( __FILE__ ) );
    1515define( 'QUICKAL_PLUGIN_URL', plugin_dir_url( __FILE__ ) );
    16 define( 'QUICKAL_VERSION', '1.0.0' );
     16define( 'QUICKAL_VERSION', '1.0.1' );
    1717
    1818require_once QUICKAL_PLUGIN_DIR . '/includes/autoload.php';
Note: See TracChangeset for help on using the changeset viewer.