summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Documentation updatesv1.07Khaled Hosny2010-05-121-39/+61
|
* Showing a log message only once (it used to be present 10s of times in the log)Elie Roux2010-05-111-1/+6
|
* Make sure the font exists on the diskKhaled Hosny2010-05-111-6/+14
| | | | | | | | Sometimes the database is outdated in the font no longer exits in the saved path, now we make sure the file exists before returning path to luatex. This way the user gets the good old "font not loadable" error, instead of mysterious backend error and program exit. Later we may try to update the database at this point.
* Avoid too long linesKhaled Hosny2010-05-111-23/+42
|
* Skip names database for TFM fontsKhaled Hosny2010-05-111-0/+5
| | | | | | | if a tfm (or ofm) files exists with the same name, skip font names database. closes #3
* Fix call to callback.add.Manuel Pégourié-Gonnard2010-05-101-1/+1
|
* luaextra -> lualibsKhaled Hosny2010-05-111-1/+1
|
* MinorKhaled Hosny2010-05-101-1/+1
|
* Not using luadirect anymoreElie Roux2010-05-101-2/+2
|
* Adapting to the new luatexbase packageElie Roux2010-05-102-15/+16
| | | | | * using the new luatexbase callback functions * fixing a tiny bug
* CosmeticsKhaled Hosny2010-05-101-12/+31
|
* Adaptation to luatexbase (just small changes) and removing functions that ↵Elie Roux2010-05-102-82/+8
| | | | are now in luaextra.
* All caps file nameKhaled Hosny2010-05-092-2/+2
| | | | For, foolish, consistency.
* Update the minimum luatex versionKhaled Hosny2010-05-092-4/+7
| | | | | We are now stabilizing against 0.60.x, also make the message less dramatic.
* TypoKhaled Hosny2010-05-091-1/+1
|
* Updating to latest ConTeXt stable (2010.05.08)Khaled Hosny2010-05-0913-269/+442
|
* Change the default cache pathKhaled Hosny2010-04-273-4/+5
| | | | | Per Manuel's suggestion, we now use TEXMVAR/luatex/generic/luaotfload/ instead of TEXMVAR/luatex-cache/latex/.
* Documentation update, few TODO's still.Khaled Hosny2010-04-091-50/+79
|
* Revert "Import ConTeXt math modules"Khaled Hosny2010-04-0513-148151/+0
| | | | | This code proved to cause harm than good; unicode-math is doing better without it. So, revert it back, until we are ready for it.
* Fix loading subfontsKhaled Hosny2010-04-041-8/+7
| | | | | | | Previously, we relied in the fact that origname contains the subfont in the form of |foo.otf(subfoo)| and that luatex would then load the right font, but this is not what the rest of the code expects and cause some bugs. We now return the filename and subfont properly (i.e.separately).
* |table.insert()| is slowerKhaled Hosny2010-04-041-3/+3
| | | | The difference is negligible, but this make the code more consistent.
* Simplify a bitKhaled Hosny2010-04-041-11/+5
|
* Import ConTeXt math modulesKhaled Hosny2010-04-0213-0/+148151
| | | | | | | | | Modules that provide OpenType and Unicode math related functionality, not very tested yet, but it seems to magically fix some of unicode-math issues. May be it should be trimmed a bit, since a good chunk of the code is of no use to us.
* Try fontname and ps fullname tooKhaled Hosny2010-04-021-1/+3
|
* Some cleanup + a bug fixKhaled Hosny2010-04-021-21/+18
| | | | | | | | If the family name is matching but no matching style, we would not return any thing, we now just return a random match (e.g. the user asks for XITS Math/Regular but gets XITS Math/Math), I hope in such rare cases there is only one match, else one is better giving proper style or fullname.
* Support 'opbd' (OpenType protrusion) featureKhaled Hosny2010-04-023-11/+363
| | | | | | | Code scrapped from ConTeXt, AFAIK, no font implements OpenType optical bounds (on of Linux Libertine font has traces of it), but I plan to use it in my fonts. The committed feature file is prepared for Pagella, we can later have font specific feature files like this.
* Return the original name, not the normalised oneKhaled Hosny2010-04-021-1/+1
| | | | When we fallback to filename lookup, we should return the original name.
* Oops!Khaled Hosny2010-04-021-2/+2
|
* Check if kpse can find font names database firstKhaled Hosny2010-04-021-1/+4
| | | | This way we can load font names database from working directory etc.
* Clean database generation code a bitKhaled Hosny2010-04-022-64/+18
| | | | | Simplify the database and the code to reflect recent changes in font matching logic.
* Fix optical size matchingKhaled Hosny2010-04-022-15/+41
| | | | | | | | | | With the previous commit, if we don't found a font with the requested optical size, we return nothing, though we might have a matching font name. Now we store all matching names with no matching optical size and return the first one, then we return the closest match (i.e. if the requested size is 15pt and we have 10pt and 5pt match, we return the 10pt one).
* Rewrite font matching logic to be more consistentKhaled Hosny2010-04-022-52/+68
| | | | | | We now simply loop over the whole data.mappings table, so loading font by family, fullname, psname etc is all the same, but it is a bit slower now (~0.25s with syatemfonts.tex).
* Support loading fonts by fullnameKhaled Hosny2010-04-012-16/+22
| | | | Now, if we didn't find a matching family name, we then try fullname.
* Fix optical size with no range_top/bottomKhaled Hosny2010-04-012-9/+34
| | | | | Some fonts give only design size with no range, in this case we now will assume range top == range bottom == design size.
* Enable font cachingKhaled Hosny2010-04-011-0/+53
| | | | | Update from ConTeXt, changes to save fonts under TEXMFVAR/luatex-cache/latex/fonts.
* Pump dateKhaled Hosny2010-04-011-6/+6
| | | | Also, fix date and version number to match that of latex package.
* Test with node mode tooKhaled Hosny2010-03-311-2/+4
|
* Purge removed fonts by defaultKhaled Hosny2010-03-302-20/+7
| | | | | There is no performance difference, so it doesn't make sense to keep removed fonts in the database.
* Do garbage collectionKhaled Hosny2010-03-301-0/+1
| | | | Patch from Taco.
* Make sure names file exist before loading itKhaled Hosny2010-03-291-1/+6
| | | | To protect against lua complaining about non existing file.
* Update repository linkKhaled Hosny2010-03-291-2/+2
|
* Fix outdated commentsKhaled Hosny2010-03-281-21/+14
|
* CosmeticsKhaled Hosny2010-03-281-24/+36
| | | | | Move function documentation inside the function block, and make multi-line documents look better.
* Update doc a bitKhaled Hosny2010-03-281-5/+2
|
* Include alt_getopt.lua for nowKhaled Hosny2010-03-282-8/+168
|
* Make sanitize() Unicode friendlyKhaled Hosny2010-03-241-1/+2
|
* Make some frequently used functions localKhaled Hosny2010-03-241-7/+8
|
* Make font names case insensitiveKhaled Hosny2010-03-242-1/+9
|
* Make mkluatexfontdb.lua executableKhaled Hosny2010-03-241-0/+0
|
* Change the default database directoryKhaled Hosny2010-03-242-3/+3
| | | | | Now $TEXMFVAR/luatex-cache/latex/names/ which looks more logical than $TEXMFVAR/scripts/luatexfontdb/.