Releases: HBLL-Collection-Development/omeka-s-any-cloud
Releases · HBLL-Collection-Development/omeka-s-any-cloud
v3.2.1
v3.2.0
v3.1.5
- Automatically zip up and create a release when you push a tag. It will automatically fix the version number in config/module.ini based on the tag name in the zip file in case you forget to do it before creating the release.
- Fix
config/module.ini
so comment is parsed correctly
v3.1.1
This patch allows to configure the module entirely from local.config.php
by doing two things:
It creates a Laminas service for each adapter, so that administrators can configure which adapter to use by modifying the Omeka\File\Store
alias directly in local.config.php
. For instance
'Omeka\File\Store' => 'AnyCloud\File\Store\Scaleway'
Doing this prevents using the local store by mistake (for instance when the module is disabled or needs to be updated)
It allows to configure each adapter in the file_store
section of local.config.php
. For instance you can set up the dropbox adapter like this:
'file_store' => [
'dropbox' => [
'access_token' => 'ACCESS_TOKEN',
],
],
This is to avoid exposing secrets through Omeka administration interface
When an adapter is configured like this, its corresponding section is disabled in the admin configuration form
Fixes #19
v3.0.1
- Updated included vendors folder
v3.0.0
- Upgraded for Omeka S v4 and PHP 8+ compatibility
- Updated Flysystem to v3
- Removed Rackspace storage provider (not available in Flysystem v3)
v2.0.0
Changed
- Upped version number to
v2.0.0
- Upgraded for Omeka S v3 compatibility
- Updated to latest composer repositories for dependencies
v1.1.5
v1.1.4
Changed
- Upped version number to
v1.1.4
- Added
README.md
to binary download
v1.1.3
Changed
- Upped version number to
v1.1.3
- Fixed code style errors
- Made more compatible with PHP 7