summaryrefslogtreecommitdiff
path: root/support/lyluatex/lyluatexmanual.cls
diff options
context:
space:
mode:
Diffstat (limited to 'support/lyluatex/lyluatexmanual.cls')
-rw-r--r--support/lyluatex/lyluatexmanual.cls8
1 files changed, 4 insertions, 4 deletions
diff --git a/support/lyluatex/lyluatexmanual.cls b/support/lyluatex/lyluatexmanual.cls
index 8e1a85d290..16399004c2 100644
--- a/support/lyluatex/lyluatexmanual.cls
+++ b/support/lyluatex/lyluatexmanual.cls
@@ -1,11 +1,11 @@
%Lyluatex LaTeX class for the manual.
%
-% Copyright (C) 2015-2019 jperon and others (see CONTRIBUTORS.md)
+% Copyright (C) 2015-2022 jperon and others (see CONTRIBUTORS.md)
% License: MIT
% This file is part of lyluatex.
\NeedsTeXFormat{LaTeX2e}
-\ProvidesClass{lyluatexmanual}[2019/05/27 v1.0f] %%LYLUATEX_DATE LYLUATEX_VERSION
+\ProvidesClass{lyluatexmanual}[2022/10/30 v1.1] %%LYLUATEX_DATE LYLUATEX_VERSION
\LoadClass{lyluatexbase}
@@ -35,7 +35,7 @@
local PC = string.char(37)
local date_fmt = PC..'Y-'..PC..'m-'..PC..'d'
local p = io.popen('git log -n1 --date=short --format='..PC..'"ad"', 'r')
- tex.sprint(p and p:read('*a') or os.date(date_fmt))
+ tex.sprint(p and p:read('*a'):sub(1,-2) or os.date(date_fmt))
if p then p:close() end
}
-} \ No newline at end of file
+}