diff --git a/config/module.ini b/config/module.ini index fa4cb00..1f05892 100644 --- a/config/module.ini +++ b/config/module.ini @@ -8,5 +8,6 @@ author_link = "https://gitlab.com/Daniel-KM" module_link = "https://gitlab.com/Daniel-KM/Omeka-S-module-IiifServer" support_link = "https://gitlab.com/Daniel-KM/Omeka-S-module-IiifServer/-/issues" configurable = true -version = "3.6.13" +version = "3.6.14" omeka_version_constraint = "^3.1.0 || ^4.0.0" + diff --git a/data/scripts/upgrade.php b/data/scripts/upgrade.php index 6c26ceb..bfd7411 100644 --- a/data/scripts/upgrade.php +++ b/data/scripts/upgrade.php @@ -251,3 +251,14 @@ ); $messenger->addSuccess($message); } + +if (version_compare($oldVersion, '3.6.14', '<')) { + $message = new Message( + 'A new option allows to cache manifests in order to delivrate them instantly.' // @translate + ); + $messenger->addSuccess($message); + $message = new Message( + 'A new resource block allows to display the iiif manifest link to copy in clipboard.' // @translate + ); + $messenger->addSuccess($message); +}