summaryrefslogtreecommitdiff
path: root/Master
diff options
context:
space:
mode:
authorKarl Berry <karl@freefriends.org>2021-07-27 20:36:53 +0000
committerKarl Berry <karl@freefriends.org>2021-07-27 20:36:53 +0000
commit3e312a9f9e58e33608cd0eb89659966df7dc5b2f (patch)
tree67e7f259f14561f99eb8971e5bcd1275cbffd348 /Master
parentc5b5e3fd195d647f3107171ca73a29b83bf4d7b3 (diff)
texplate (27jul21)
git-svn-id: svn://tug.org/texlive/trunk@60096 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master')
-rw-r--r--Master/texmf-dist/doc/support/texplate/README.md4
-rw-r--r--Master/texmf-dist/doc/support/texplate/texplate-manual.pdfbin100184 -> 105290 bytes
-rw-r--r--Master/texmf-dist/doc/support/texplate/texplate-manual.tex14
-rw-r--r--Master/texmf-dist/scripts/texplate/texplate.jarbin3360694 -> 3588303 bytes
-rw-r--r--Master/texmf-dist/source/support/texplate/main/kotlin/org/islandoftex/texplate/model/handlers/BooleanHandler.kt2
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
index 98862816c4a..6f20dd4c2f3 100644
--- a/Master/texmf-dist/doc/support/texplate/texplate-manual.pdf
+++ b/Master/texmf-dist/doc/support/texplate/texplate-manual.pdf
Binary files 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
--- a/Master/texmf-dist/scripts/texplate/texplate.jar
+++ b/Master/texmf-dist/scripts/texplate/texplate.jar
Binary files 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())
}
}