From 9a817b0e70b7accea009b51bf7112458d38ca54c Mon Sep 17 00:00:00 2001 From: "Juan J. Martinez" Date: Sun, 31 Oct 2021 12:07:37 +0000 Subject: What's new? HTML page in the docs --- CHANGES.md | 6 ++++-- docs/Makefile | 7 +++++-- 2 files changed, 9 insertions(+), 4 deletions(-) diff --git a/CHANGES.md b/CHANGES.md index d5fa196..d4ec374 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,4 +1,6 @@ -# What's new? +## Release 1.1.9 - 2021-??-?? + + - Generate a "what's new?" HTML page in the docs ## Release 1.1.8 - 2021-10-31 @@ -64,5 +66,5 @@ ## Release 1.0 - 2020-12-30 - - initial import + - First public release diff --git a/docs/Makefile b/docs/Makefile index 41c9732..cec86df 100644 --- a/docs/Makefile +++ b/docs/Makefile @@ -1,4 +1,4 @@ -all: ubox-lib-ref.html spman-lib-ref.html mplayer-lib-ref.html extra-lib-ref.html tools-ref.html +all: ubox-lib-ref.html spman-lib-ref.html mplayer-lib-ref.html extra-lib-ref.html tools-ref.html changes.html ubox-lib-ref.html: ../include/ubox.h ../tools/hdoc.py footer.md header.html ../tools/hdoc.py --footer footer.md "ubox.lib reference" < ../include/ubox.h > reference.ubox.md @@ -20,7 +20,10 @@ tools-ref.html: ../tools/hdoc.py footer.md tools.md header.html ../tools/hdoc.py --header tools.md --footer footer.md "tools reference" < /dev/null > reference.tools.md pandoc -s -t html5 -c water.css -c monokai.css --toc --no-highlight -F ../tools/pandocfilter-pygments.py -B header.html reference.tools.md -o $@ +changes.html: ../CHANGES.md + pandoc -s -t html5 -c water.css -c monokai.css --toc --no-highlight -B header.html -M title:"What's new?" ../CHANGES.md -o $@ + clean: - rm -f *-lib-ref.html reference.*.md + rm -f *-lib-ref.html changes.html reference.*.md .PHONY: clean all -- cgit v1.2.3