From 689cca9b71c8f9a2ff2deb6fa96c6728d4e54b04 Mon Sep 17 00:00:00 2001 From: Martin Folkers Date: Sat, 10 Oct 2020 18:12:28 +0200 Subject: [PATCH] Fix 'bpc' command (being undefined) --- composer.json | 2 +- src/Colorist.php | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/composer.json b/composer.json index 1a9e0b9..81dbced 100644 --- a/composer.json +++ b/composer.json @@ -3,7 +3,7 @@ "description": "Kirby v3 wrapper for colorist", "type": "kirby-plugin", "license": "MIT", - "version": "1.6.0", + "version": "1.6.1", "keywords": ["kirby3", "image", "graphics"], "homepage": "https://github.com/Fundevogel/kirby3-colorist#readme", "authors": [ diff --git a/src/Colorist.php b/src/Colorist.php index 444295e..19a8bf9 100644 --- a/src/Colorist.php +++ b/src/Colorist.php @@ -21,6 +21,7 @@ class Colorist extends Darkroom protected function defaults(): array { return parent::defaults() + [ + 'bpc' => option('fundevogel.colorist.bpc', null), 'cmm' => option('fundevogel.colorist.cmm', null), 'deflum' => option('fundevogel.colorist.deflum', null), 'format' => null,