From f445197b9eb9ccd9ea7fe6ec78a15a6109629488 Mon Sep 17 00:00:00 2001 From: Philipp Gesang Date: Fri, 3 Feb 2017 22:05:41 +0100 Subject: [db] increase version --- src/luaotfload-database.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/luaotfload-database.lua b/src/luaotfload-database.lua index 950d126..9c8c298 100644 --- a/src/luaotfload-database.lua +++ b/src/luaotfload-database.lua @@ -3680,7 +3680,7 @@ return { fonts.definers = fonts.definers or { resolvers = { } } names.blacklist = blacklist - names.version = 4 --- increase monotonically + names.version = 5 --- increase monotonically names.data = nil --- contains the loaded database names.lookups = nil --- contains the lookup cache -- cgit v1.2.3 From 19c26e507f2780ffc428636f7eea817415c18101 Mon Sep 17 00:00:00 2001 From: Philipp Gesang Date: Sat, 4 Feb 2017 12:11:26 +0100 Subject: [fontloader] add ad-hoc patch by Hans Fix attempt for issue #391 --- src/fontloader/misc/fontloader-font-dsp.lua | 1 + 1 file changed, 1 insertion(+) diff --git a/src/fontloader/misc/fontloader-font-dsp.lua b/src/fontloader/misc/fontloader-font-dsp.lua index 14e3a1d..13095f7 100644 --- a/src/fontloader/misc/fontloader-font-dsp.lua +++ b/src/fontloader/misc/fontloader-font-dsp.lua @@ -1733,6 +1733,7 @@ do sublookuplist[nofsublookups] = copy(h) -- we repack later sublookuphash[lookupid] = nofsublookups sublookupcheck[lookupid] = 1 + h = nofsublookups --- patch by Hans else report_issue(i,what,sequence,"missing") rule.lookups = nil -- cgit v1.2.3 From 0842c371132e76fbe67c357b61207e6d5730f553 Mon Sep 17 00:00:00 2001 From: Philipp Gesang Date: Sat, 4 Feb 2017 13:35:56 +0100 Subject: [doc] clarify design size handling --- doc/luaotfload.conf.rst | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/doc/luaotfload.conf.rst b/doc/luaotfload.conf.rst index fbef8ec..63472cf 100644 --- a/doc/luaotfload.conf.rst +++ b/doc/luaotfload.conf.rst @@ -153,8 +153,11 @@ and has no effect on the runtime behavior of Luaotfload, the flag should remain set. Most editors come with zlib support anyways. The setting ``designsize-dimen`` applies when looking up fonts from -families with design sizes. The default of DTP-style “big points” -can be changed for ``pt`` or even ``dd``. +families with design sizes. In Opentype, these are specified as +“decipoints” where one decipoint equals ten DTP style “big points”. +When indexing fonts these values are converted to ``sp``. In order to +treat the values as though they were specified in TeX points or Didot +points, set ``designsize-dimen`` to ``pt`` or ``dd``. The list of ``formats`` must be a comma separated sequence of strings containing one or more of these elements: -- cgit v1.2.3