Plugin Directory

Changeset 2461893


Ignore:
Timestamp:
01/24/2021 07:57:16 PM (5 years ago)
Author:
chilisearch
Message:
  • release version 1.1.1
Location:
chilisearch
Files:
17 added
3 edited

Legend:

Unmodified
Added
Removed
  • chilisearch/trunk/README.md

    r2460931 r2461893  
    5151## Changelog
    5252
     53### 1.1.1
     54* fix isRtl bug
     55* update contributors
     56
    5357### 1.1.0
    5458* rebrand to Chili Search
  • chilisearch/trunk/chilisearch.php

    r2460931 r2461893  
    1313 * Plugin URI:        https://chilisearch.com
    1414 * Description:       Chili Search is an easy-to-use AI-powered Search as a Service that provides a better search experience in your website.
    15  * Version:           1.1.0
     15 * Version:           1.1.1
    1616 * Author:            ChiliSearch
    1717 * Author URI:        https://chilisearch.com/
     
    3838}
    3939
    40 define('CHILISEARCH_VERSION', '1.1.0');
     40define('CHILISEARCH_VERSION', '1.1.1');
    4141define('CHILISEARCH_DIR', dirname(__FILE__));
    4242define('CHILISEARCH_PHP_MINIMUM', '5.6.0');
     
    337337        $searchPageSize = !empty($this->settings['search_page_size']) ? intval($this->settings['search_page_size']) : 15;
    338338        $saytPageSize = !empty($this->settings['sayt_page_size']) ? intval($this->settings['sayt_page_size']) : 5;
    339         $isRTL = is_rtl();
     339        $isRTL = is_rtl() ? 'true' : 'false';
    340340        $phrases = json_encode([
    341341            'powered-by' => __('powered by', 'chilisearch'),
  • chilisearch/trunk/readme.txt

    r2460931 r2461893  
    22Plugin URI: https://chilisearch.com
    33Donate link: https://chilisearch.com/wp-plugin
    4 Contributors: chilisearch, jafarili
     4Contributors: chilisearch
    55Tags: search, site search, custom search, autocomplete search, ajax search, typeahead, search-as-you-type, SAYT, search experience
    66Requires at least: 3.9
    77Tested up to: 5.6
    88Requires PHP: 5.6
    9 Stable tag: 1.1.0
     9Stable tag: 1.1.1
    1010License: GPLv2 or later
    1111License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    6868== Upgrade Notice ==
    6969
     70= 1.1.1 =
     71* Upgrade for latest changes
     72
    7073= 1.1.0 =
    7174* Upgrade for latest changes
     
    8487
    8588== Changelog ==
     89
     90= 1.1.1 =
     91* fix isRtl bug
     92* update contributors
    8693
    8794= 1.1.0 =
Note: See TracChangeset for help on using the changeset viewer.