diff options
author | Karl Berry <karl@freefriends.org> | 2018-11-07 22:18:15 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2018-11-07 22:18:15 +0000 |
commit | 59ac7a1680db36bcf85d983ef9c6a98384b47ce5 (patch) | |
tree | 14b716fed6962e60ad9e1fcc5f85356f5e9fafc7 /Master/texmf-dist/tex | |
parent | 6b37f76e87d7642d856c60434cf62b19444289fd (diff) |
changelog (7nov18)
git-svn-id: svn://tug.org/texlive/trunk@49100 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf-dist/tex')
-rw-r--r-- | Master/texmf-dist/tex/latex/changelog/changelog.sty | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/Master/texmf-dist/tex/latex/changelog/changelog.sty b/Master/texmf-dist/tex/latex/changelog/changelog.sty index c28b37c146c..79830d82a7e 100644 --- a/Master/texmf-dist/tex/latex/changelog/changelog.sty +++ b/Master/texmf-dist/tex/latex/changelog/changelog.sty @@ -1,10 +1,14 @@ -\ProvidesPackage{changelog}[2018-10-26 0.2.1 Typesetting changelogs] +\ProvidesPackage{changelog}[2018-11-06 0.3.0 Typesetting changelogs] % Description: Provides the changelog environment for typesetting changelogs % License: GPL-3.0 % Homepage: https://github.com/9999years/latex-changelog % https://ctan.org/pkg/changelog % Maintainer: Rebecca Turner <637275@gmail.com> +\RequirePackage{xparse} +\RequirePackage{xkeyval} +\RequirePackage{kvoptions} + \newif\ifchangelog@color\changelog@colorfalse \DeclareOption{color}{\changelog@colortrue} \ProcessOptions @@ -30,7 +34,7 @@ } - \newcommand{\changelogyanked}{{\color{ChangelogSecurity}\fbox{YANKED}}} + \newcommand{\changelogyanked}{{\color{ChangelogSecurity}\fbox{\textbf{YANKED}}}} \else \newcommand{\@addversionshorthands}{ \newcommand{\added} {\item Added\ } @@ -40,6 +44,7 @@ \newcommand{\fixed} {\item Fixed\ } \newcommand{\security} {\item Security\ } } + \newcommand{\changelogyanked}{\fbox{\textbf{YANKED}}} \fi \define@cmdkeys{version}{author, version, date, changes} |