From 107d32c5dfec0f70a7576b172ea0d661eaf09a22 Mon Sep 17 00:00:00 2001 From: Khaled Hosny Date: Sun, 9 May 2010 21:08:16 +0300 Subject: Update the minimum luatex version We are now stabilizing against 0.60.x, also make the message less dramatic. --- News | 2 +- luaotfload.dtx | 9 ++++++--- 2 files changed, 7 insertions(+), 4 deletions(-) diff --git a/News b/News index b8ca7bc..9a07cff 100644 --- a/News +++ b/News @@ -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} -- cgit v1.2.3