From 9a086395644521854ca450821b552fcb67c95aea Mon Sep 17 00:00:00 2001 From: Vito Caputo Date: Tue, 3 Oct 2023 12:36:00 -0700 Subject: modules/asc: implement a simple ascii text module This just binds the simple libs/txt/txt.c stuff to a rendering module, exposing the minimal options as settings. It's handy for testing libs/txt/txt.c, and introduces a module requiring free-form strings potentially including newlines be handled properly as settings values. This latter aspect is important for improving settings syntax, any improvements must handle these more complicated scenarios and now there's a good test case for exercising those nuances. I suppose there might also be use in the creative process if you want a text element but haven't got around to hacking up a prettier module for it yet. Just use this one temporarily. See commit for some remaining TODO items. --- configure.ac | 1 + 1 file changed, 1 insertion(+) (limited to 'configure.ac') diff --git a/configure.ac b/configure.ac index 6129aed..9ebc957 100644 --- a/configure.ac +++ b/configure.ac @@ -42,6 +42,7 @@ AC_CONFIG_FILES([ src/libs/sig/Makefile src/libs/txt/Makefile src/modules/Makefile + src/modules/asc/Makefile src/modules/blinds/Makefile src/modules/checkers/Makefile src/modules/compose/Makefile -- cgit v1.2.1