From 9026442e06dac75a61020d31b74866881b016d45 Mon Sep 17 00:00:00 2001 From: Thomas Wilkerling Date: Mon, 24 Mar 2025 19:58:52 +0100 Subject: [PATCH] release 0.8.1 --- README.md | 54 +++++++++---------- demo/autocomplete.html | 4 +- dist/flexsearch.bundle.debug.js | 1 - dist/flexsearch.bundle.min.js | 4 +- dist/flexsearch.bundle.module.debug.js | 1 - dist/flexsearch.bundle.module.min.js | 4 +- dist/flexsearch.compact.debug.js | 1 - dist/flexsearch.compact.min.js | 4 +- dist/flexsearch.compact.module.debug.js | 1 - dist/flexsearch.compact.module.min.js | 4 +- dist/flexsearch.es5.debug.js | 1 - dist/flexsearch.es5.min.js | 4 +- dist/module-debug/document/search.js | 2 +- dist/module-debug/keystore.js | 44 ++++++++++----- dist/module-min/document/search.js | 2 +- dist/module/document/search.js | 2 +- dist/module/keystore.js | 44 ++++++++++----- doc/0.8.0.md | 54 +++++++++---------- .../basic-persistent/index.html | 2 +- .../browser-legacy/basic-resolver/index.html | 2 +- .../basic-suggestion/index.html | 2 +- .../browser-legacy/basic-worker/index.html | 2 +- .../document-highlighting/index.html | 2 +- .../document-persistent/index.html | 2 +- .../browser-legacy/document-worker/index.html | 2 +- example/browser-legacy/document/index.html | 2 +- .../browser-legacy/language-pack/index.html | 4 +- .../basic-persistent/index.html | 2 +- .../browser-module/basic-resolver/index.html | 2 +- .../basic-suggestion/index.html | 2 +- .../basic-worker-extern-config/config.js | 2 +- example/browser-module/basic/index.html | 51 ++++++++++++++++-- .../document-highlighting/index.html | 2 +- .../document-persistent/index.html | 2 +- .../config.originalTitle.js | 4 +- .../config.primaryTitle.js | 4 +- example/browser-module/document/index.html | 2 +- .../browser-module/language-pack/index.html | 4 +- src/document/search.js | 2 +- 39 files changed, 200 insertions(+), 130 deletions(-) diff --git a/README.md b/README.md index 2d6a788..9baab2c 100644 --- a/README.md +++ b/README.md @@ -102,80 +102,80 @@ The **_dist_** folder are located in: `node_modules/flexsearch/dist/` flexsearch.bundle.debug.js - Download - https://cdn.jsdelivr.net/gh/nextapps-de/flexsearch@0.8.0/dist/flexsearch.bundle.debug.js + Download + https://cdn.jsdelivr.net/gh/nextapps-de/flexsearch@0.8.1/dist/flexsearch.bundle.debug.js flexsearch.bundle.min.js - Download - https://cdn.jsdelivr.net/gh/nextapps-de/flexsearch@0.8.0/dist/flexsearch.bundle.min.js + Download + https://cdn.jsdelivr.net/gh/nextapps-de/flexsearch@0.8.1/dist/flexsearch.bundle.min.js flexsearch.bundle.module.debug.js - Download - https://cdn.jsdelivr.net/gh/nextapps-de/flexsearch@0.8.0/dist/flexsearch.bundle.module.debug.js + Download + https://cdn.jsdelivr.net/gh/nextapps-de/flexsearch@0.8.1/dist/flexsearch.bundle.module.debug.js flexsearch.bundle.module.min.js - Download - https://cdn.jsdelivr.net/gh/nextapps-de/flexsearch@0.8.0/dist/flexsearch.bundle.module.min.js + Download + https://cdn.jsdelivr.net/gh/nextapps-de/flexsearch@0.8.1/dist/flexsearch.bundle.module.min.js flexsearch.es5.debug.js - Download - https://cdn.jsdelivr.net/gh/nextapps-de/flexsearch@0.8.0/dist/flexsearch.es5.debug.js + Download + https://cdn.jsdelivr.net/gh/nextapps-de/flexsearch@0.8.1/dist/flexsearch.es5.debug.js flexsearch.es5.min.js - Download - https://cdn.jsdelivr.net/gh/nextapps-de/flexsearch@0.8.0/dist/flexsearch.es5.min.js + Download + https://cdn.jsdelivr.net/gh/nextapps-de/flexsearch@0.8.1/dist/flexsearch.es5.min.js flexsearch.light.debug.js - Download - https://cdn.jsdelivr.net/gh/nextapps-de/flexsearch@0.8.0/dist/flexsearch.light.debug.js + Download + https://cdn.jsdelivr.net/gh/nextapps-de/flexsearch@0.8.1/dist/flexsearch.light.debug.js flexsearch.light.min.js - Download - https://cdn.jsdelivr.net/gh/nextapps-de/flexsearch@0.8.0/dist/flexsearch.light.min.js + Download + https://cdn.jsdelivr.net/gh/nextapps-de/flexsearch@0.8.1/dist/flexsearch.light.min.js flexsearch.light.module.debug.js - Download - https://cdn.jsdelivr.net/gh/nextapps-de/flexsearch@0.8.0/dist/flexsearch.light.module.debug.js + Download + https://cdn.jsdelivr.net/gh/nextapps-de/flexsearch@0.8.1/dist/flexsearch.light.module.debug.js flexsearch.light.module.min.js - Download - https://cdn.jsdelivr.net/gh/nextapps-de/flexsearch@0.8.0/dist/flexsearch.light.module.min.js + Download + https://cdn.jsdelivr.net/gh/nextapps-de/flexsearch@0.8.1/dist/flexsearch.light.module.min.js Javascript Modules (ESM) - Download - https://github.com/nextapps-de/flexsearch/tree/0.8.0/dist/module + Download + https://github.com/nextapps-de/flexsearch/tree/0.8.1/dist/module Javascript Modules Minified (ESM) - Download - https://github.com/nextapps-de/flexsearch/tree/0.8.0/dist/module-min + Download + https://github.com/nextapps-de/flexsearch/tree/0.8.1/dist/module-min Javascript Modules Debug (ESM) - Download - https://github.com/nextapps-de/flexsearch/tree/0.8.0/dist/module-debug + Download + https://github.com/nextapps-de/flexsearch/tree/0.8.1/dist/module-debug @@ -588,7 +588,7 @@ You can also load modules via CDN: ```html ``` diff --git a/demo/autocomplete.html b/demo/autocomplete.html index dfc7007..47a2d46 100644 --- a/demo/autocomplete.html +++ b/demo/autocomplete.html @@ -76,8 +76,8 @@
``` diff --git a/example/browser-legacy/basic-persistent/index.html b/example/browser-legacy/basic-persistent/index.html index ec5e5cf..1526ea1 100644 --- a/example/browser-legacy/basic-persistent/index.html +++ b/example/browser-legacy/basic-persistent/index.html @@ -6,7 +6,7 @@ Example: browser-legacy-basic-persistent - + + + + + + + + + - +