summaryrefslogtreecommitdiff
path: root/src
Commit message (Collapse)AuthorAgeFilesLines
* [main,init,db,resolvers] separate resolvers from main into separate filePhilipp Gesang2015-07-234-260/+295
|
* [letterspace] invoke spacing function on converted headPhilipp Gesang2015-07-221-3/+6
| | | | Letterspacing should be functional again.
* [init,main,package] split initialization in early and late stagePhilipp Gesang2015-07-223-6/+22
| | | | | | | | | | | | | | | | | | | | | This is a big move. Due to the restructuring of the initialization we can now separate the early tasks -- mostly dirty stuff like writing globals -- from the later stage where we actually inject the actual font loader. As a consequence, the basic configuration is now present before the font loader is injected. It’s not complete, though, in that the reconfiguration step must still be executed after the font loader is there, since some config variables require values to be set up by the loader. A decision is pending regarding how we address the situation; possible approaches are, in order of increasing complexity: * reconfigure twice, skip some of the steps the first time through * split reconfiguration into two stages * make configuration independent of fontloader values Design-wise, the last point would be the most desirable, naturally. Though the fontloader has been known to require extensive static preparation which might very well make that strategy impossible or unjustifiably demanding. We’ll see how it plays out …
* [log] remove duplicate codePhilipp Gesang2015-07-221-49/+0
| | | | How the hell did that get there the first place‽
* [main] adapt fontloader default namePhilipp Gesang2015-07-221-3/+1
|
* [init] make saved globals inaccessiblePhilipp Gesang2015-07-221-10/+7
|
* [mkstatus,build,conf] default to packaged fontloader via status filePhilipp Gesang2015-07-211-3/+3
| | | | | | | | This adds an entry ``loader`` on the ``notes`` hash in the status table by means of which the fontloader can be specified. The status file is read when building the configuration table, and if it is present the entry in the ``loader`` table will be used as the default fontloader. Otherwise, Luaotfload falls back on the reference loader.
* [import,fontloader] move imported package out of the wayPhilipp Gesang2015-07-211-0/+0
|
* [init,override] move AGL initialization into post fontloader hookPhilipp Gesang2015-07-163-55/+69
|
* [init] implement hook list for post-fontloader initializationPhilipp Gesang2015-07-161-5/+30
|
* [init] remove annyoing bannerPhilipp Gesang2015-06-212-18/+3
|
* [main, init] partition initialization into a series of routinesPhilipp Gesang2015-06-212-91/+111
|
* [init] move late initialization stage from toplevel into dedicated subroutinesPhilipp Gesang2015-06-201-36/+47
|
* [init] adapt log messagesPhilipp Gesang2015-06-201-12/+12
|
* [init] add stub for module sanitizationPhilipp Gesang2015-06-202-2/+10
|
* [main, init] move fontloader-specific stuff completely into initPhilipp Gesang2015-06-202-253/+277
|
* [db,tool] prevent database rebuild when querying version infoPhilipp Gesang2015-06-192-8/+20
| | | | | | Reported by /u/ThomasFehige on Github: https://github.com/lualatex/luaotfload/issues/275#issuecomment-113515484
* [parsers] check fontconfig includes at another part of the scanner and add ↵Philipp Gesang2015-06-181-11/+20
| | | | more verbose messages
* [parsers] set hard limit on fontconfig scanner recursion depthPhilipp Gesang2015-06-181-11/+30
|
* [parsers] fix tracking of included fontconfig filesPhilipp Gesang2015-06-181-11/+14
| | | | | | | | Addresses issue https://github.com/lualatex/luaotfload/issues/275 There indeed was a check missing for included files. Since a corresponding check for included directories was in effect it probably masked the potential stack blowthrough.
* [parsers] at higher log levels, display information about fontconfig files ↵Philipp Gesang2015-06-181-0/+6
| | | | being read
* [loaders] map forced OFM files to match the TFM loaderPhilipp Gesang2015-06-131-0/+4
| | | | | | | | | This defines a loader for the recognized OFM format. Somehow more recent versions of Luaotfload (TL 2014) did not provide one, causing to OFM fonts to fail loading whilst not being an issue without Luaotfload loaded. Addresses https://github.com/lualatex/luaotfload/issues/273
* [main] strip file name suffix for fonts loaded as type1Philipp Gesang2015-06-131-1/+3
|
* Merge pull request #2 from dohyunkim/phgPhilipp Gesang2015-06-112-4/+7
|\ | | | | check if token register exists using allocation number
| * check if token register exists using allocation numberDohyun Kim2015-06-032-4/+7
| |
* | [main,init] separate loading of fontloader and lualibs packagesPhilipp Gesang2015-06-092-6/+28
| |
* | [main] remove obsolete workaroundsPhilipp Gesang2015-05-261-45/+0
|/
* [fontloader] sync with Context as of 2015-05-26Philipp Gesang2015-05-2611-446/+841
|
* [init] prepare fontloader initialization componentPhilipp Gesang2015-05-262-26/+74
|
* [fontloader] sync with Context as of 2015-05-12Philipp Gesang2015-05-122-9/+15
|
* [*] adapt credits to reflect latest mergePhilipp Gesang2015-05-053-5/+7
|
* Merge pull request #1 from dohyunkim/phgPhilipp Gesang2015-05-053-89/+168
|\ | | | | colors: node processing routine rewritten
| * pgfsys package, not pgf.Dohyun Kim2015-05-051-1/+1
| |
| * more fix of prev commitDohyun Kim2015-05-051-3/+3
| |
| * fix prev commitDohyun Kim2015-05-041-4/+3
| |
| * under latex, order of package loading is irrelevantDohyun Kim2015-05-041-1/+10
| |
| * respect beamer (pgf) transparencyDohyun Kim2015-05-042-6/+27
| |
| * ignore full opacity input: moved to tfm stageDohyun Kim2015-05-021-4/+2
| |
| * ignore full opacity inputDohyun Kim2015-05-021-7/+14
| |
| * conf: default_config.run.color_callback is now post_linebreak_filterDohyun Kim2015-05-011-1/+1
| |
| * colors: node processing routine rewrittenDohyun Kim2015-05-011-84/+129
| |
* | [fontloader] sync with Context as of 2015-05-04Philipp Gesang2015-05-042-21/+32
| |
* | [fontloader] sync with Context as of 2015-05-03Philipp Gesang2015-05-032-7/+60
|/
* [conf] move colorization to post_linebreak_filterPhilipp Gesang2015-04-201-2/+30
| | | | | | | | Addresses this behavior: http://tex.stackexchange.com/q/238539/14066 This is a breaking change but it hardly matters since font-based colorization is deprecated and the old behavior can be restored by means of a configuration setting.
* [fontloader] sync with Context as of 2015-04-20Philipp Gesang2015-04-202-1/+8
|
* [fontloader] sync with Context as of 2015-04-15Philipp Gesang2015-04-152-3/+21
|
* [fontloader] sync with Context as of 2015-04-13Philipp Gesang2015-04-134-34/+99
|
* [*] bump version and datePhilipp Gesang2015-03-295-17/+17
|
* [fontloader] unpackage functionality provided by the LualibsPhilipp Gesang2015-03-291-10/+16
|
* [fontloader] add and document dedicated packaging entrypointPhilipp Gesang2015-03-291-0/+90
|