Skip to content

Commit

Permalink
Released version 3.4.45.
Browse files Browse the repository at this point in the history
  • Loading branch information
Daniel Berthereau authored and Daniel Berthereau committed Jul 10, 2023
1 parent 517e1fd commit fe8a682
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
2 changes: 1 addition & 1 deletion config/module.ini
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,6 @@ author_link = "https://gitlab.com/Daniel-KM"
module_link = "https://gitlab.com/Daniel-KM/Omeka-S-module-BulkImport"
support_link = "https://gitlab.com/Daniel-KM/Omeka-S-module-BulkImport/-/issues"
configurable = true
version = "3.4.44"
version = "3.4.45"
omeka_version_constraint = "^3.1.0 || ^4.0.0"
dependencies = "Log"
7 changes: 7 additions & 0 deletions data/scripts/upgrade.php
Original file line number Diff line number Diff line change
Expand Up @@ -721,3 +721,10 @@
throw new ModuleCannotInstallException((string) $message);
}
}

if (version_compare($oldVersion, '3.4.45', '<')) {
$message = new Message(
'It is now possible to process a bulk import and to upload files at the same time. It allows to bypass complex server config, where it is not possible to drop files on the server or to access an external server. Furthermore, the files can be zipped and they will be automatically unzipped.' // @translate
);
$messenger->addSuccess($message);
}

0 comments on commit fe8a682

Please sign in to comment.