summaryrefslogtreecommitdiff
path: root/support
diff options
context:
space:
mode:
authorNorbert Preining <norbert@preining.info>2023-03-02 03:04:09 +0000
committerNorbert Preining <norbert@preining.info>2023-03-02 03:04:09 +0000
commitfe8af26a7b8f32a0cc1b761e3ffb95ed0867a845 (patch)
tree35bb91961c5021c2b0f6a620d9c732a5567222b9 /support
parent37485ae5d642200a29ffc623bae1150d9e8e7978 (diff)
CTAN sync 202303020304
Diffstat (limited to 'support')
-rw-r--r--support/lyluatex/LICENSE2
-rw-r--r--support/lyluatex/lyluatex.lua12
-rw-r--r--support/lyluatex/lyluatex.pdfbin2028734 -> 2028732 bytes
-rw-r--r--support/lyluatex/lyluatex.sty4
-rw-r--r--support/lyluatex/lyluatex.tex2
-rw-r--r--support/lyluatex/lyluatexbase.cls4
-rw-r--r--support/lyluatex/lyluatexmanual.cls4
7 files changed, 14 insertions, 14 deletions
diff --git a/support/lyluatex/LICENSE b/support/lyluatex/LICENSE
index 9193cccea3..1ff8db6931 100644
--- a/support/lyluatex/LICENSE
+++ b/support/lyluatex/LICENSE
@@ -1,6 +1,6 @@
The MIT License (MIT)
-Copyright (c) 2015--2022 jperon and others
+Copyright (c) 2015--2023 jperon and others
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
diff --git a/support/lyluatex/lyluatex.lua b/support/lyluatex/lyluatex.lua
index b6188b71d6..c67613b3b5 100644
--- a/support/lyluatex/lyluatex.lua
+++ b/support/lyluatex/lyluatex.lua
@@ -1,11 +1,11 @@
-- luacheck: ignore ly log self luatexbase internalversion font fonts tex token kpse status ly_opts
local err, warn, info, log = luatexbase.provides_module({
name = "lyluatex",
- version = '1.1.2', --LYLUATEX_VERSION
- date = "2022/12/21", --LYLUATEX_DATE
+ version = '1.1.3', --LYLUATEX_VERSION
+ date = "2023/03/01", --LYLUATEX_DATE
description = "Module lyluatex.",
author = "The Gregorio Project − (see Contributors.md)",
- copyright = "2015-2022 - jperon and others",
+ copyright = "2015-2023 - jperon and others",
license = "MIT",
})
@@ -106,10 +106,11 @@ end
local function extract_includepaths(includepaths)
includepaths = includepaths:explode(',')
+ local cfd
if lib.tex_engine.dist == 'MiKTeX' then
- local cfd = Score.currfiledir:gsub('^$', '.\\')
+ cfd = Score.currfiledir:gsub('^$', '.\\')
else
- local cfd = Score.currfiledir:gsub('^$', './')
+ cfd = Score.currfiledir:gsub('^$', './')
end
table.insert(includepaths, 1, cfd)
@@ -134,7 +135,6 @@ local function includes_parse(list)
]]
list = list:explode(',')
for _, included_file in ipairs(list) do
- warn(included_file)
includes = includes .. '\\include "'..included_file..'.ly"\n'
end
end
diff --git a/support/lyluatex/lyluatex.pdf b/support/lyluatex/lyluatex.pdf
index 88d11e9e04..6831174df1 100644
--- a/support/lyluatex/lyluatex.pdf
+++ b/support/lyluatex/lyluatex.pdf
Binary files differ
diff --git a/support/lyluatex/lyluatex.sty b/support/lyluatex/lyluatex.sty
index dd2a710dd3..58aaeb6b5d 100644
--- a/support/lyluatex/lyluatex.sty
+++ b/support/lyluatex/lyluatex.sty
@@ -1,11 +1,11 @@
%Lyluatex LaTeX style.
%
-% Copyright (C) 2015-2022 jperon and others (see CONTRIBUTORS.md)
+% Copyright (C) 2015-2023 jperon and others (see CONTRIBUTORS.md)
% License: MIT
% This file is part of lyluatex.
\NeedsTeXFormat{LaTeX2e}%
-\ProvidesPackage{lyluatex}[2022/12/21 v1.1.2] %%LYLUATEX_DATE LYLUATEX_VERSION
+\ProvidesPackage{lyluatex}[2023/03/01 v1.1.3] %%LYLUATEX_DATE LYLUATEX_VERSION
% Dependencies
\RequirePackage{graphicx}
diff --git a/support/lyluatex/lyluatex.tex b/support/lyluatex/lyluatex.tex
index f31e5b7a04..80e891e21c 100644
--- a/support/lyluatex/lyluatex.tex
+++ b/support/lyluatex/lyluatex.tex
@@ -93,7 +93,7 @@
\apptocmd{\@title}{\par {\large #1 \par}}{}{}
}
\makeatother
-\subtitle{1.1.2}
+\subtitle{1.1.3}
\author{Fr.~Jacques Peron \and Urs Liska \and Br. Samuel Springuel}
\date{\lyluatexmanualdate}
diff --git a/support/lyluatex/lyluatexbase.cls b/support/lyluatex/lyluatexbase.cls
index aeae5786ac..d60f554e3c 100644
--- a/support/lyluatex/lyluatexbase.cls
+++ b/support/lyluatex/lyluatexbase.cls
@@ -1,11 +1,11 @@
%Lyluatex LaTeX class.
%
-% Copyright (C) 2015-2022 jperon and others (see CONTRIBUTORS.md)
+% Copyright (C) 2015-2023 jperon and others (see CONTRIBUTORS.md)
% License: MIT
% This file is part of lyluatex.
\NeedsTeXFormat{LaTeX2e}
-\ProvidesClass{lyluatexbase}[2022/12/21 v1.1.2] %%LYLUATEX_DATE LYLUATEX_VERSION
+\ProvidesClass{lyluatexbase}[2023/03/01 v1.1.3] %%LYLUATEX_DATE LYLUATEX_VERSION
\LoadClass[DIV=11]{scrartcl}
\RequirePackage{lyluatex}
diff --git a/support/lyluatex/lyluatexmanual.cls b/support/lyluatex/lyluatexmanual.cls
index 6081a3549b..de49a2c11d 100644
--- a/support/lyluatex/lyluatexmanual.cls
+++ b/support/lyluatex/lyluatexmanual.cls
@@ -1,11 +1,11 @@
%Lyluatex LaTeX class for the manual.
%
-% Copyright (C) 2015-2022 jperon and others (see CONTRIBUTORS.md)
+% Copyright (C) 2015-2023 jperon and others (see CONTRIBUTORS.md)
% License: MIT
% This file is part of lyluatex.
\NeedsTeXFormat{LaTeX2e}
-\ProvidesClass{lyluatexmanual}[2022/12/21 v1.1.2] %%LYLUATEX_DATE LYLUATEX_VERSION
+\ProvidesClass{lyluatexmanual}[2023/03/01 v1.1.3] %%LYLUATEX_DATE LYLUATEX_VERSION
\LoadClass{lyluatexbase}