diff options
-rw-r--r-- | News | 2 | ||||
-rw-r--r-- | luaotfload.dtx | 9 |
2 files changed, 7 insertions, 4 deletions
@@ -1,7 +1,7 @@ History of the luaotfload bundle Currrent git, luaotfload v1.07: - * synchronizing with latest ConTeXt beta 2010.03.12 + * synchronizing with latest ConTeXt stable 2010.05.08 * adding support for microtypography * adding support for color and transparency * adding a script to generate a font database with TeX and system fonts diff --git a/luaotfload.dtx b/luaotfload.dtx index fae456b..d2cb55f 100644 --- a/luaotfload.dtx +++ b/luaotfload.dtx @@ -338,10 +338,13 @@ luatextra.provides_module(luaotfload.module) % % \begin{macrocode} -luaotfload.luatex_version = 51 +local luatex_version = 60 -if tex.luatexversion < luaotfload.luatex_version then - luatextra.module_warning('luaotfload', string.format('too old luatex version, "%s" is needed at least', luaotfload.luatex_version/100)) +if tex.luatexversion < luatex_version then + luatextra.module_warning('luaotfload', + string.format('LuaTeX v%.2f is old, v%.2f is recommended.', + tex.luatexversion/100, + luatex_version /100)) end % \end{macrocode} |