Skip to content

Commit

Permalink
Released version 3.5.22.3.
Browse files Browse the repository at this point in the history
  • Loading branch information
Daniel Berthereau authored and Daniel Berthereau committed Jul 5, 2021
1 parent eefc563 commit 750c0d3
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 3 deletions.
6 changes: 3 additions & 3 deletions config/module.ini
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
[info]
name = "Search"
description = "Add improved search capabilities to Omeka S: filters, facets, etc."
tags = "search, advanced search, filter, facet"
description = "Add improved search capabilities to Omeka S: auto-suggest, filters, facets, etc."
tags = "search, advanced search, auto-suggest, filter, facet"
license = "CECILL-2.1"
author = "Daniel Berthereau (based on the module Search of BibLibre)"
author_link = "https://gitlab.com/Daniel-KM"
module_link = "https://gitlab.com/Daniel-KM/Omeka-S-module-Search"
support_link = "https://gitlab.com/Daniel-KM/Omeka-S-module-Search/-/issues"
configurable = false
version = "3.5.21.3"
version = "3.5.22.3"
omeka_version_constraint = "^3.0.0"
9 changes: 9 additions & 0 deletions data/scripts/upgrade.php
Original file line number Diff line number Diff line change
Expand Up @@ -372,4 +372,13 @@
$message = new Message(
'The search page form defines new keys and use sub settings, in particular for facets. Check your theme if it was customized.' // @translate
);
$messenger->addWarning($message);
}

if (version_compare($oldVersion, '3.5.22.3', '<')) {
$messenger = new Messenger();
$message = new Message(
'You may enable the auto-suggestion in the search page settings.' // @translate
);
$messenger->addSuccess($message);
}

0 comments on commit 750c0d3

Please sign in to comment.