diff options
author | Karl Berry <karl@freefriends.org> | 2022-11-07 20:28:16 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2022-11-07 20:28:16 +0000 |
commit | fd564106f892f61d00995f5bf92bbe09700339ab (patch) | |
tree | b13e65e0c9b16f899429f257b98fad538211d8a6 /Master/texmf-dist/scripts | |
parent | 27ec637011b26b2eab1579b7315375602fbd3051 (diff) |
lyluatex (7nov22)
git-svn-id: svn://tug.org/texlive/trunk@64965 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf-dist/scripts')
-rwxr-xr-x | Master/texmf-dist/scripts/lyluatex/lyluatex.lua | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Master/texmf-dist/scripts/lyluatex/lyluatex.lua b/Master/texmf-dist/scripts/lyluatex/lyluatex.lua index adb17a63a01..f947bde48ac 100755 --- a/Master/texmf-dist/scripts/lyluatex/lyluatex.lua +++ b/Master/texmf-dist/scripts/lyluatex/lyluatex.lua @@ -1,8 +1,8 @@ -- 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', --LYLUATEX_VERSION - date = "2022/10/30", --LYLUATEX_DATE + version = '1.1.1', --LYLUATEX_VERSION + date = "2022/11/07", --LYLUATEX_DATE description = "Module lyluatex.", author = "The Gregorio Project − (see Contributors.md)", copyright = "2015-2022 - jperon and others", @@ -1347,7 +1347,7 @@ end function ly.get_font_family(font_id) - return lib.fontinfo(font_id).shared.rawdata.metadata['familyname'] + return lib.fontinfo(font_id).fullname:match("[^-]*") end |