diff options
author | Philipp Gesang <phg42.2a@gmail.com> | 2014-07-16 20:09:01 +0200 |
---|---|---|
committer | Philipp Gesang <phg42.2a@gmail.com> | 2014-07-16 20:09:01 +0200 |
commit | a9a61c97b8e07294a2f362d1ac39a9ece15dc999 (patch) | |
tree | 5e9f4d685412fc87278819d4f11ef1ed22feef37 /src/luaotfload-main.lua | |
parent | 2e932fd1f0ea473255313c65425d3a6d4521298a (diff) | |
parent | 95c6d7f9eefcac7a3fd042917df15166935d690d (diff) | |
download | luaotfload-a9a61c97b8e07294a2f362d1ac39a9ece15dc999.tar.gz |
Merge pull request #235 from phi-gamma/master
fixes
Diffstat (limited to 'src/luaotfload-main.lua')
-rw-r--r-- | src/luaotfload-main.lua | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/src/luaotfload-main.lua b/src/luaotfload-main.lua index d1cba4c..0d81abb 100644 --- a/src/luaotfload-main.lua +++ b/src/luaotfload-main.lua @@ -4,7 +4,7 @@ -- REQUIREMENTS: luatex v.0.79 or later; packages lualibs, luatexbase -- AUTHOR: Élie Roux, Khaled Hosny, Philipp Gesang -- VERSION: same as Luaotfload --- MODIFIED: 2014-07-13 15:35:13+0200 +-- MODIFIED: 2014-07-16 19:48:30+0200 ----------------------------------------------------------------------- -- --- Note: @@ -48,11 +48,12 @@ local initial_log_level = 0 luaotfload = luaotfload or { } local luaotfload = luaotfload luaotfload.log = luaotfload.log or { } +luaotfload.version = "2.5-1" -- FIXME version belongs in common init luaotfload.module = { name = "luaotfload-main", - version = 2.50000, - date = "2014/07/13", + version = 2.50001, + date = "2014/07/16", description = "OpenType layout system.", author = "Elie Roux & Hans Hagen", copyright = "Elie Roux", @@ -100,7 +101,7 @@ luaotfload.log.tex = { --doc]]-- -local min_luatex_version = 76 +local min_luatex_version = 79 if tex.luatexversion < min_luatex_version then warning ("LuaTeX v%.2f is old, v%.2f or later is recommended.", |