mirror of
https://github.com/werkraum-media/events.git
synced 2024-11-21 18:56:10 +01:00
Add image handling support in nix shell.
This commit is contained in:
parent
2168412ae5
commit
a02435b909
4 changed files with 33 additions and 4 deletions
27
Documentation/Changelog/4.1.0.rst
Normal file
27
Documentation/Changelog/4.1.0.rst
Normal file
|
@ -0,0 +1,27 @@
|
|||
4.1.9
|
||||
=====
|
||||
|
||||
Breaking
|
||||
--------
|
||||
|
||||
Nothing
|
||||
|
||||
Features
|
||||
--------
|
||||
|
||||
Nothing
|
||||
|
||||
Fixes
|
||||
-----
|
||||
|
||||
Nothing
|
||||
|
||||
Tasks
|
||||
-----
|
||||
|
||||
* Add image handling support in nix shell.
|
||||
|
||||
Deprecation
|
||||
-----------
|
||||
|
||||
Nothing
|
|
@ -79,9 +79,9 @@ abstract class AbstractFunctionalTestCase extends FunctionalTestCase
|
|||
],
|
||||
'GFX' => [
|
||||
'processor_enabled' => true,
|
||||
'processor_path' => '/usr/bin/',
|
||||
'processor_path_lzw' => '/usr/bin/',
|
||||
'processor' => 'ImageMagick',
|
||||
'processor_path' => getenv('GRAPHICSMAGICK_PATH') ?: '/usr/bin/',
|
||||
'processor_path_lzw' => getenv('GRAPHICSMAGICK_PATH') ?: '/usr/bin/',
|
||||
'processor' => getenv('GRAPHICSMAGICK_PATH') ? 'GraphicsMagick' : 'ImageMagick',
|
||||
],
|
||||
]);
|
||||
|
||||
|
|
|
@ -9,7 +9,7 @@ $EM_CONF['events'] = [
|
|||
'author' => 'Dirk Koritnik, Daniel Siepmann',
|
||||
'author_email' => 'koritnik@werkraum-media.de, coding@daniel-siepmann.de',
|
||||
'state' => 'stable',
|
||||
'version' => '4.0.1',
|
||||
'version' => '4.1.0',
|
||||
'constraints' => [
|
||||
'depends' => [
|
||||
'typo3' => '',
|
||||
|
|
|
@ -129,6 +129,8 @@ in pkgs.mkShell {
|
|||
composer
|
||||
];
|
||||
|
||||
GRAPHICSMAGICK_PATH = pkgs.lib.makeBinPath [ pkgs.graphicsmagick ] + "/";
|
||||
|
||||
shellHook = ''
|
||||
export typo3DatabaseDriver=pdo_sqlite
|
||||
'';
|
||||
|
|
Loading…
Reference in a new issue