texlive[71963] Master/texmf-dist: texplate (3aug24)

commits+karl at tug.org commits+karl at tug.org
Sat Aug 3 22:28:16 CEST 2024


Revision: 71963
          https://tug.org/svn/texlive?view=revision&revision=71963
Author:   karl
Date:     2024-08-03 22:28:16 +0200 (Sat, 03 Aug 2024)
Log Message:
-----------
texplate (3aug24)

Modified Paths:
--------------
    trunk/Master/texmf-dist/doc/support/texplate/texplate-manual.pdf
    trunk/Master/texmf-dist/doc/support/texplate/texplate-manual.tex
    trunk/Master/texmf-dist/scripts/texplate/texplate.jar
    trunk/Master/texmf-dist/source/support/texplate/main/kotlin/org/islandoftex/texplate/util/MessageUtils.kt

Modified: trunk/Master/texmf-dist/doc/support/texplate/texplate-manual.pdf
===================================================================
(Binary files differ)

Modified: trunk/Master/texmf-dist/doc/support/texplate/texplate-manual.tex
===================================================================
--- trunk/Master/texmf-dist/doc/support/texplate/texplate-manual.tex	2024-08-02 23:41:59 UTC (rev 71962)
+++ trunk/Master/texmf-dist/doc/support/texplate/texplate-manual.tex	2024-08-03 20:28:16 UTC (rev 71963)
@@ -17,7 +17,7 @@
 \newcommand{\shortopt}[1]{{\ttfamily-#1}}
 \newcommand{\longopt}[1]{{\ttfamily{-}{-}#1}}
 \newcommand{\macro}[1]{{\ttfamily\textbackslash#1}}
-\newcommand{\texplateversion}{1.0.5}
+\newcommand{\texplateversion}{1.0.6}
 
 \title{A gentle introduction to \texplate:\\ a document structure creation tool}
 \author{Island of \TeX}
@@ -624,8 +624,16 @@
 
 \chapter*{Changelog}
 
-\section*{1.0.5 (current)}
+\section*{1.0.6 (current)}
 
+\subsection*{Fixed}
+
+\begin{itemize}
+\item Application version is now retrieved from the manifest (regression fix).
+\end{itemize}
+
+\section*{1.0.5 (2024-08-01)}
+
 \subsection*{Changed}
 
 \begin{itemize}

Modified: trunk/Master/texmf-dist/scripts/texplate/texplate.jar
===================================================================
(Binary files differ)

Modified: trunk/Master/texmf-dist/source/support/texplate/main/kotlin/org/islandoftex/texplate/util/MessageUtils.kt
===================================================================
--- trunk/Master/texmf-dist/source/support/texplate/main/kotlin/org/islandoftex/texplate/util/MessageUtils.kt	2024-08-02 23:41:59 UTC (rev 71962)
+++ trunk/Master/texmf-dist/source/support/texplate/main/kotlin/org/islandoftex/texplate/util/MessageUtils.kt	2024-08-03 20:28:16 UTC (rev 71963)
@@ -13,7 +13,8 @@
     // the message width
     private const val WIDTH = 60
     // the application version
-    private val VERSION = "1.0.5"
+    private val VERSION = MessageUtils::class.java.`package`.implementationVersion
+            ?: "DEVELOPMENT BUILD"
 
     /**
      * Prints a line in the terminal, without a line break.



More information about the tex-live-commits mailing list.