diff options
-rw-r--r-- | NEWS | 5 | ||||
-rw-r--r-- | luaotfload.dtx | 9 | ||||
-rw-r--r-- | otfl-blacklist.cnf | 23 |
3 files changed, 17 insertions, 20 deletions
@@ -1,6 +1,11 @@ Change History -------------- +2013/04/27, luaotfload v1.3: + * blacklisting lingoes.ttf (segfaults) + * unblacklisting ttc fonts (warning: may break LuaTeX < 0.65) + * fixing font cache file name with non-ascii characters + 2013/04/25, luaotfload v1.29: * Reverting the unified resolver, as the database was rebuilt too often which made the compilation longer. This will come back improved diff --git a/luaotfload.dtx b/luaotfload.dtx index 3f31280..c0489e3 100644 --- a/luaotfload.dtx +++ b/luaotfload.dtx @@ -645,6 +645,15 @@ end --fonts.define.resolvers.file = fonts.define.resolvers.name % \end{macrocode} % +% We override the cleanname function as it outputs garbage for exotic font +% names +% +% \begin{macrocode} +containers.cleanname = function (name) + return (string.gsub(string.lower(name),"[^%w%d\128\255]+","-")) +end +% \end{macrocode} +% % Overriding some defaults set in \context code. % % \begin{macrocode} diff --git a/otfl-blacklist.cnf b/otfl-blacklist.cnf index f77de5b..f207c49 100644 --- a/otfl-blacklist.cnf +++ b/otfl-blacklist.cnf @@ -1,22 +1,5 @@ % Tackes ages to load -LastResort.ttf % a MacOSX font, but also available for free from unicode.org +LastResort.ttf % a MacOSX font, but also available for free from unicode.org +% Segfaults with LuaTeX 0.76 +lingoes.ttf -% Mac OS X TTC fonts, this list need to be filtered out -/Library/Fonts/AmericanTypewriter.ttc -/Library/Fonts/Baskerville.ttc -/Library/Fonts/Chalkboard.ttc -/Library/Fonts/Cochin.ttc -/Library/Fonts/Copperplate.ttc -/Library/Fonts/Didot.ttc -/Library/Fonts/Futura.ttc -/Library/Fonts/GillSans.ttc -/Library/Fonts/Hoefler Text.ttc -/Library/Fonts/MarkerFelt.ttc -/Library/Fonts/Optima.ttc -/Library/Fonts/Papyrus.ttc -/Library/Fonts/STHeiti Medium.ttc -/System/Library/Fonts/AquaKana.ttc -/System/Library/Fonts/HelveticaNeue.ttc -/System/Library/Fonts/LucidaGrande.ttc -/System/Library/Fonts/Menlo.ttc -/System/Library/Fonts/STHeiti Light.ttc |