diff options
| -rw-r--r-- | NEWS | 9 | ||||
| -rw-r--r-- | luaotfload-auxiliary.lua | 4 | ||||
| -rw-r--r-- | luaotfload-colors.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 | ||||
| -rwxr-xr-x | luaotfload-tool.lua | 6 | ||||
| -rw-r--r-- | luaotfload-tool.rst | 4 | ||||
| -rw-r--r-- | luaotfload.dtx | 4 | ||||
| -rwxr-xr-x | mkglyphlist | 2 | 
11 files changed, 24 insertions, 15 deletions
@@ -1,6 +1,15 @@  Change History  -------------- +2013/xx/xx, luaotfload v2.3: +    * New experimental lookups: ``kpse`` (kpathsea), ``my`` (callback) +    * Precedence of texmf over system fonts can be requested +      using the ``--prefer-texmf`` option of luaotfload-tool +    * Resolve file names to full paths at later stage +    * Rewrite the output of ``\fontname`` via ``patch_font`` callback +    * Allow blacklisting directories +    * Drop compatibility layer +  2013/05/20, luaotfload v2.2:      * There is now a central, non-personal dev repo on github:        https://github.com/lualatex/luaotfload diff --git a/luaotfload-auxiliary.lua b/luaotfload-auxiliary.lua index 3597683..f310f1c 100644 --- a/luaotfload-auxiliary.lua +++ b/luaotfload-auxiliary.lua @@ -2,9 +2,9 @@  -----------------------------------------------------------------------  --         FILE:  luaotfload-auxiliary.lua  --  DESCRIPTION:  part of luaotfload --- REQUIREMENTS:  luaotfload 2.2 +-- REQUIREMENTS:  luaotfload 2.3  --       AUTHOR:  Khaled Hosny, Élie Roux, Philipp Gesang ---      VERSION:  2.2 +--      VERSION:  2.3  --      CREATED:  2013-05-01 14:40:50+0200  -----------------------------------------------------------------------  -- diff --git a/luaotfload-colors.lua b/luaotfload-colors.lua index 7bd5c1f..d3e77b0 100644 --- a/luaotfload-colors.lua +++ b/luaotfload-colors.lua @@ -1,5 +1,5 @@  if not modules then modules = { } end modules ['luaotfload-colors'] = { -    version   = 2.200, +    version   = 2.3,      comment   = "companion to luaotfload.lua (font color)",      author    = "Khaled Hosny, Elie Roux, Philipp Gesang",      copyright = "Luaotfload Development Team", diff --git a/luaotfload-extralibs.lua b/luaotfload-extralibs.lua index 84819f4..90dbf09 100644 --- a/luaotfload-extralibs.lua +++ b/luaotfload-extralibs.lua @@ -1,5 +1,5 @@  if not modules then modules = { } end modules ["extralibs"] = { -    version   = 2.201, +    version   = 2.3,      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 a70dace..81d1437 100644 --- a/luaotfload-features.lua +++ b/luaotfload-features.lua @@ -1,5 +1,5 @@  if not modules then modules = { } end modules ["features"] = { -    version   = 2.201, +    version   = 2.3,      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 8711646..e4ebf0b 100644 --- a/luaotfload-letterspace.lua +++ b/luaotfload-letterspace.lua @@ -1,5 +1,5 @@  if not modules then modules = { } end modules ['letterspace'] = { -    version   = 2.201, +    version   = 2.3,      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 b4ce0b2..0ab1505 100644 --- a/luaotfload-loaders.lua +++ b/luaotfload-loaders.lua @@ -1,5 +1,5 @@  if not modules then modules = { } end modules ["loaders"] = { -    version   = 2.200, +    version   = 2.3,      comment   = "companion to luaotfload.lua",      author    = "Hans Hagen, Khaled Hosny, Elie Roux, Philipp Gesang",      copyright = "PRAGMA ADE / ConTeXt Development Team", diff --git a/luaotfload-tool.lua b/luaotfload-tool.lua index e3f5a93..3eef577 100755 --- a/luaotfload-tool.lua +++ b/luaotfload-tool.lua @@ -4,9 +4,9 @@  --  DESCRIPTION:  database functionality  -- REQUIREMENTS:  luaotfload 2.2  --       AUTHOR:  Khaled Hosny, Élie Roux, Philipp Gesang ---      VERSION:  2.2 +--      VERSION:  2.3  --      LICENSE:  GPL v2 ---      CREATED:  2013-05-06 13:37:12+0200 +--     MODIFIED:  2013-06-02 19:23:54+0200  -----------------------------------------------------------------------  --[[doc-- @@ -135,7 +135,7 @@ require"luaotfload-override.lua"  --- this populates the logs.* namespace  require"luaotfload-database"  require"alt_getopt" -local version  = "2.2" -- same version number as luaotfload +local version  = "2.3" -- same version number as luaotfload  local names    = fonts.names  local db_src_out = names.path.dir.."/"..names.path.basename diff --git a/luaotfload-tool.rst b/luaotfload-tool.rst index 06ab1cc..9b03b37 100644 --- a/luaotfload-tool.rst +++ b/luaotfload-tool.rst @@ -6,9 +6,9 @@           generate and query the Luaotfload font names database  ----------------------------------------------------------------------- -:Date:      2013-05-06 +:Date:      2013-06-02  :Copyright: GPL v2.0 -:Version:   2.2 +:Version:   2.3  :Manual section: 1  :Manual group: text processing diff --git a/luaotfload.dtx b/luaotfload.dtx index 095ac23..70edf8c 100644 --- a/luaotfload.dtx +++ b/luaotfload.dtx @@ -1444,8 +1444,8 @@ config.luaotfload.prioritize      = config.luaotfload.prioritize       or "sys"  luaotfload.module = {      name          = "luaotfload", -    version       = 2.2, -    date          = "2013/05/23", +    version       = 2.3, +    date          = "2013/06/02",      description   = "OpenType layout system.",      author        = "Elie Roux & Hans Hagen",      copyright     = "Elie Roux", diff --git a/mkglyphlist b/mkglyphlist index 94aac39..8b89935 100755 --- a/mkglyphlist +++ b/mkglyphlist @@ -96,7 +96,7 @@ end  local file_header = [==[  if not modules then modules = { } end modules ["font-age"] = { -  version     = 2.200, +  version     = 2.300,    comment     = "part of the luaotfload package",    author      = "luaotfload team / mkglyphlist",    copyright   = "derived from %s",  | 
