Skip to content

Commit

Permalink
Released version 3.3.11.0.
Browse files Browse the repository at this point in the history
  • Loading branch information
Daniel Berthereau authored and Daniel Berthereau committed Dec 13, 2021
1 parent e26f594 commit ea70360
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 2 deletions.
4 changes: 2 additions & 2 deletions config/module.ini
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,5 @@ author_link = "https://gitlab.com/Daniel-KM"
module_link = "https://gitlab.com/Daniel-KM/Omeka-S-module-Folksonomy"
support_link = "https://gitlab.com/Daniel-KM/Omeka-S-module-Folksonomy/-/issues"
configurable = true
version = "3.3.10.2"
omeka_version_constraint = "^3.0.0"
version = "3.3.11.0"
omeka_version_constraint = "^3.1.0"
12 changes: 12 additions & 0 deletions data/scripts/upgrade.php
Original file line number Diff line number Diff line change
Expand Up @@ -60,3 +60,15 @@
SQL;
$connection->executeStatement($sql);
}

if (version_compare($oldVersion, '3.3.11.0', '<')) {
$messenger = new Messenger();
$message = new Message(
'It’s now possible to limit tag cloud to the current site or with a query.' // @translate
);
$messenger->addSuccess($message);
$message = new Message(
'The key for the count of tags has been renamed from "count" to "total". Check your theme if you modified the template.' // @translate
);
$messenger->addWarning($message);
}

0 comments on commit ea70360

Please sign in to comment.