Skip to content

Commit

Permalink
Released version 3.6.14.
Browse files Browse the repository at this point in the history
  • Loading branch information
Daniel Berthereau authored and Daniel Berthereau committed May 15, 2023
1 parent 248fe52 commit c60f884
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 1 deletion.
3 changes: 2 additions & 1 deletion config/module.ini
Original file line number Diff line number Diff line change
Expand Up @@ -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"

11 changes: 11 additions & 0 deletions data/scripts/upgrade.php
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}

0 comments on commit c60f884

Please sign in to comment.