From c63ca9bd9c064781f7aa8b2b96d1d9854e757db2 Mon Sep 17 00:00:00 2001 From: Robin Jarry Date: Sun, 20 Feb 2022 23:36:02 +0100 Subject: [PATCH] filters: rename plaintext to colorize This filter script is not compatible with the previous one. Rename it to avoid issues with existing configs. Fixes: bca93cd91536 ("filters: add a more complete plaintext filter") Signed-off-by: Robin Jarry --- Makefile | 2 +- filters/{plaintext => colorize} | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename filters/{plaintext => colorize} (100%) diff --git a/Makefile b/Makefile index 6d900db..58e51b2 100644 --- a/Makefile +++ b/Makefile @@ -89,9 +89,9 @@ install: $(DOCS) aerc install -m644 config/accounts.conf $(DESTDIR)$(SHAREDIR)/accounts.conf install -m644 config/aerc.conf $(DESTDIR)$(SHAREDIR)/aerc.conf install -m644 config/binds.conf $(DESTDIR)$(SHAREDIR)/binds.conf + install -m755 filters/colorize $(DESTDIR)$(SHAREDIR)/filters/colorize install -m755 filters/hldiff $(DESTDIR)$(SHAREDIR)/filters/hldiff install -m755 filters/html $(DESTDIR)$(SHAREDIR)/filters/html - install -m755 filters/plaintext $(DESTDIR)$(SHAREDIR)/filters/plaintext install -m644 templates/new_message $(DESTDIR)$(SHAREDIR)/templates/new_message install -m644 templates/quoted_reply $(DESTDIR)$(SHAREDIR)/templates/quoted_reply install -m644 templates/forward_as_body $(DESTDIR)$(SHAREDIR)/templates/forward_as_body diff --git a/filters/plaintext b/filters/colorize similarity index 100% rename from filters/plaintext rename to filters/colorize