Skip to content

Commit

Permalink
Released version 3.3.34.
Browse files Browse the repository at this point in the history
  • Loading branch information
Daniel Berthereau authored and Daniel Berthereau committed Oct 3, 2022
1 parent 63048ce commit ef3b09b
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 2 deletions.
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.3.33.6"
version = "3.3.34"
omeka_version_constraint = "^3.1.0"
dependencies = "Log"
15 changes: 15 additions & 0 deletions data/scripts/upgrade.php
Original file line number Diff line number Diff line change
Expand Up @@ -536,3 +536,18 @@
SQL;
$connection->executeStatement($sql);
}

if (version_compare($oldVersion, '3.3.34.0', '<')) {
require_once __DIR__ . '/upgrade_vocabulary.php';

$messenger = new Messenger();
$messenger->addSuccess($message);
$message = new Message(
'New mappers where added to import iiif manifests.' // @translate
);
$messenger->addSuccess($message);
$message = new Message(
'Two new formats are supported to write mappings: jsonpath and jmespath. See examples with iiif manifest mappings.' // @translate
);
$messenger->addSuccess($message);
}
2 changes: 1 addition & 1 deletion src/Reader/HttpClientTrait.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ trait HttpClientTrait
/**
* @var string
*/
protected $userAgent = 'Omeka S - module BulkImport version 3.3.29.0';
protected $userAgent = 'Omeka S - module BulkImport version 3.3.34';

/**
* @var \Laminas\Http\Client
Expand Down

0 comments on commit ef3b09b

Please sign in to comment.