Changeset 3253429
- Timestamp:
- 03/10/2025 03:33:45 PM (13 months ago)
- Location:
- quick-admin-launcher
- Files:
-
- 14 added
- 4 deleted
- 6 edited
- 1 copied
-
tags/1.0.1 (copied) (copied from quick-admin-launcher/trunk)
-
tags/1.0.1/README.txt (modified) (2 diffs)
-
tags/1.0.1/build (added)
-
tags/1.0.1/build/images (added)
-
tags/1.0.1/build/images/logo-red.abbdc065.png (added)
-
tags/1.0.1/build/images/logo.823fa92c.png (added)
-
tags/1.0.1/build/index.asset.php (added)
-
tags/1.0.1/build/index.css (added)
-
tags/1.0.1/build/index.js (added)
-
tags/1.0.1/dist (deleted)
-
tags/1.0.1/includes/class-quickal.php (modified) (4 diffs)
-
tags/1.0.1/quick-admin-launcher.php (modified) (2 diffs)
-
tags/1.0.1/templates (deleted)
-
trunk/README.txt (modified) (2 diffs)
-
trunk/build (added)
-
trunk/build/images (added)
-
trunk/build/images/logo-red.abbdc065.png (added)
-
trunk/build/images/logo.823fa92c.png (added)
-
trunk/build/index.asset.php (added)
-
trunk/build/index.css (added)
-
trunk/build/index.js (added)
-
trunk/dist (deleted)
-
trunk/includes/class-quickal.php (modified) (4 diffs)
-
trunk/quick-admin-launcher.php (modified) (2 diffs)
-
trunk/templates (deleted)
Legend:
- Unmodified
- Added
- Removed
-
quick-admin-launcher/tags/1.0.1/README.txt
r2922867 r3253429 4 4 Donate link: https://www.paypal.com/paypalme/dbkode 5 5 Requires at least: 5.7 or higher 6 Tested up to: 6. 26 Tested up to: 6.7 7 7 Requires PHP: 7.2 or higher 8 Stable tag: 1.0 8 Stable tag: 1.0.1 9 9 License: GPLv2 or later 10 10 License URI: https://www.gnu.org/licenses/gpl-2.0.html … … 65 65 66 66 == Changelog == 67 = 1.0.1 = 68 * Convert modal template to WordPress React 69 67 70 = 1.0 = 68 71 * Plugin release -
quick-admin-launcher/tags/1.0.1/includes/class-quickal.php
r2922867 r3253429 67 67 */ 68 68 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 ); 70 71 71 72 /** … … 101 102 102 103 wp_localize_script( 103 'quickal- js',104 'quickal-react', 104 105 'quickalData', 105 106 array( … … 147 148 */ 148 149 public function modal_html() { 149 include QUICKAL_PLUGIN_DIR . 'templates/quickal-modal.php';150 echo '<div id="quickal-modal-root"></div>'; 150 151 } 151 152 … … 407 408 quickal_hotkey_input.onkeydown = function(e) { 408 409 e.preventDefault(); 409 console.log(e);410 410 var value = e.code.replace('Key', ''); 411 411 if ( e.altKey ) { -
quick-admin-launcher/tags/1.0.1/quick-admin-launcher.php
r2922867 r3253429 2 2 /** 3 3 * Plugin Name: Quick Admin Launcher 4 * Plugin URI: quick-admin-launcher.com4 * Plugin URI: https://wordpress.org/plugins/quick-admin-launcher/ 5 5 * Description: Quick Admin Launcher is a WordPress plugin that allows to quickly launch any admin tool from a search box. 6 * Version: 1.0. 06 * Version: 1.0.1 7 7 * Author: dbeja 8 8 * Text Domain: quickal … … 14 14 define( 'QUICKAL_PLUGIN_DIR', plugin_dir_path( __FILE__ ) ); 15 15 define( 'QUICKAL_PLUGIN_URL', plugin_dir_url( __FILE__ ) ); 16 define( 'QUICKAL_VERSION', '1.0. 0' );16 define( 'QUICKAL_VERSION', '1.0.1' ); 17 17 18 18 require_once QUICKAL_PLUGIN_DIR . '/includes/autoload.php'; -
quick-admin-launcher/trunk/README.txt
r2922867 r3253429 4 4 Donate link: https://www.paypal.com/paypalme/dbkode 5 5 Requires at least: 5.7 or higher 6 Tested up to: 6. 26 Tested up to: 6.7 7 7 Requires PHP: 7.2 or higher 8 Stable tag: 1.0 8 Stable tag: 1.0.1 9 9 License: GPLv2 or later 10 10 License URI: https://www.gnu.org/licenses/gpl-2.0.html … … 65 65 66 66 == Changelog == 67 = 1.0.1 = 68 * Convert modal template to WordPress React 69 67 70 = 1.0 = 68 71 * Plugin release -
quick-admin-launcher/trunk/includes/class-quickal.php
r2922867 r3253429 67 67 */ 68 68 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 ); 70 71 71 72 /** … … 101 102 102 103 wp_localize_script( 103 'quickal- js',104 'quickal-react', 104 105 'quickalData', 105 106 array( … … 147 148 */ 148 149 public function modal_html() { 149 include QUICKAL_PLUGIN_DIR . 'templates/quickal-modal.php';150 echo '<div id="quickal-modal-root"></div>'; 150 151 } 151 152 … … 407 408 quickal_hotkey_input.onkeydown = function(e) { 408 409 e.preventDefault(); 409 console.log(e);410 410 var value = e.code.replace('Key', ''); 411 411 if ( e.altKey ) { -
quick-admin-launcher/trunk/quick-admin-launcher.php
r2922867 r3253429 2 2 /** 3 3 * Plugin Name: Quick Admin Launcher 4 * Plugin URI: quick-admin-launcher.com4 * Plugin URI: https://wordpress.org/plugins/quick-admin-launcher/ 5 5 * Description: Quick Admin Launcher is a WordPress plugin that allows to quickly launch any admin tool from a search box. 6 * Version: 1.0. 06 * Version: 1.0.1 7 7 * Author: dbeja 8 8 * Text Domain: quickal … … 14 14 define( 'QUICKAL_PLUGIN_DIR', plugin_dir_path( __FILE__ ) ); 15 15 define( 'QUICKAL_PLUGIN_URL', plugin_dir_url( __FILE__ ) ); 16 define( 'QUICKAL_VERSION', '1.0. 0' );16 define( 'QUICKAL_VERSION', '1.0.1' ); 17 17 18 18 require_once QUICKAL_PLUGIN_DIR . '/includes/autoload.php';
Note: See TracChangeset
for help on using the changeset viewer.