From 87cddce361c3b477029d13b27bdaa57190b2d74b Mon Sep 17 00:00:00 2001 From: Norbert Preining Date: Sun, 15 Mar 2020 03:01:24 +0000 Subject: CTAN sync 202003150301 --- systems/doc/luatex/graphics/luaharfbuzz.pdf | Bin 0 -> 187652 bytes systems/doc/luatex/luatex-backend.tex | 19 +- systems/doc/luatex/luatex-callbacks.tex | 2 +- systems/doc/luatex/luatex-fonts.tex | 10 +- systems/doc/luatex/luatex-harfbuzz.tex | 317 +++++++++++++++++++++ systems/doc/luatex/luatex-math.tex | 2 +- systems/doc/luatex/luatex-modifications.tex | 5 +- systems/doc/luatex/luatex-preamble.tex | 2 +- systems/doc/luatex/luatex-tex.tex | 36 ++- systems/doc/luatex/luatex.pdf | Bin 1563980 -> 1756287 bytes systems/doc/luatex/luatex.tex | 6 +- systems/win32/miktex/tm/packages/files.csv.lzma | Bin 530196 -> 530223 bytes .../win32/miktex/tm/packages/next/files.csv.lzma | Bin 529282 -> 530307 bytes systems/win32/miktex/tm/packages/next/pr.ini | 8 +- systems/win32/miktex/tm/packages/pr.ini | 10 +- systems/win32/w32tex/ChangeLog | 30 ++ 16 files changed, 406 insertions(+), 41 deletions(-) create mode 100644 systems/doc/luatex/graphics/luaharfbuzz.pdf create mode 100644 systems/doc/luatex/luatex-harfbuzz.tex (limited to 'systems') diff --git a/systems/doc/luatex/graphics/luaharfbuzz.pdf b/systems/doc/luatex/graphics/luaharfbuzz.pdf new file mode 100644 index 0000000000..72a9455ad5 Binary files /dev/null and b/systems/doc/luatex/graphics/luaharfbuzz.pdf differ diff --git a/systems/doc/luatex/luatex-backend.tex b/systems/doc/luatex/luatex-backend.tex index e99a95ed26..2606ff3847 100644 --- a/systems/doc/luatex/luatex-backend.tex +++ b/systems/doc/luatex/luatex-backend.tex @@ -627,7 +627,7 @@ pdfe.unencrypt(,userpassword,ownerpassword) \stopsubsection -\startsubsection[title={\type {getsize}, \type {getversion}, \type {getnofobjects}, \type {getnofpages}}] +\startsubsection[title={\type {getsize}, \type {getversion}, \type {getnofobjects}, \type {getnofpages}, \type{getmemoryusage}}] \libindex {getsize} \libindex {getversion} @@ -641,7 +641,7 @@ bytes = getsize() major, minor = getversion() n = getnofobjects() n = getnofpages() -bytes, waste = getnofpages() +bytes, waste = getmemoryusage() \stoptyping \stopsubsection @@ -677,7 +677,7 @@ A specific page can conveniently be reached with the next command, which returns a dictionary. The first argument is to be a page dictionary. \starttyping - = pdfe.getpage(,pagenumber) + = pdfe.getpage(,pagenumber) \stoptyping Another convenience command gives you the (bounding) box of a (normally page) @@ -685,7 +685,7 @@ which can be inheritted from the document itself. An example of a valid box name is \type {MediaBox}. \starttyping -pages = pdfe.getbox(,boxname) +pages = pdfe.getbox(,boxname) \stoptyping \stopsubsection @@ -747,7 +747,7 @@ print(pdfe.open("foo.pdf").Pages[1]) \stopsubsection -\startsubsection[title={\type {[open|close|readfrom][whole|]stream}}] +\startsubsection[title={\type {[open|close|readfrom|whole|]stream}}] \libindex {openstream} \libindex {closestream} @@ -797,8 +797,8 @@ type, value, detail = getfromarray(,index) \DB type \BC meaning \BC value \BC detail \NC \NR \NC \type {0} \NC none \NC nil \NC \NC \NR \NC \type {1} \NC null \NC nil \NC \NC \NR -\NC \type {2} \NC boolean \NC boolean \NC \NC \NR -\NC \type {3} \NC boolean \NC integer \NC \NC \NR +\NC \type {2} \NC boolean \NC 1 or 0 \NC \NC \NR +\NC \type {3} \NC integer \NC integer \NC \NC \NR \NC \type {4} \NC number \NC float \NC \NC \NR \NC \type {5} \NC name \NC string \NC \NC \NR \NC \type {6} \NC string \NC string \NC hex \NC \NR @@ -843,10 +843,11 @@ Because you can have unresolved references, a reference object can be resolved with: \starttyping - = getfromreference() +type, , detail = getfromreference() \stoptyping -So, you get back a new \type {pdfe} userdata object that you can query. +So, as second value you get back a new \type {pdfe} userdata object that you can +query. \stopsubsection diff --git a/systems/doc/luatex/luatex-callbacks.tex b/systems/doc/luatex/luatex-callbacks.tex index 965fba8062..6bacfe7f05 100644 --- a/systems/doc/luatex/luatex-callbacks.tex +++ b/systems/doc/luatex/luatex-callbacks.tex @@ -619,7 +619,7 @@ end It is ok to return nothing in which case you also need to flush the box or deal with it yourself. The prevdepth is also optional. Locations are \type {box}, \type {alignment}, \type {equation}, \type {equation_number} and \type -{post_linebreak}. +{post_linebreak}. You can pass \type {nil} instead of a node. \subsection{\cbk {post_linebreak_filter}} diff --git a/systems/doc/luatex/luatex-fonts.tex b/systems/doc/luatex/luatex-fonts.tex index e5b6e1cb29..400550a96d 100644 --- a/systems/doc/luatex/luatex-fonts.tex +++ b/systems/doc/luatex/luatex-fonts.tex @@ -728,14 +728,18 @@ font.setfont( n, f) Note that at the moment, each access to the \type {font.fonts} or call to \type {font.getfont} creates a \LUA\ table for the whole font unless you cached it. -This process can be quite slow. +If you want a copy of the internal data you can use \type {font.copyfont}: \startfunctioncall -
p = font.getparameters( n) +
f = font.copyfont( n) \stopfunctioncall This one will return a table of the parameters as known to \TEX. These can be -different from the ones in the cached table. +different from the ones in the cached table: + +\startfunctioncall +
p = font.getparameters( n) +\stopfunctioncall Also note the following: assignments can only be made to fonts that have already been defined in \TEX, but have not been accessed {\it at all\/} since that diff --git a/systems/doc/luatex/luatex-harfbuzz.tex b/systems/doc/luatex/luatex-harfbuzz.tex new file mode 100644 index 0000000000..c7ed992405 --- /dev/null +++ b/systems/doc/luatex/luatex-harfbuzz.tex @@ -0,0 +1,317 @@ +% language=uk + +\environment luatex-style + +\startcomponent luatex-harfbuzz + +\definelayer + [hbpage] + [width=\paperwidth, + height=\paperheight] + + +\setupbackgrounds + [page] + [background=hbpage, + state=start] + + +\startchapter[reference=harfbuzz,title={The HarfBuzz libraries}] + + +\startsection[title={The \type {luaharfbuzz} library}][library=luaharfbuzz] + +At the moment the documentation of the library is a raw "html-to-pdf" +rendering of the \type{index.html} file under \type{luaharfbuzz/docs} +folder of the source code. The example is almost the verbatim copy +of the file under \type{luaharfbuzz/examples}. +\page + + +\dorecurse{17}{% +\setlayer[hbpage][x=0mm,y=0mm,]{\externalfigure[graphics/luaharfbuzz.pdf][page=\recurselevel]} +\blank +\page[empty] +} + + +\startsubsection[title={Example}] + +The example is (a small modification of) the file \type{core_types.lua} +and it requires the file \type{harfbuzz.lua}; both are +under \type{luaharfbuzz} folder of the source code. +The fonts \type{notonastaliq.ttf} and \type{amiri-regular.ttf'} are under +\type{luaharfbuzz/fonts}. + + +\blank[3*big] + +\startbuffer[hbmod] +local hb = require("luaharfbuzz") + +-- special tags +hb.Tag.NONE = hb.Tag.new() + +-- special script codes (ISO 15924) +hb.Script.COMMON = hb.Script.new("Zyyy") +hb.Script.INHERITED = hb.Script.new("Zinh") +hb.Script.UNKNOWN = hb.Script.new("Zzzz") +hb.Script.INVALID = hb.Script.from_iso15924_tag(hb.Tag.NONE) + +-- directions +hb.Direction.INVALID = hb.Direction.new("invalid") +hb.Direction.LTR = hb.Direction.new("ltr") +hb.Direction.RTL = hb.Direction.new("rtl") +hb.Direction.TTB = hb.Direction.new("ttb") +hb.Direction.BTT = hb.Direction.new("btt") + +-- special languages +hb.Language.INVALID = hb.Language.new() + +hb.shape = function(font, buf, options) + options = options or { } + + -- Apply options to buffer if they are set. + if options.language then buf:set_language(options.language) end + if options.script then buf:set_script(options.script) end + if options.direction then buf:set_direction(options.direction) end + + -- Guess segment properties, in case all steps above have failed + -- to set the right properties. + buf:guess_segment_properties() + + local features = {} + + -- Parse features + if type(options.features) == "string" then + for fs in string.gmatch(options.features, '([^,]+)') do + local feature = hb.Feature.new(fs) + if feature then + table.insert(features, hb.Feature.new(fs)) + else + error(string.format("Invalid feature string: '%s'", fs)) + end + end + elseif type(options.features) == "table" then + features = options.features + elseif options.features then -- non-nil but not a string or table + error("Invalid features option") + end + + return hb.shape_full(font,buf,features,options.shapers or {}) +end + +-- For backward compatibility +hb.Buffer.HB_BUFFER_CLUSTER_LEVEL_MONOTONE_GRAPHEMES = hb.Buffer.CLUSTER_LEVEL_MONOTONE_GRAPHEMES +hb.Buffer.HB_BUFFER_CLUSTER_LEVEL_MONOTONE_CHARACTERS = hb.Buffer.CLUSTER_LEVEL_MONOTONE_CHARACTERS +hb.Buffer.HB_BUFFER_CLUSTER_LEVEL_CHARACTERS = hb.Buffer.CLUSTER_LEVEL_CHARACTERS +hb.Buffer.HB_BUFFER_CLUSTER_LEVEL_DEFAULT = hb.Buffer.CLUSTER_LEVEL_DEFAULT + +hb.Tag.HB_TAG_NONE = hb.Tag.NONE + +hb.Script.HB_SCRIPT_COMMON = hb.Script.COMMON +hb.Script.HB_SCRIPT_INHERITED = hb.Script.INHERITED +hb.Script.HB_SCRIPT_UNKNOWN = hb.Script.UNKNOWN +hb.Script.HB_SCRIPT_INVALID = hb.Script.INVALID + +hb.Language.HB_LANGUAGE_INVALID = hb.Language.INVALID + +hb.Direction.HB_DIRECTION_INVALID = hb.Direction.INVALID +hb.Direction.HB_DIRECTION_LTR = hb.Direction.LTR +hb.Direction.HB_DIRECTION_RTL = hb.Direction.RTL +hb.Direction.HB_DIRECTION_TTB = hb.Direction.TTB +hb.Direction.HB_DIRECTION_BTT = hb.Direction.BTT + +hb.Direction.HB_DIRECTION_IS_VALID = hb.Direction.is_valid +hb.Direction.HB_DIRECTION_IS_HORIZONTAL = hb.Direction.is_horizontal +hb.Direction.HB_DIRECTION_IS_VERTICAL = hb.Direction.is_vertical +hb.Direction.HB_DIRECTION_IS_FORWARD = hb.Direction.is_forward +hb.Direction.HB_DIRECTION_IS_BACKWARD = hb.Direction.is_backward + +hb.Buffer.get_glyph_infos_and_positions = hb.Buffer.get_glyphs + +return hb + +\stopbuffer + +\blank[3*big] + +The file \type{harfbuzz.lua}: +\typebuffer[hbmod] + + +\startbuffer[hbex] +local harfbuzz = require('harfbuzz') + +-- Harfbuzz API Version +print("Harfbuzz API version", harfbuzz.version()) + +-- Shapers available +print("Shapers:", harfbuzz.shapers()) + + +-- harfbuzz.Face +local face = harfbuzz.Face.new('notonastaliq.ttf') +print('\nFace upem = '..face:get_upem()) + +-- harfbuzz.Font +local font = harfbuzz.Font.new(face) +local xs, xy = font:get_scale() +print("\nDefault font scale = X: "..xs..", Y: "..xy) + +-- harfbuzz.Buffer +local text = "یہ" -- U+06CC U+06C1 +local buf = harfbuzz.Buffer.new() +buf:add_utf8(text) + +-- harfbuzz.shape (Shapes text) +print("\nShaping '"..text.."' set with Noto Nastaliq Urdu") +harfbuzz.shape(font, buf, { language = harfbuzz.Language.new("urd"), +script = harfbuzz.Script.new("Arab"), direction = harfbuzz.Direction.RTL}) + +local glyphs = buf:get_glyphs() +print("No. of glyphs", #glyphs) +for k,v in pairs(glyphs) do + print(k) + for k1,v1 in pairs(v) do + print("",k1,v1) + end +end + +local opts = { language = harfbuzz.Language.new("eng"), +script = harfbuzz.Script.new("Latn"), direction = harfbuzz.Direction.LTR } + +local amiri_face = harfbuzz.Face.new('amiri-regular.ttf') +local amiri_font = harfbuzz.Font.new(amiri_face) + +-- shaping '123' w/o features +print("\nShaping '123' set with Amiri Regular and no features") +buf= harfbuzz.Buffer.new() +buf:add_utf8("123") +harfbuzz.shape(amiri_font, buf, opts) +glyphs = buf:get_glyphs() +for k,v in pairs(glyphs) do + print(k) + for k1,v1 in pairs(v) do + print("",k1,v1) + end +end + + +-- shaping '123' with '+numr' (numerators) +print("\nShaping '123' set with Amiri Regular with 'numr' feature turned on") +buf= harfbuzz.Buffer.new() +buf:add_utf8("123") +opts.features = "+numr" +harfbuzz.shape(amiri_font, buf, opts) +glyphs = buf:get_glyphs() +for k,v in pairs(glyphs) do + print(k) + for k1,v1 in pairs(v) do + print("",k1,v1) + end +end +\stopbuffer + +The example: +\typebuffer[hbex] + + +\startbuffer[hbout] +Harfbuzz API version 2.6.4 +Shapers: graphite2 ot fallback + +Face upem = 2048 + +Default font scale = X: 2048, Y: 2048 + +Shaping 'یہ' set with Noto Nastaliq Urdu +No. of glyphs 4 +1 + flags 1.0 + cluster 2 + codepoint 277 + x_advance 472.0 + y_advance 0.0 + x_offset 0.0 + y_offset 0.0 +2 + cluster 0 + codepoint 19 + x_advance 0.0 + y_advance 0.0 + x_offset 310.0 + y_offset -383.0 +3 + cluster 0 + codepoint 985 + x_advance 0.0 + y_advance 0.0 + x_offset 0.0 + y_offset 0.0 +4 + cluster 0 + codepoint 316 + x_advance 731.0 + y_advance 0.0 + x_offset 0.0 + y_offset -68.0 + +Shaping '123' set with Amiri Regular and no features +1 + cluster 0 + codepoint 20 + x_advance 1090.0 + y_advance 0.0 + x_offset 0.0 + y_offset 0.0 +2 + cluster 1 + codepoint 21 + x_advance 1090.0 + y_advance 0.0 + x_offset 0.0 + y_offset 0.0 +3 + cluster 2 + codepoint 22 + x_advance 1090.0 + y_advance 0.0 + x_offset 0.0 + y_offset 0.0 + +Shaping '123' set with Amiri Regular with 'numr' feature turned on +1 + cluster 0 + codepoint 6673 + x_advance 600.0 + y_advance 0.0 + x_offset 0.0 + y_offset 0.0 +2 + cluster 1 + codepoint 6674 + x_advance 600.0 + y_advance 0.0 + x_offset 0.0 + y_offset 0.0 +3 + cluster 2 + codepoint 6675 + x_advance 600.0 + y_advance 0.0 + x_offset 0.0 + y_offset 0.0 + +\stopbuffer + +\blank[3*big] +The result: +\typebuffer[hbout] + + +\stopsubsection +\stopsection + +\stopchapter +\stopcomponent diff --git a/systems/doc/luatex/luatex-math.tex b/systems/doc/luatex/luatex-math.tex index 4623ce706d..e5999e72fd 100644 --- a/systems/doc/luatex/luatex-math.tex +++ b/systems/doc/luatex/luatex-math.tex @@ -1454,7 +1454,7 @@ $ $ \stopbuffer -\typebuffer +\typebuffer[script] results in \inlinebuffer[script]. diff --git a/systems/doc/luatex/luatex-modifications.tex b/systems/doc/luatex/luatex-modifications.tex index b7ce6ca2bd..747945f55f 100644 --- a/systems/doc/luatex/luatex-modifications.tex +++ b/systems/doc/luatex/luatex-modifications.tex @@ -262,7 +262,10 @@ backend are decoupled as much as possible. \startitem When \lpr {adjustspacing} has value~2, hz optimization will be applied to glyphs and kerns. When the value is~3, only glyphs will be treated. A value - smaller than~2 disables this feature. + smaller than~2 disables this feature. With value of 1, font expansion is + applied after \TEX's normal paragraph breaking routines have broken the + paragraph into lines. In this case, line breaks are identical to standard + \TEX\ behavior (as with \PDFTEX). \stopitem \startitem diff --git a/systems/doc/luatex/luatex-preamble.tex b/systems/doc/luatex/luatex-preamble.tex index 8293179776..e638952841 100644 --- a/systems/doc/luatex/luatex-preamble.tex +++ b/systems/doc/luatex/luatex-preamble.tex @@ -11,7 +11,7 @@ \topicindex{\LUA} This is a reference manual, not a tutorial. This means that we discuss changes -relative to traditonal \TEX\ and also present new functionality. As a consequence +relative to traditional \TEX\ and also present new functionality. As a consequence we will refer to concepts that we assume to be known or that might be explained later. diff --git a/systems/doc/luatex/luatex-tex.tex b/systems/doc/luatex/luatex-tex.tex index 0924896288..4e70243c6d 100644 --- a/systems/doc/luatex/luatex-tex.tex +++ b/systems/doc/luatex/luatex-tex.tex @@ -113,18 +113,6 @@ checking some mechanism going haywire. \stopsubsection -\startsubsection[title={Code page (Windows only)}] - -\libindex{getcodepage} - -The \type {getcodepage} returns the value from \type{GetOEMCP()} -(the current original equipment manufacturer (OEM) code page identifier for the operating system) -and the value from \type{GetACP()} (the current Windows ANSI code page identifier for the operating system). - -\stopsubsection - - - \stopsection \startsection[title={The \type {status} library}][library=status] @@ -1488,6 +1476,23 @@ tex.runtoks() When the \prm {tracingnesting} parameter is set to a value larger than~2 some information is reported about the state of the local loop. +This function has two optional arguments in case a token register is passed: + +\startfunctioncall +tex.runtoks(,force,grouped) +\stopfunctioncall + +Inside for instance an \type {\edef} the \type {runtoks} function behaves (at +least tries to) like it were an \type {\the}. This prevents unwanted side +effects: normally in such an definition tokens remain tokens and (for instance) +characters don't become nodes. With the second argument you can force the local +main loop, no matter what. The third argument adds a level of grouping. + +You can quit the local loop with \type {\endlocalcontrol} or from the \LUA\ end +with \type {tex.quittoks}. In that case you end one level up! Of course in the +end that can mean that you arrive at the main level in which case an extra end +will trigger a redundancy warning (not an abort!). + \subsubsection{\type {forcehmode}} \libindex{forcehmode} @@ -1952,15 +1957,16 @@ and|/|or console. \libindex{write} \startfunctioncall -texio.write( target, s, ...) +texio.write( target | stream, s, ...) texio.write( s, ...) \stopfunctioncall Without the \type {target} argument, writes all given strings to the same location(s) \TEX\ writes messages to at this moment. If \prm {batchmode} is in effect, it writes only to the log, otherwise it writes to the log and the -terminal. The optional \type {target} can be one of three possibilities: \type -{term}, \type {log} or \type {term and log}. +terminal. The optional \type {target} can be one of four possibilities: \type +{term}, \type {log}, \type {term and log} or a valid integer of a stream +opened for writing. Note: If several strings are given, and if the first of these strings is or might be one of the targets above, the \type {target} must be specified explicitly to diff --git a/systems/doc/luatex/luatex.pdf b/systems/doc/luatex/luatex.pdf index 3112101266..45255f6d3d 100644 Binary files a/systems/doc/luatex/luatex.pdf and b/systems/doc/luatex/luatex.pdf differ diff --git a/systems/doc/luatex/luatex.tex b/systems/doc/luatex/luatex.tex index 413af2b4a6..fb331cabff 100644 --- a/systems/doc/luatex/luatex.tex +++ b/systems/doc/luatex/luatex.tex @@ -44,6 +44,9 @@ % after adding primitives: context mult-prm.mkiv +% \enabledirectives[pdf.stripzeros] +% \enabledirectives[metapost.stripzeros] + \environment luatex-style \startmode[book] @@ -63,7 +66,7 @@ \startdocument [manual=Lua\TeX, status=stable, - version=1.11] + version=1.12] \startnotmode[*export] \component luatex-titlepage @@ -92,6 +95,7 @@ \component luatex-tex \component luatex-graphics \component luatex-fontloader + \component luatex-harfbuzz \component luatex-backend \stopbodymatter diff --git a/systems/win32/miktex/tm/packages/files.csv.lzma b/systems/win32/miktex/tm/packages/files.csv.lzma index 1b1fc82ab3..02f4cd82cf 100644 Binary files a/systems/win32/miktex/tm/packages/files.csv.lzma and b/systems/win32/miktex/tm/packages/files.csv.lzma differ diff --git a/systems/win32/miktex/tm/packages/next/files.csv.lzma b/systems/win32/miktex/tm/packages/next/files.csv.lzma index ba08f1040d..502913c053 100644 Binary files a/systems/win32/miktex/tm/packages/next/files.csv.lzma and b/systems/win32/miktex/tm/packages/next/files.csv.lzma differ diff --git a/systems/win32/miktex/tm/packages/next/pr.ini b/systems/win32/miktex/tm/packages/next/pr.ini index 6bdfed0a1e..da6d89a62a 100644 --- a/systems/win32/miktex/tm/packages/next/pr.ini +++ b/systems/win32/miktex/tm/packages/next/pr.ini @@ -2,9 +2,9 @@ [repository] -date=1584134168 +date=1584220674 lastupd=miktex-arctrl-bin-2.9 miktex-arctrl-bin-x64-2.9 miktex-asymptote-bin-2.9 miktex-asymptote-bin-x64-2.9 miktex-autosp-bin-2.9 miktex-autosp-bin-x64-2.9 miktex-axohelp-bin-2.9 miktex-axohelp-bin-x64-2.9 miktex-bibarts-bin-2.9 miktex-bibarts-bin-x64-2.9 miktex-bibtex-bin-2.9 miktex-bibtex-bin-x64-2.9 miktex-bibtex8bit-bin-2.9 miktex-bibtex8bit-bin-x64-2.9 miktex-bzip2-bin-2.9 miktex-bzip2-bin-x64-2.9 miktex-cairo-bin-2.9 miktex-cairo-bin-x64-2.9 miktex-chktex-bin-2.9 miktex-chktex-bin-x64-2.9 -lstdigest=f7917315c2f9d199a36fda70ed223abd -numpkg=3874 +lstdigest=b271e3b73d7d949f490587a3ef4c75c0 +numpkg=3875 relstate=next -version=7377 +version=7378 diff --git a/systems/win32/miktex/tm/packages/pr.ini b/systems/win32/miktex/tm/packages/pr.ini index 8330b24da1..d98647b294 100644 --- a/systems/win32/miktex/tm/packages/pr.ini +++ b/systems/win32/miktex/tm/packages/pr.ini @@ -2,9 +2,9 @@ [repository] -date=1584133924 -lastupd=autosp cases hitszthesis import langsci-avm oops pmhanguljamo pst-fractal scholax texfot tuda-ci unicode-alphabets quran udesoftec acro adjmulticol arara chemformula chemmacros cjk-gs-integrate -lstdigest=4058d8af99b14459841ec5cc55e0bf9b -numpkg=3874 +date=1584220322 +lastupd=acronym hep-paper l3backend l3build lua-ul pst-spirograph quran schemata scholax thesis-gwu tugboat unicode-data autosp cases hitszthesis import langsci-avm oops pmhanguljamo pst-fractal +lstdigest=aab422c5f6f6cfe46d882c331942b197 +numpkg=3875 relstate=stable -version=7377 +version=7378 diff --git a/systems/win32/w32tex/ChangeLog b/systems/win32/w32tex/ChangeLog index d5d4a37032..90f118f69d 100644 --- a/systems/win32/w32tex/ChangeLog +++ b/systems/win32/w32tex/ChangeLog @@ -1,5 +1,35 @@ W32TeX (x86 & x64) ChangeLog +[2020/03/13] +(01) aleph-w32.tar.xz + Update format files. +(02) latex-dev.tar.xz + Update format files. +(03) ltxpkgs.tar.xz + Update cases, l3backend, l3build, and tugboat. +(04) luatex-dev-w32.tar.xz + Update format files. +(05) luatex-exp-w32.tar.xz + Update format files. +(06) luatex-w32.tar.xz + Update format files. +(07) pdftex-w32.tar.xz + Update format files. +(08) pstricks.tar.xz + Update pst-spirograph. +(09) ptex-ng-w32.tar.xz + Update format files. +(10) ptex-w32.tar.xz + Update format files. +(11) tex4htk-w32.tar.xz + Update usepackage.4ht. +(12) uptex-w32.tar.xz + Update format files. +(13) web2c-lib.tar.xz + Update unicode-data. +(14) xetex-w32.tar.xz + Update format files. + [2020/03/12] (01) context.tar.xz Update curl.exe (7.69.1), and a format file for xetex. -- cgit v1.2.3