Changeset 2461893
- Timestamp:
- 01/24/2021 07:57:16 PM (5 years ago)
- Location:
- chilisearch
- Files:
-
- 17 added
- 3 edited
-
tags/1.1.1 (added)
-
tags/1.1.1/README.md (added)
-
tags/1.1.1/assets (added)
-
tags/1.1.1/assets/css (added)
-
tags/1.1.1/assets/css/material-dashboard-rtl.css (added)
-
tags/1.1.1/assets/css/material-dashboard.css (added)
-
tags/1.1.1/chilisearch.php (added)
-
tags/1.1.1/icon.png (added)
-
tags/1.1.1/languages (added)
-
tags/1.1.1/languages/.gitkeep (added)
-
tags/1.1.1/readme.txt (added)
-
tags/1.1.1/templates (added)
-
tags/1.1.1/templates/admin_dashboard.php (added)
-
tags/1.1.1/templates/admin_get_started_api.php (added)
-
tags/1.1.1/templates/admin_get_started_index_config.php (added)
-
tags/1.1.1/templates/admin_index.php (added)
-
tags/1.1.1/templates/client_default_search_page.php (added)
-
trunk/README.md (modified) (1 diff)
-
trunk/chilisearch.php (modified) (3 diffs)
-
trunk/readme.txt (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
chilisearch/trunk/README.md
r2460931 r2461893 51 51 ## Changelog 52 52 53 ### 1.1.1 54 * fix isRtl bug 55 * update contributors 56 53 57 ### 1.1.0 54 58 * rebrand to Chili Search -
chilisearch/trunk/chilisearch.php
r2460931 r2461893 13 13 * Plugin URI: https://chilisearch.com 14 14 * 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. 015 * Version: 1.1.1 16 16 * Author: ChiliSearch 17 17 * Author URI: https://chilisearch.com/ … … 38 38 } 39 39 40 define('CHILISEARCH_VERSION', '1.1. 0');40 define('CHILISEARCH_VERSION', '1.1.1'); 41 41 define('CHILISEARCH_DIR', dirname(__FILE__)); 42 42 define('CHILISEARCH_PHP_MINIMUM', '5.6.0'); … … 337 337 $searchPageSize = !empty($this->settings['search_page_size']) ? intval($this->settings['search_page_size']) : 15; 338 338 $saytPageSize = !empty($this->settings['sayt_page_size']) ? intval($this->settings['sayt_page_size']) : 5; 339 $isRTL = is_rtl() ;339 $isRTL = is_rtl() ? 'true' : 'false'; 340 340 $phrases = json_encode([ 341 341 'powered-by' => __('powered by', 'chilisearch'), -
chilisearch/trunk/readme.txt
r2460931 r2461893 2 2 Plugin URI: https://chilisearch.com 3 3 Donate link: https://chilisearch.com/wp-plugin 4 Contributors: chilisearch , jafarili4 Contributors: chilisearch 5 5 Tags: search, site search, custom search, autocomplete search, ajax search, typeahead, search-as-you-type, SAYT, search experience 6 6 Requires at least: 3.9 7 7 Tested up to: 5.6 8 8 Requires PHP: 5.6 9 Stable tag: 1.1. 09 Stable tag: 1.1.1 10 10 License: GPLv2 or later 11 11 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 68 68 == Upgrade Notice == 69 69 70 = 1.1.1 = 71 * Upgrade for latest changes 72 70 73 = 1.1.0 = 71 74 * Upgrade for latest changes … … 84 87 85 88 == Changelog == 89 90 = 1.1.1 = 91 * fix isRtl bug 92 * update contributors 86 93 87 94 = 1.1.0 =
Note: See TracChangeset
for help on using the changeset viewer.