Changeset 3117724
- Timestamp:
- 07/14/2024 10:05:52 AM (18 months ago)
- Location:
- smart-admin-search/trunk
- Files:
-
- 3 edited
-
README.txt (modified) (2 diffs)
-
includes/class-smart-admin-search.php (modified) (1 diff)
-
smart-admin-search.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
smart-admin-search/trunk/README.txt
r3044544 r3117724 3 3 Tags: search, admin, dashboard 4 4 Requires at least: 5.0 5 Tested up to: 6. 55 Tested up to: 6.6 6 6 Requires PHP: 5.6 7 Stable tag: 1.5. 07 Stable tag: 1.5.1 8 8 License: GPLv2 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 91 91 == Changelog == 92 92 93 **1.5.1 [2024-07-14]** 94 - Tested on WordPress 6.6. 95 - Fixed admin bar position on WordPress 6.6. 96 93 97 **1.5.0 [2023-09-15]** 94 98 - Added a notice after plugin activation to suggest visiting plugin settings and choose a keyboard shortcut. -
smart-admin-search/trunk/includes/class-smart-admin-search.php
r2967561 r3117724 146 146 private function define_admin_hooks() { 147 147 148 global $wp_version; 149 148 150 $plugin_admin = new Smart_Admin_Search_Admin( $this->get_plugin_name(), $this->get_plugin_slug(), $this->get_version() ); 149 151 $this->loader->add_action( 'admin_enqueue_scripts', $plugin_admin, 'enqueue_styles' ); 150 152 $this->loader->add_action( 'admin_enqueue_scripts', $plugin_admin, 'enqueue_scripts' ); 151 $this->loader->add_action( 'admin_bar_menu', $plugin_admin, 'admin_bar_menu', 10 );153 $this->loader->add_action( 'admin_bar_menu', $plugin_admin, 'admin_bar_menu', ( version_compare( $wp_version, '6.6-RC1', '>=' ) ) ? 1 : 10 ); 152 154 $this->loader->add_action( 'admin_footer', $plugin_admin, 'admin_footer' ); 153 155 $this->loader->add_action( 'admin_notices', $plugin_admin, 'show_admin_notice_keys_shortcut' ); -
smart-admin-search/trunk/smart-admin-search.php
r2967561 r3117724 4 4 * Plugin URI: https://github.com/andreaporotti/smart-admin-search 5 5 * Description: A search engine to quickly find elements and contents inside the WordPress dashboard. 6 * Version: 1.5. 06 * Version: 1.5.1 7 7 * Requires at least: 5.0 8 8 * Requires PHP: 5.6
Note: See TracChangeset
for help on using the changeset viewer.