Skip to content

Commit

Permalink
Released version 3.4.49 for Omeka S v4.1.
Browse files Browse the repository at this point in the history
  • Loading branch information
Daniel Berthereau authored and Daniel Berthereau committed Oct 28, 2024
1 parent 3327c07 commit 94f6898
Show file tree
Hide file tree
Showing 2 changed files with 9 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-Next"
support_link = "https://gitlab.com/Daniel-KM/Omeka-S-module-Next/-/issues"
configurable = false
version = "3.4.48"
omeka_version_constraint = "^3.1.0 || ^4.0.0"
version = "3.4.49"
omeka_version_constraint = "^4.1.0"
7 changes: 7 additions & 0 deletions data/scripts/upgrade.php
Original file line number Diff line number Diff line change
Expand Up @@ -238,3 +238,10 @@
$message->setEscapeHtml(false);
$messenger->addWarning($message);
}

if (version_compare($oldVersion, '3.4.48', '<')) {
$message = new Message(
'This version is the last one to support Omeka S versions 3.1 to 4.0. New releases will support only versions 4.1 and greater.' // @translate
);
$messenger->addWarning($message);
}

0 comments on commit 94f6898

Please sign in to comment.