diff options
-rw-r--r-- | Master/texmf-dist/doc/support/texplate/README.md | 4 | ||||
-rw-r--r-- | Master/texmf-dist/doc/support/texplate/texplate-manual.pdf | bin | 100184 -> 105290 bytes | |||
-rw-r--r-- | Master/texmf-dist/doc/support/texplate/texplate-manual.tex | 14 | ||||
-rw-r--r-- | Master/texmf-dist/scripts/texplate/texplate.jar | bin | 3360694 -> 3588303 bytes | |||
-rw-r--r-- | Master/texmf-dist/source/support/texplate/main/kotlin/org/islandoftex/texplate/model/handlers/BooleanHandler.kt | 2 |
5 files changed, 14 insertions, 6 deletions
diff --git a/Master/texmf-dist/doc/support/texplate/README.md b/Master/texmf-dist/doc/support/texplate/README.md index ac3db486c5b..43673ed9178 100644 --- a/Master/texmf-dist/doc/support/texplate/README.md +++ b/Master/texmf-dist/doc/support/texplate/README.md @@ -22,7 +22,7 @@ $ texplate \ \_\ \/_/ -TeXplate 1.0.3, a document structure creation tool +TeXplate 1.0.4, a document structure creation tool Copyright (c) 2020, Island of TeX All rights reserved. @@ -85,7 +85,7 @@ $ texplate -t article -o doc1.tex \ \_\ \/_/ -TeXplate 1.0.3, a document structure creation tool +TeXplate 1.0.4, a document structure creation tool Copyright (c) 2020, Island of TeX All rights reserved. diff --git a/Master/texmf-dist/doc/support/texplate/texplate-manual.pdf b/Master/texmf-dist/doc/support/texplate/texplate-manual.pdf Binary files differindex 98862816c4a..6f20dd4c2f3 100644 --- a/Master/texmf-dist/doc/support/texplate/texplate-manual.pdf +++ b/Master/texmf-dist/doc/support/texplate/texplate-manual.pdf diff --git a/Master/texmf-dist/doc/support/texplate/texplate-manual.tex b/Master/texmf-dist/doc/support/texplate/texplate-manual.tex index 6f89d361581..a56911ab727 100644 --- a/Master/texmf-dist/doc/support/texplate/texplate-manual.tex +++ b/Master/texmf-dist/doc/support/texplate/texplate-manual.tex @@ -17,7 +17,7 @@ \newcommand{\shortopt}[1]{{\ttfamily-#1}} \newcommand{\longopt}[1]{{\ttfamily{-}{-}#1}} \newcommand{\macro}[1]{{\ttfamily\textbackslash#1}} -\newcommand{\texplateversion}{1.0.3} +\newcommand{\texplateversion}{1.0.4} \title{A gentle introduction to \texplate:\\ a document structure creation tool} \author{Island of \TeX} @@ -417,7 +417,7 @@ The output (i.e., the template merged with the provided data) will be written to \item When running \texplate, this is the expected output to be displayed in the command line (note that the layout is slightly modified due to space constraints in this user manual): \begin{code} -TeXplate 1.0.3, a document structure creation tool +TeXplate 1.0.4, a document structure creation tool Copyright (c) 2020, Island of TeX All rights reserved. @@ -624,7 +624,15 @@ Happy \TeX ing with \texplate! \chapter*{Changelog} -\section*{1.0.3 (current)} +\section*{1.0.4 (current)} + +\subsection*{Fixed} + +\begin{itemize} +\item Resolve outdated dependency with vulnerability. +\end{itemize} + +\section*{1.0.3 (2020-08-07)} \subsection*{Added} diff --git a/Master/texmf-dist/scripts/texplate/texplate.jar b/Master/texmf-dist/scripts/texplate/texplate.jar Binary files differindex 7d484e4bd1a..a709b338682 100644 --- a/Master/texmf-dist/scripts/texplate/texplate.jar +++ b/Master/texmf-dist/scripts/texplate/texplate.jar diff --git a/Master/texmf-dist/source/support/texplate/main/kotlin/org/islandoftex/texplate/model/handlers/BooleanHandler.kt b/Master/texmf-dist/source/support/texplate/main/kotlin/org/islandoftex/texplate/model/handlers/BooleanHandler.kt index cbb74a532f9..aa8c7906479 100644 --- a/Master/texmf-dist/source/support/texplate/main/kotlin/org/islandoftex/texplate/model/handlers/BooleanHandler.kt +++ b/Master/texmf-dist/source/support/texplate/main/kotlin/org/islandoftex/texplate/model/handlers/BooleanHandler.kt @@ -15,6 +15,6 @@ class BooleanHandler : Handler { * @return A list. */ override fun apply(string: String?): Any? { - return listOf("true", "1", "yes").contains(string!!.toLowerCase()) + return listOf("true", "1", "yes").contains(string!!.lowercase()) } } |