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:
authorMaxence Lange <maxence@artificial-owl.com>2018-05-13 15:38:24 +0300
committerMaxence Lange <maxence@artificial-owl.com>2018-05-13 15:38:24 +0300
commit9e44faea41f8b1f4021a9e2371f838e36479814b (patch)
tree4de6cb3fcbd1ba3dc05b556f75453cae84e8e390
parent9f765d4eeaf9b5586b1753dfa3102caa9da2a37b (diff)
0.7.01v0.7.0
Signed-off-by: Maxence Lange <maxence@artificial-owl.com>
-rw-r--r--CHANGELOG.md10
-rw-r--r--Makefile2
-rw-r--r--appinfo/info.xml2
-rw-r--r--js/fulltextsearch.v1.navigation.js2
-rw-r--r--js/fulltextsearch.v1.settings.js2
-rw-r--r--lib/Cron/Index.php2
6 files changed, 15 insertions, 5 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 43825a8..ec88e95 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,6 +1,16 @@
# Changelog
+### 0.7.0
+
+- navigation app to search within all content from your providers
+- better navigation
+- content (index and search) can be splited in Parts
+- rework on the exchange between platform and providers
+- bugfixes
+
+
+
### 0.6.1
- bugfix: removing reset of the index on migration
diff --git a/Makefile b/Makefile
index 12a27a3..f21c1ba 100644
--- a/Makefile
+++ b/Makefile
@@ -8,7 +8,7 @@ sign_dir=$(build_dir)/sign
package_name=$(app_name)
cert_dir=$(HOME)/.nextcloud/certificates
codecov_token_dir=$(HOME)/.nextcloud/codecov_token
-version+=0.6.1
+version+=0.7.0
all: appstore
diff --git a/appinfo/info.xml b/appinfo/info.xml
index fe42943..638a3ab 100644
--- a/appinfo/info.xml
+++ b/appinfo/info.xml
@@ -10,7 +10,7 @@ Core App of the full-text search framework for your Nextcloud.
]]>
</description>
- <version>0.6.2</version>
+ <version>0.7.0</version>
<licence>agpl</licence>
<author>Maxence Lange</author>
<namespace>FullTextSearch</namespace>
diff --git a/js/fulltextsearch.v1.navigation.js b/js/fulltextsearch.v1.navigation.js
index 5ec7826..21b0910 100644
--- a/js/fulltextsearch.v1.navigation.js
+++ b/js/fulltextsearch.v1.navigation.js
@@ -210,7 +210,7 @@ var nav = {
fillDivResult: function (divResult, entry) {
divResult.find('#title').text(entry.title);
- divResult.find('#score').text(entry.score);
+ // divResult.find('#score').text(entry.score);
nav.fillDivResultExcepts(divResult, entry);
diff --git a/js/fulltextsearch.v1.settings.js b/js/fulltextsearch.v1.settings.js
index b103b4d..835217c 100644
--- a/js/fulltextsearch.v1.settings.js
+++ b/js/fulltextsearch.v1.settings.js
@@ -52,7 +52,7 @@ var settings = {
divLeft.append($('<div>', {id: 'line2'}));
var divRight = $('<div>', {class: 'result_entry_right'});
- divRight.append($('<div>', {id: 'score'}));
+ //divRight.append($('<div>', {id: 'score'}));
var div = $('<div>', {class: 'result_entry_default'});
div.append(divLeft);
diff --git a/lib/Cron/Index.php b/lib/Cron/Index.php
index b03fe3e..e397b4e 100644
--- a/lib/Cron/Index.php
+++ b/lib/Cron/Index.php
@@ -62,7 +62,7 @@ class Index extends TimedJob {
private $runner;
public function __construct() {
- $this->setInterval(20 * 60); // 20 minutes
+ $this->setInterval(12 * 60); // 12 minutes
}