mirror of
https://github.com/eddelbuettel/binb
synced 2024-12-22 04:29:59 +01:00
added docs/Makefile, updated ChangeLog and NEWS
This commit is contained in:
parent
5e0337b55c
commit
b58eb6132b
14
ChangeLog
14
ChangeLog
@ -1,10 +1,20 @@
|
||||
2018-09-26 Dirk Eddelbuettel <edd@debian.org>
|
||||
|
||||
* docs/Makefile: Auto-create gif files with correct specs
|
||||
|
||||
2018-09-26 Mikko Korpela <mvkorpel@iki.fi>
|
||||
|
||||
* docs/metropolis_minimal.gif: Recreated with correct use of display
|
||||
* docs/iqss_minimal.gif: Ditto
|
||||
* docs/presento_minimal.gif: Ditto
|
||||
|
||||
2018-09-24 Dirk Eddelbuettel <edd@debian.org>
|
||||
|
||||
* inst/rmarkdown/templates/presento/skeleton/presento.sty: Tweaks
|
||||
* inst/rmarkdown/templates/presento/skeleton/skeleton.Rmd: Ditto
|
||||
|
||||
* inst/presentoDemo/presentoDemo.Rmd: Longer demo
|
||||
* inst/presentoDemo/presentoDemo.pdf: Ditto
|
||||
* inst/presentoDemo/presento_demo.Rmd: Longer demo
|
||||
* inst/presentoDemo/presento_demo.pdf: Ditto
|
||||
|
||||
* docs/presento_minimal.pdf: Short demo for README
|
||||
* docs/presento_minimal.gif: Ditto
|
||||
|
15
docs/Makefile
Normal file
15
docs/Makefile
Normal file
@ -0,0 +1,15 @@
|
||||
## Simple Makefile to create animated gif files from pdf files
|
||||
##
|
||||
## Special thanks to Mikko Korpela for the hint concerning the 'density'
|
||||
## option in pull request #5 resulting in much crisper gif files
|
||||
##
|
||||
## Dirk Eddelbuettel, Sep 2018, GPL-2'ed
|
||||
|
||||
pdfs = `ls *pdf`
|
||||
gifs = $(pdfs:.pdf=.gif)
|
||||
|
||||
|
||||
all: ${gifs}
|
||||
|
||||
%.gif: %.pdf
|
||||
convert -density 127 -delay 200 $< $@
|
@ -5,7 +5,10 @@
|
||||
|
||||
\section{Changes in binb version 0.0.2 (2018-xx-yy)}{
|
||||
\itemize{
|
||||
\item Added support for 'Presento' theme by Ratul Saha
|
||||
\item Added support for 'Presento' theme by Ratul Saha (\ghpr{4})
|
||||
\item Longer vignettes were added to the docs/ directory
|
||||
\item The gif files in docs/ were regenerated with the density
|
||||
argument to convert set to 127 (Mikko Korpela in \ghpr{5})
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user