Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/fulltextsearch.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordaita <maxence@pontapreta.net>2016-12-01 16:27:51 +0300
committerdaita <maxence@pontapreta.net>2016-12-01 16:27:51 +0300
commit2010b566189c257229628fac9cdb8d44cda0c222 (patch)
treefaa883a4b811a75dfa32cac0130143efdbf15720
parentf5e3877cea9d1c2ff6e68200e3e025ade449c04c (diff)
0.10.3
-rw-r--r--CHANGELOG.md4
-rw-r--r--appinfo/routes.php8
-rw-r--r--css/navigate.css1
-rw-r--r--lib/Service/SolrService.php2
4 files changed, 7 insertions, 8 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index c27b227..2b574ab 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,7 @@
+**v0.10.3**
+- Upload/creating a .noindex file in a folder will prevent nextant to index its content (and subdirectories)
+- --background will force the scan on next tick of the cron
+
**v0.10.2**
- bugfixes
diff --git a/appinfo/routes.php b/appinfo/routes.php
index eb221ea..0a72d6d 100644
--- a/appinfo/routes.php
+++ b/appinfo/routes.php
@@ -76,10 +76,4 @@ return [
'verb' => 'POST'
]
]
-]
-;
-
-/*
- * This route is now useless. It was used with navigate.js + SearchController
- * We are now using SearchProvider.
- */
+];
diff --git a/css/navigate.css b/css/navigate.css
index 13d4156..ded93fe 100644
--- a/css/navigate.css
+++ b/css/navigate.css
@@ -3,6 +3,7 @@
.searchbox input[type="search"]:valid, .searchbox input[type="search"]:focus
{
width: 300px;
+ background: #fff1;
}
#nextantList {
diff --git a/lib/Service/SolrService.php b/lib/Service/SolrService.php
index 71f84d5..fda25db 100644
--- a/lib/Service/SolrService.php
+++ b/lib/Service/SolrService.php
@@ -516,7 +516,7 @@ class SolrService
$q = '(' . $q . ")\n OR (" . $path . ')';
// Uncomment to display the request sent to solr
-// $this->miscService->log($q);
+ // $this->miscService->log($q);
$query->setRows(25);
$query->setQuery($q);