diff options
| -rw-r--r-- | NEWS | 16 | ||||
| -rw-r--r-- | luaotfload.dtx | 10 | 
2 files changed, 21 insertions, 5 deletions
| @@ -1,6 +1,22 @@  Change History  -------------- +2010/06/07, luaotfload v1.10: +    * provide a fonts.names.scan(dir) function that temporally loads fonts +      from the specified dir into the names database +    * Log loaded font file before attempting to open it +    * fix XeTeX's square brackets syntax so that it doesn't trigger database +      update +    * fix loading fonts with absolute path +    * add \fontdimen8 support, for XeTeX compatibility +    * be more verbose when updating the font database +    * improve fonts.conf parsing +    * make sure when a TFM font is requested we don't end up loading a non-TFM +      font with a similar name instead +    * Remove --fc-cache option from mkluatexfontdb.lua, since we no longer use +      fontconfig tools +    * misc. bug fixes +  2010/05/30, luaotfload v1.09:      * the last release didn't even load      * fix passing --destdir to mkluatexfontdb diff --git a/luaotfload.dtx b/luaotfload.dtx index 7f6f591..874843b 100644 --- a/luaotfload.dtx +++ b/luaotfload.dtx @@ -35,7 +35,7 @@  \input docstrip.tex  \Msg{************************************************************************}  \Msg{* Installation} -\Msg{* Package: luaotfload 2010/05/31 v1.10 ConTeXt font loading system} +\Msg{* Package: luaotfload 2010/06/07 v1.10 ConTeXt font loading system}  \Msg{************************************************************************}  \keepsilent @@ -102,7 +102,7 @@ and the derived files  %<*driver>  \NeedsTeXFormat{LaTeX2e}  \ProvidesFile{luaotfload.drv}% -  [2010/05/31 v1.10 ConTeXt font loading system]% +  [2010/06/07 v1.10 ConTeXt font loading system]%  \documentclass{ltxdoc}  \usepackage{metalogo,multicol,mdwlist,fancyvrb}  \usepackage[colorlinks=true]{hyperref} @@ -140,7 +140,7 @@ and the derived files  % \GetFileInfo{luaotfload.drv}  %  % \title{The \textsf{luaotfload} package} -% \date{2010/05/31 v1.10} +% \date{2010/06/07 v1.10}  % \author{     Elie Roux\footnote{\texttt{elie.roux@telecom-bretagne.eu}}  %         \and Khaled Hosny\footnote{\texttt{khaledhosny@eglug.org}}}  % @@ -412,7 +412,7 @@ module('luaotfload', package.seeall)  luaotfload.module = {      name          = "luaotfload",      version       = 1.10, -    date          = "2010/05/31", +    date          = "2010/06/07",      description   = "ConTeXt font loading system.",      author        = "Elie Roux & Hans Hagen",      copyright     = "Elie Roux", @@ -653,7 +653,7 @@ end  \else    \NeedsTeXFormat{LaTeX2e}    \ProvidesPackage{luaotfload}% -    [2010/05/31 v1.10 ConTeXt font loading system] +    [2010/06/07 v1.10 ConTeXt font loading system]    \RequirePackage{luatextra}  \fi | 
