Changeset 2816864
- Timestamp:
- 11/11/2022 11:34:48 PM (3 years ago)
- Location:
- commandbar-for-wp-admin/trunk
- Files:
-
- 4 edited
-
README.txt (modified) (2 diffs)
-
class-commandbar-api.php (modified) (1 diff)
-
class-commandbar-boot.php (modified) (1 diff)
-
commandbar.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
commandbar-for-wp-admin/trunk/README.txt
r2802580 r2816864 3 3 Tags: better search, product search, search, woocommerce search, admin, command palette 4 4 Requires at least: 5.0 5 Tested up to: 6. 0.25 Tested up to: 6.1 6 6 Requires PHP: 7.0 7 Stable tag: 1.0. 47 Stable tag: 1.0.5 8 8 License: BSD-3-Clause 9 9 License URI: https://www.gnu.org/licenses/license-list.html#ModifiedBSD … … 32 32 33 33 == Changelog == 34 # 1.0.5 35 fix: fixed bug preventing media, pages, and draft posts from appearing in search results 36 34 37 # 1.0.4 35 38 fix: Jetpack icon was broken (ENG-1169) -
commandbar-for-wp-admin/trunk/class-commandbar-api.php
r2802580 r2816864 49 49 $editable_post_types = []; 50 50 51 $is_admin = current_user_can('edit or') && COMMANDBAR_ENABLE_FOR_ADMIN_USERS;51 $is_admin = current_user_can('edit_posts') && COMMANDBAR_ENABLE_FOR_ADMIN_USERS; 52 52 53 53 if ($is_admin) { -
commandbar-for-wp-admin/trunk/class-commandbar-boot.php
r2794738 r2816864 102 102 'hmac' => $end_user_hmac, 'formFactor' => ['type' => 'modal'] 103 103 ]) ?>, 104 <?php echo json_encode([ 105 'wp_plugin_version' => COMMANDBAR_PLUGIN_VERSION 106 ]) ?> 104 107 ); 105 108 </script> -
commandbar-for-wp-admin/trunk/commandbar.php
r2802580 r2816864 12 12 * Plugin URI: https://www.commandbar.com/wordpress 13 13 * Description: CommandBar gives your users onboarding nudges, quick actions, relevant support content, and powerful search, in one personalized, blazingly fast widget. 14 * Version: 1.0. 414 * Version: 1.0.5 15 15 * Author: Jared Luxenberg 16 16 * Author URI: https://www.commandbar.com/ … … 19 19 **/ 20 20 21 define('COMMANDBAR_PLUGIN_VERSION', '1.0. 4');21 define('COMMANDBAR_PLUGIN_VERSION', '1.0.5'); 22 22 23 23 require_once dirname(__FILE__) . '/commandbar-config.php';
Note: See TracChangeset
for help on using the changeset viewer.