Plugin Directory

Changeset 3090985


Ignore:
Timestamp:
05/22/2024 02:56:35 PM (21 months ago)
Author:
wpengine
Message:

Tagging version 0.2.48

Location:
atlas-search
Files:
6 added
6 deleted
14 edited
1 copied

Legend:

Unmodified
Added
Removed
  • atlas-search/tags/0.2.48/README.txt

    r3089539 r3090985  
    33Tested up to: 6.5
    44Requires PHP: 7.4
    5 Stable tag: 0.2.47
     5Stable tag: 0.2.48
    66License: GPLv2 or later
    77License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    4848
    4949== Changelog ==
     50= 0.2.48 =
     51* **Added:** Basic support for Polylang plugin.
     52* **Fixed:** Corrected inaccurate text messages.
     53
    5054= 0.2.47 =
    5155* **Added:** UI re-skin.
  • atlas-search/tags/0.2.48/atlas-search.php

    r3089539 r3090985  
    1616 * Plugin URI:        https://developers.wpengine.com/
    1717 * Description:       Searching WordPress data with WP Engine Smart Search.
    18  * Version:           0.2.47
     18 * Version:           0.2.48
    1919 * Author:            WP Engine
    2020 * Author URI:        https://wpengine.com/
     
    4141 * Rename this for your plugin and update it as you release new versions.
    4242 */
    43 define( 'WPE_SMART_SEARCH_VERSION', '0.2.47' );
     43define( 'WPE_SMART_SEARCH_VERSION', '0.2.48' );
    4444
    4545/**
  • atlas-search/tags/0.2.48/helper/api/sync-data/sync-data-controller.php

    r3075724 r3090985  
    165165            array(
    166166                'status'  => Status::COMPLETED,
    167                 'message' => 'Synced data were deleted successfully!',
     167                'message' => 'Indexed data were deleted successfully!',
    168168            ),
    169169        );
  • atlas-search/tags/0.2.48/includes/smart-search-settings/build/asset-manifest.json

    r3089539 r3090985  
    22  "files": {
    33    "main.css": "/wp-content/plugins/atlas-search/includes/smart-search-settings/build/static/css/main.751d9a0b.css",
    4     "main.js": "/wp-content/plugins/atlas-search/includes/smart-search-settings/build/static/js/main.c2818f09.js",
     4    "main.js": "/wp-content/plugins/atlas-search/includes/smart-search-settings/build/static/js/main.d41a5b40.js",
    55    "static/media/wpengine-logo.svg": "/wp-content/plugins/atlas-search/includes/smart-search-settings/build/static/media/wpengine-logo.40f3a1215fbea4708a6a4bff9624fece.svg",
    66    "static/media/content-copy.svg": "/wp-content/plugins/atlas-search/includes/smart-search-settings/build/static/media/content-copy.e50f17791e757794684afc63d5d4cb00.svg",
     
    1212    "index.html": "/wp-content/plugins/atlas-search/includes/smart-search-settings/build/index.html",
    1313    "main.751d9a0b.css.map": "/wp-content/plugins/atlas-search/includes/smart-search-settings/build/static/css/main.751d9a0b.css.map",
    14     "main.c2818f09.js.map": "/wp-content/plugins/atlas-search/includes/smart-search-settings/build/static/js/main.c2818f09.js.map"
     14    "main.d41a5b40.js.map": "/wp-content/plugins/atlas-search/includes/smart-search-settings/build/static/js/main.d41a5b40.js.map"
    1515  },
    1616  "entrypoints": [
    1717    "static/css/main.751d9a0b.css",
    18     "static/js/main.c2818f09.js"
     18    "static/js/main.d41a5b40.js"
    1919  ]
    2020}
  • atlas-search/tags/0.2.48/includes/smart-search-settings/build/index.html

    r3089539 r3090985  
    1 <head><script defer="defer" src="/wp-content/plugins/atlas-search/includes/smart-search-settings/build/static/js/main.c2818f09.js"></script><link href="/wp-content/plugins/atlas-search/includes/smart-search-settings/build/static/css/main.751d9a0b.css" rel="stylesheet"></head>
     1<head><script defer="defer" src="/wp-content/plugins/atlas-search/includes/smart-search-settings/build/static/js/main.d41a5b40.js"></script><link href="/wp-content/plugins/atlas-search/includes/smart-search-settings/build/static/css/main.751d9a0b.css" rel="stylesheet"></head>
  • atlas-search/tags/0.2.48/src/index/post.php

    r3075724 r3090985  
    186186
    187187    foreach ( $taxonomies as $taxonomy ) {
    188         if ( false === $taxonomy->show_ui ) {
     188        if ( false === $taxonomy->publicly_queryable ) {
    189189            continue;
    190190        }
     
    195195            $terms_obj[ map_taxonomy_name( $taxonomy->name ) ] = array();
    196196            foreach ( $terms as $term ) {
    197                 $terms_obj[ map_taxonomy_name( $taxonomy->name ) ][] = array( 'name' => $term->name );
     197                $terms_obj[ map_taxonomy_name( $taxonomy->name ) ][] = array(
     198                    'name'             => $term->name,
     199                    'slug'             => $term->slug,
     200                    'term_taxonomy_id' => $term->term_taxonomy_id,
     201                );
    198202            }
    199203        }
  • atlas-search/tags/0.2.48/src/query/taxonomy.php

    r3087199 r3090985  
    6060            case 'NOT EXISTS':
    6161                $quote    = 'NOT IN' === $operator ? '"' : '';
    62                 $template = 'NOT ' . $tax_name . '.name:';
     62                $template = 'NOT ' . $tax_name . '.' . $query['field'] . ':';
    6363                $terms    = array_map(
    6464                    function( $term ) use ( $template, $quote ) {
     
    7373            default:
    7474                $quote   = 'IN' === $operator ? '"' : '';
    75                 $output .= $tax_name . '.name:';
     75                $output .= $tax_name . '.' . $query['field'] . ':';
    7676                $output .= $quote . implode( "$quote,$quote", $query['terms'] ) . $quote;
    7777                break;
  • atlas-search/trunk/README.txt

    r3089539 r3090985  
    33Tested up to: 6.5
    44Requires PHP: 7.4
    5 Stable tag: 0.2.47
     5Stable tag: 0.2.48
    66License: GPLv2 or later
    77License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    4848
    4949== Changelog ==
     50= 0.2.48 =
     51* **Added:** Basic support for Polylang plugin.
     52* **Fixed:** Corrected inaccurate text messages.
     53
    5054= 0.2.47 =
    5155* **Added:** UI re-skin.
  • atlas-search/trunk/atlas-search.php

    r3089539 r3090985  
    1616 * Plugin URI:        https://developers.wpengine.com/
    1717 * Description:       Searching WordPress data with WP Engine Smart Search.
    18  * Version:           0.2.47
     18 * Version:           0.2.48
    1919 * Author:            WP Engine
    2020 * Author URI:        https://wpengine.com/
     
    4141 * Rename this for your plugin and update it as you release new versions.
    4242 */
    43 define( 'WPE_SMART_SEARCH_VERSION', '0.2.47' );
     43define( 'WPE_SMART_SEARCH_VERSION', '0.2.48' );
    4444
    4545/**
  • atlas-search/trunk/helper/api/sync-data/sync-data-controller.php

    r3075724 r3090985  
    165165            array(
    166166                'status'  => Status::COMPLETED,
    167                 'message' => 'Synced data were deleted successfully!',
     167                'message' => 'Indexed data were deleted successfully!',
    168168            ),
    169169        );
  • atlas-search/trunk/includes/smart-search-settings/build/asset-manifest.json

    r3089539 r3090985  
    22  "files": {
    33    "main.css": "/wp-content/plugins/atlas-search/includes/smart-search-settings/build/static/css/main.751d9a0b.css",
    4     "main.js": "/wp-content/plugins/atlas-search/includes/smart-search-settings/build/static/js/main.c2818f09.js",
     4    "main.js": "/wp-content/plugins/atlas-search/includes/smart-search-settings/build/static/js/main.d41a5b40.js",
    55    "static/media/wpengine-logo.svg": "/wp-content/plugins/atlas-search/includes/smart-search-settings/build/static/media/wpengine-logo.40f3a1215fbea4708a6a4bff9624fece.svg",
    66    "static/media/content-copy.svg": "/wp-content/plugins/atlas-search/includes/smart-search-settings/build/static/media/content-copy.e50f17791e757794684afc63d5d4cb00.svg",
     
    1212    "index.html": "/wp-content/plugins/atlas-search/includes/smart-search-settings/build/index.html",
    1313    "main.751d9a0b.css.map": "/wp-content/plugins/atlas-search/includes/smart-search-settings/build/static/css/main.751d9a0b.css.map",
    14     "main.c2818f09.js.map": "/wp-content/plugins/atlas-search/includes/smart-search-settings/build/static/js/main.c2818f09.js.map"
     14    "main.d41a5b40.js.map": "/wp-content/plugins/atlas-search/includes/smart-search-settings/build/static/js/main.d41a5b40.js.map"
    1515  },
    1616  "entrypoints": [
    1717    "static/css/main.751d9a0b.css",
    18     "static/js/main.c2818f09.js"
     18    "static/js/main.d41a5b40.js"
    1919  ]
    2020}
  • atlas-search/trunk/includes/smart-search-settings/build/index.html

    r3089539 r3090985  
    1 <head><script defer="defer" src="/wp-content/plugins/atlas-search/includes/smart-search-settings/build/static/js/main.c2818f09.js"></script><link href="/wp-content/plugins/atlas-search/includes/smart-search-settings/build/static/css/main.751d9a0b.css" rel="stylesheet"></head>
     1<head><script defer="defer" src="/wp-content/plugins/atlas-search/includes/smart-search-settings/build/static/js/main.d41a5b40.js"></script><link href="/wp-content/plugins/atlas-search/includes/smart-search-settings/build/static/css/main.751d9a0b.css" rel="stylesheet"></head>
  • atlas-search/trunk/src/index/post.php

    r3075724 r3090985  
    186186
    187187    foreach ( $taxonomies as $taxonomy ) {
    188         if ( false === $taxonomy->show_ui ) {
     188        if ( false === $taxonomy->publicly_queryable ) {
    189189            continue;
    190190        }
     
    195195            $terms_obj[ map_taxonomy_name( $taxonomy->name ) ] = array();
    196196            foreach ( $terms as $term ) {
    197                 $terms_obj[ map_taxonomy_name( $taxonomy->name ) ][] = array( 'name' => $term->name );
     197                $terms_obj[ map_taxonomy_name( $taxonomy->name ) ][] = array(
     198                    'name'             => $term->name,
     199                    'slug'             => $term->slug,
     200                    'term_taxonomy_id' => $term->term_taxonomy_id,
     201                );
    198202            }
    199203        }
  • atlas-search/trunk/src/query/taxonomy.php

    r3087199 r3090985  
    6060            case 'NOT EXISTS':
    6161                $quote    = 'NOT IN' === $operator ? '"' : '';
    62                 $template = 'NOT ' . $tax_name . '.name:';
     62                $template = 'NOT ' . $tax_name . '.' . $query['field'] . ':';
    6363                $terms    = array_map(
    6464                    function( $term ) use ( $template, $quote ) {
     
    7373            default:
    7474                $quote   = 'IN' === $operator ? '"' : '';
    75                 $output .= $tax_name . '.name:';
     75                $output .= $tax_name . '.' . $query['field'] . ':';
    7676                $output .= $quote . implode( "$quote,$quote", $query['terms'] ) . $quote;
    7777                break;
Note: See TracChangeset for help on using the changeset viewer.