diff options
| -rw-r--r-- | NEWS | 3 | ||||
| -rw-r--r-- | luaotfload-auxiliary.lua | 2 | ||||
| -rw-r--r-- | luaotfload-colors.lua | 2 | ||||
| -rw-r--r-- | luaotfload-database.lua | 2 | ||||
| -rw-r--r-- | luaotfload-extralibs.lua | 2 | ||||
| -rw-r--r-- | luaotfload-features.lua | 2 | ||||
| -rw-r--r-- | luaotfload-letterspace.lua | 2 | ||||
| -rw-r--r-- | luaotfload-loaders.lua | 2 | ||||
| -rw-r--r-- | luaotfload-override.lua | 2 | ||||
| -rwxr-xr-x | luaotfload-tool.lua | 2 | ||||
| -rw-r--r-- | luaotfload-tool.rst | 4 | ||||
| -rw-r--r-- | luaotfload.dtx | 12 | 
12 files changed, 19 insertions, 18 deletions
| @@ -1,8 +1,9 @@  Change History  -------------- -2013/??/??, git tip +2013/07/10, luaotfload v2.3a      * Detect LuaJIT interpreter (LuaJITTeX) +    * Self-test functionality for luaotfload-tool.lua (option  ``--diagnose``)  2013/07/03, luaotfload v2.3:      * New experimental lookups: ``kpse`` (kpathsea), ``my`` (callback) diff --git a/luaotfload-auxiliary.lua b/luaotfload-auxiliary.lua index 8fc8477..d6c8eaa 100644 --- a/luaotfload-auxiliary.lua +++ b/luaotfload-auxiliary.lua @@ -4,7 +4,7 @@  --  DESCRIPTION:  part of luaotfload  -- REQUIREMENTS:  luaotfload 2.3  --       AUTHOR:  Khaled Hosny, Élie Roux, Philipp Gesang ---      VERSION:  2.3 +--      VERSION:  2.3a  --      CREATED:  2013-05-01 14:40:50+0200  -----------------------------------------------------------------------  -- diff --git a/luaotfload-colors.lua b/luaotfload-colors.lua index d3e77b0..b95e836 100644 --- a/luaotfload-colors.lua +++ b/luaotfload-colors.lua @@ -1,5 +1,5 @@  if not modules then modules = { } end modules ['luaotfload-colors'] = { -    version   = 2.3, +    version   = "2.3a",      comment   = "companion to luaotfload.lua (font color)",      author    = "Khaled Hosny, Elie Roux, Philipp Gesang",      copyright = "Luaotfload Development Team", diff --git a/luaotfload-database.lua b/luaotfload-database.lua index 7215e11..e0b977b 100644 --- a/luaotfload-database.lua +++ b/luaotfload-database.lua @@ -1,5 +1,5 @@  if not modules then modules = { } end modules ['luaotfload-database'] = { -    version   = 2.3, +    version   = "2.3a",      comment   = "companion to luaotfload.lua",      author    = "Khaled Hosny, Elie Roux, Philipp Gesang",      copyright = "Luaotfload Development Team", diff --git a/luaotfload-extralibs.lua b/luaotfload-extralibs.lua index 3204229..3769e06 100644 --- a/luaotfload-extralibs.lua +++ b/luaotfload-extralibs.lua @@ -1,5 +1,5 @@  if not modules then modules = { } end modules ["extralibs"] = { -    version   = 2.3, +    version   = "2.3a",      comment   = "companion to luaotfload.lua",      author    = "Hans Hagen, Philipp Gesang",      copyright = "PRAGMA ADE / ConTeXt Development Team", diff --git a/luaotfload-features.lua b/luaotfload-features.lua index 690a33c..a07992b 100644 --- a/luaotfload-features.lua +++ b/luaotfload-features.lua @@ -1,5 +1,5 @@  if not modules then modules = { } end modules ["features"] = { -    version   = 2.3, +    version   = "2.3a",      comment   = "companion to luaotfload.lua",      author    = "Hans Hagen, Khaled Hosny, Elie Roux, Philipp Gesang",      copyright = "PRAGMA ADE / ConTeXt Development Team", diff --git a/luaotfload-letterspace.lua b/luaotfload-letterspace.lua index e4ebf0b..880c7bd 100644 --- a/luaotfload-letterspace.lua +++ b/luaotfload-letterspace.lua @@ -1,5 +1,5 @@  if not modules then modules = { } end modules ['letterspace'] = { -    version   = 2.3, +    version   = "2.3a",      comment   = "companion to luaotfload.lua",      author    = "Hans Hagen, PRAGMA-ADE, Hasselt NL; adapted by Philipp Gesang",      copyright = "PRAGMA ADE / ConTeXt Development Team", diff --git a/luaotfload-loaders.lua b/luaotfload-loaders.lua index 0ab1505..63e1d08 100644 --- a/luaotfload-loaders.lua +++ b/luaotfload-loaders.lua @@ -1,5 +1,5 @@  if not modules then modules = { } end modules ["loaders"] = { -    version   = 2.3, +    version   = "2.3a",      comment   = "companion to luaotfload.lua",      author    = "Hans Hagen, Khaled Hosny, Elie Roux, Philipp Gesang",      copyright = "PRAGMA ADE / ConTeXt Development Team", diff --git a/luaotfload-override.lua b/luaotfload-override.lua index adc0426..f647826 100644 --- a/luaotfload-override.lua +++ b/luaotfload-override.lua @@ -1,5 +1,5 @@  if not modules then modules = { } end modules ['luat-ovr'] = { -    version   = 2.3, +    version   = "2.3a",      comment   = "companion to luatex-*.tex",      author    = "Khaled Hosny, Elie Roux, Philipp Gesang",      copyright = "Luaotfload Development Team", diff --git a/luaotfload-tool.lua b/luaotfload-tool.lua index 060b8a0..96cc9aa 100755 --- a/luaotfload-tool.lua +++ b/luaotfload-tool.lua @@ -4,7 +4,7 @@  --  DESCRIPTION:  database functionality  -- REQUIREMENTS:  luaotfload 2.2  --       AUTHOR:  Khaled Hosny, Élie Roux, Philipp Gesang ---      VERSION:  2.3 +--      VERSION:  2.3a  --      LICENSE:  GPL v2  --     MODIFIED:  2013-06-02 19:23:54+0200  ----------------------------------------------------------------------- diff --git a/luaotfload-tool.rst b/luaotfload-tool.rst index 27e0069..e81aa8d 100644 --- a/luaotfload-tool.rst +++ b/luaotfload-tool.rst @@ -6,9 +6,9 @@           generate and query the Luaotfload font names database  ----------------------------------------------------------------------- -:Date:      2013-06-02 +:Date:      2013-07-10  :Copyright: GPL v2.0 -:Version:   2.3 +:Version:   2.3a  :Manual section: 1  :Manual group: text processing diff --git a/luaotfload.dtx b/luaotfload.dtx index 5133c1d..c1d182b 100644 --- a/luaotfload.dtx +++ b/luaotfload.dtx @@ -40,7 +40,7 @@  \input docstrip.tex  \Msg{************************************************************************}  \Msg{* Installation} -\Msg{* Package: luaotfload v2.3 OpenType layout system} +\Msg{* Package: luaotfload v2.3a OpenType layout system}  \Msg{************************************************************************}  \keepsilent @@ -111,7 +111,7 @@ and the derived files  %<*driver>  \NeedsTeXFormat{LaTeX2e}  \ProvidesFile{luaotfload.drv}% -  [2013/05/23 v2.3d OpenType layout system]% +  [2013/07/10 v2.3a OpenType layout system]%  \documentclass{ltxdoc}  \usepackage{metalogo,multicol,mdwlist,fancyvrb,xspace}  \usepackage[x11names]{xcolor} @@ -231,7 +231,7 @@ and the derived files  % \GetFileInfo{luaotfload.drv}  %  % \title{The \identifier{luaotfload} package} -% \date{2013/05/23 v2.3d} +% \date{2013/07/10 v2.3a}  % \author{Elie Roux · Khaled Hosny · Philipp Gesang\\  %         Home:      \url{https://github.com/lualatex/luaotfload}\\  %         Support:   \email{lualatex-dev@tug.org}} @@ -1478,8 +1478,8 @@ config.luaotfload.index_file      = config.luaotfload.index_file       or "luaot  luaotfload.module = {      name          = "luaotfload", -    version       = 2.3, -    date          = "2013/07/06", +    version       = 2.3a, +    date          = "2013/07/10",      description   = "OpenType layout system.",      author        = "Elie Roux & Hans Hagen",      copyright     = "Elie Roux", @@ -2069,7 +2069,7 @@ loadmodule"auxiliary.lua"   --- additionaly high-level functionality (new)  \else    \NeedsTeXFormat{LaTeX2e}    \ProvidesPackage{luaotfload}% -    [2013/05/23 v2.3d OpenType layout system] +    [2013/07/10 v2.3a OpenType layout system]    \RequirePackage{luatexbase}  \fi  \ifnum\luatexversion<76 | 
