diff options
author | Juan J. Martinez <jjm@usebox.net> | 2021-10-31 12:07:37 +0000 |
---|---|---|
committer | Juan J. Martinez <jjm@usebox.net> | 2021-10-31 12:07:37 +0000 |
commit | 9a817b0e70b7accea009b51bf7112458d38ca54c (patch) | |
tree | 149e7d4b94736b075090665f0f27c95936153b09 | |
parent | d90c8cf92af7988ba016a9f8d94fffd49297d7c0 (diff) | |
download | ubox-msx-lib-9a817b0e70b7accea009b51bf7112458d38ca54c.tar.gz ubox-msx-lib-9a817b0e70b7accea009b51bf7112458d38ca54c.zip |
What's new? HTML page in the docs
-rw-r--r-- | CHANGES.md | 6 | ||||
-rw-r--r-- | docs/Makefile | 7 |
2 files changed, 9 insertions, 4 deletions
@@ -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 |