From 9640e7a3517f95e59cbf4c9f3fe07900a1d52a20 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vojt=C4=9Bch=20K=C3=A1n=C4=9B?= Date: Fri, 12 Aug 2022 12:53:29 +0200 Subject: [PATCH] Add a mention that imagemagick is needed for HEIC images --- src/cli/dependencies.js | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/src/cli/dependencies.js b/src/cli/dependencies.js index b7ce6ca..3ec8889 100644 --- a/src/cli/dependencies.js +++ b/src/cli/dependencies.js @@ -18,6 +18,13 @@ const BINARIES = [ url: 'http://www.graphicsmagick.org', msg: '' }, + { + // optional to process HEIC files + mandatory: false, + cmd: 'magick', + url: 'https://imagemagick.org', + msg: 'You will not be able to process HEIC images.' + }, { // optional to process videos mandatory: false,