diff options
| author | Khaled Hosny <khaledhosny@eglug.org> | 2010-05-09 21:08:16 +0300 | 
|---|---|---|
| committer | Khaled Hosny <khaledhosny@eglug.org> | 2010-05-09 21:08:16 +0300 | 
| commit | 107d32c5dfec0f70a7576b172ea0d661eaf09a22 (patch) | |
| tree | 2481c00331ab7136aec671a89de62e1b041551da | |
| parent | 492628138e402ddb8eaf7e9be4e3d2830e38f504 (diff) | |
| download | luaotfload-107d32c5dfec0f70a7576b172ea0d661eaf09a22.tar.gz | |
Update the minimum luatex version
We are now stabilizing against 0.60.x, also make the message less
dramatic.
| -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} | 
