From 3e312a9f9e58e33608cd0eb89659966df7dc5b2f Mon Sep 17 00:00:00 2001 From: Karl Berry Date: Tue, 27 Jul 2021 20:36:53 +0000 Subject: texplate (27jul21) git-svn-id: svn://tug.org/texlive/trunk@60096 c570f23f-e606-0410-a88d-b1316a301751 --- Master/texmf-dist/doc/support/texplate/README.md | 4 ++-- .../doc/support/texplate/texplate-manual.pdf | Bin 100184 -> 105290 bytes .../doc/support/texplate/texplate-manual.tex | 14 +++++++++++--- Master/texmf-dist/scripts/texplate/texplate.jar | Bin 3360694 -> 3588303 bytes .../texplate/model/handlers/BooleanHandler.kt | 2 +- 5 files changed, 14 insertions(+), 6 deletions(-) (limited to 'Master') 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 index 98862816c4a..6f20dd4c2f3 100644 Binary files a/Master/texmf-dist/doc/support/texplate/texplate-manual.pdf and b/Master/texmf-dist/doc/support/texplate/texplate-manual.pdf differ 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 index 7d484e4bd1a..a709b338682 100644 Binary files a/Master/texmf-dist/scripts/texplate/texplate.jar and b/Master/texmf-dist/scripts/texplate/texplate.jar differ 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()) } } -- cgit v1.2.3