Skip to content

Releases: biblibre/omeka-s-module-Search

0.17.0

17 Dec 14:04
v0.17.0
c5f3253
Compare
Choose a tag to compare
  • Fix sort option label being empty
  • Add a summary of the search query above the results (optional, disabled by default)

0.16.0

25 Oct 09:05
v0.16.0
9567f2a
Compare
Choose a tag to compare

Breaking changes

  • Search adapters are now entirely responsible for filtering out results that users cannot access.
    Search\Query::setIsPublic and Search\Query::getIsPublic methods, which were previously used for that purpose, are kept for user queries (for instance if a user want only private resources)

0.15.5

04 Oct 07:15
v0.15.5
a0cd30b
Compare
Choose a tag to compare
  • CSS: Prevent facet column to be shrinked
  • Prevent type error when facet value is an integer

0.15.4

15 May 14:02
v0.15.4
309385c
Compare
Choose a tag to compare
  • When indexing outside of UpdateIndex job, detach all entities that have been attached by the indexer, as they can cause weird bugs if not detached.
    For instance, a batch update adding a value could result in the same value added multiple times to the same resource

0.15.3

21 Feb 13:49
v0.15.3
440b346
Compare
Choose a tag to compare
  • Standard form: be more lenient about DOM structure when adding a new filter or a new group of filters (this allow themes that override standard-match-group.phtml to wrap these buttons in other HTML elements)

0.15.2

08 Jan 15:20
v0.15.2
d6c3464
Compare
Choose a tag to compare
  • Avoid "undefined variable $title" warning in resource-list.phtml
  • Escape HTML in $title in resource-list.phtml

0.15.1

03 Jan 10:07
v0.15.1
e9cd6dd
Compare
Choose a tag to compare
  • Fix order of search fields returned by Search\View\Helper\SearchForm::getAvailableSearchFields

0.15.0

16 Nov 15:42
v0.15.0
f1a38ab
Compare
Choose a tag to compare
  • Add highlighting support

0.14.0

16 Nov 07:32
v0.14.0
ca9d37e
Compare
Choose a tag to compare

Added

  • Add proximity setting to add an input on search form to choose distance between terms.
  • Change UI of search page configuration form for facet fields, sort fields and search fields to be more easily configurable and more "Omeka-like". Remove dependency on jQuery UI.
  • Add "facet value renderers" (extensible by modules) that allow to show to users a value different from what is indexed. The new built-in facet value renderer allows to render a resource's title when only it's ID is indexed.
  • Makes the standard search form easily extensible by breaking it into smaller parts, allowing modules to add new parts and allowing user to enable each part individually and arrange them in any order.

0.13.0

23 Jun 06:31
v0.13.0
70f7436
Compare
Choose a tag to compare
  • Resources that are created or updated in batch are now indexed in batch. Previously each resource was indexed separately. It allows adapters to optimize the indexing process.
  • Resources that are created or updated are now indexed in a background job in order to not slow down the request. Except when we are already in a background job or a script executed from command line. In that case resources are indexed immediately.