Sile Versions Save

The SILE Typesetter — Simon’s Improved Layout Engine

v0.14.7

1 year ago

Summary of Improvements

Some of the changes that came out in v0.14.6 were … less than optimal. The build system changes were for a good purpose, but made life a bit difficult for some distro packagers. I also managed to introduce a parsing regression. It also came to light that a previous API deprecation didn't come with the usual warning and shim for transitional support.

This release is notable for distribution packagers for two reasons. First, there is now an easier way to skip the font dependency check at build time. Second, this release is the first time using LuaJIT is at 100% parity with regular Lua. If your distro has LuaJIT available there is now little reason not to make the switch.¹ The speed increase is substantial, especially for large documents.²

While I was tinkering with smoothing out the build and fixing regressions a couple other fixes landed. @khaledhosny tackled a long standing issue with the font loader. The opsz axis can now be used as expected so fonts with OpentType FeatureVariations are usable in SILE. @raphCode also spotted and fixed some outdated code in the manual.

¹: As far as SILE core and all its Lua dependencies are concerned there is no downside. Previously some of the debug and tracing features did not give as much useful information when using LuaJIT. Now the only caveat is related to end users and their documents. If people write custom Lua code in their projects and/or use other 3rd party Lua libraries they will need to consider interpreter support.

²: As a rough comparison on my desktop machine, rendering the 115 page SILE manual takes about 48 seconds with Lua 5.4, 22 seconds with LuaJIT, and 17 seconds with OpenResty.

Features

  • build: Allow easy skip of font checks with FCMATCH=true (5c0cef6)

Bug Fixes

  • build: Only check tooling to bulid manual if really needed (e166e00)
  • inputters: Rework SIL input to handle both junk outside of document tag and fragments (4c51c55)
  • outputters: Patch up error message when failing to load font (#1671) (771d87f)
  • shaper: Correct font-variants using opsz axis (#1666) (a929583)
  • shaper: Respect variations when shaping (#1265) (#1662) (f50ae77)
  • tooling: Keep all Lua packages in same env for Nix (8fc8670)
  • utilities: Tweak breadcrumbs to work under LuaJIT limitations (32f744c)

v0.14.6

1 year ago

Summary of Improvements

This release has tons of fixes and even a few features, but perhaps the most interesting bit to end users might just be the documentation. Thanks to @hegjon, official SILE packages are in the works for Fedora. The procedure for installing them via COPR is documented and will be updated when they land in default repositories. Also @ctrlcctrlv added some useful notes about installing 3rd-party packages. This is really important because very useful actions like typesetting Markdown are best accomplished with external packages.

Anyone working with the source code for SILE itself should note the build system has been split so only run time dependencies are checked at configure time by default. This means no-change is needed for distro packagers and end users that are just wishing to install and move on. However checking for dependencies needed in order to develop SILE itself (including running tests) now requires different configuration. Using --enable-developer should be added as a go-to configure option for anyone hacking or wishing to contribute the to SILE sources. Also of interest to developers, using nix develop should now be a lot more seamless as far as providing a ready-to-use environment.

@Omikhleia has rebuilt the formatNumber() utility function using ICU. This increases language support from a handful of manually implemented ones to almost complete CLDR coverage. In the process a new utility function collatedSort() was added to sort Lua data with locale aware collation. He also fixed a number of little typsetter bugs and overhauled some more documentation.

First-time contributer @raphCode submitted a fix for calling citation keys in the bibtex package.

Debug output is now both faster and more robust since it can't crass the typesetter. When errors are encountered, location reports for where in the document an error was triggered are more accurate. Bundled in this release are also a batch of other small bug fixes to the typesetter, page builder, and shaper.

Features

  • build: Add ./configure --enable-developer to ease setup for SILE developers (e8a56ae)
  • core: Add SU.collatedSort for language-dependent table sorting with collation (ea7446d)
  • core: SU.formatNumber has more options and language support (ed0db29)
  • packages: Add package loaded that can later be used to track package dependencies (d48633a)
  • packages: Code block environment and raw handler for autodoc (7661330)

Bug Fixes

  • classes: Apply page/framebreak in hmode but warn the user (809cbba)
  • cli: Deduplicate Lua module loading paths when adding segments (e0f75b1)
  • cli: Escape possible path character in replacement (0161f9a)
  • cli: Make user system root not added to resource search path (4305850)
  • debug: Correct filename in debug info after includes (#1652) (4990ecc)
  • debug: Fix pagebuilder debug functions in absence of luastd (ab46bf7)
  • debug: Fix typesetter:debugState() in absence of luastd (42f6b0b)
  • inputters: Correct Lua inputter AST expectations to match others (6177b0b)
  • inputters: Work around SIL parser returning tags as part of content (ef4efb7)
  • languages: Replace custom EN/TR ordinals with ICU (82b6709)
  • nodes: Ignore empty node properties when debugging breaks (f034e05)
  • packages: Correct content position reporting in inputfilter (bb53d77)
  • packages: Don't discard grid makup vboxes at top of new pages (22b899c)
  • packages: Fix \cite{key} in bibtex package (#1655) (648bb5d)
  • packages: Use casting to restore shaper state after fallbacks (351fc68)
  • shapers: Apply tracking settings even in font-fallback shaper (55f0c9c)
  • tooling: Exempt LuaJIT from external bit32 library requirement (#1654) (d094f1b)
  • typesetter: Ensure being in horizontal mode after pushback (a82b604)
  • utilities: Correct logic in AST debugging output, also protect (97c82f0)
  • utilities: Protect debug functions so they can't crash SILE (319b96a)

v0.14.5

1 year ago

Summary of Improvements

We're just squishing bugs today and making the manual a little neater. Working with STDIN streams should be a bit more robust now as the content type detection isn't so picky about whitespace and isn't so prone to false positive detections. Document file restrictions have been relaxed a little too allowing comments and whitespace before the leading document tag. Package developers should have a little bit easier time with in the event their package is loaded twice. Also a number of small typesetting issues in the user manual were cleaned up by @Omikhleia.

Bug Fixes

  • inputters: Correct false positive detection of STDIN as Lua content (d54946b)
  • inputters: Don't duplicate passthrough content in AST (07c8e87)
  • inputters: Permit content outside of the document note, e.g. comments or blanks (#1596) (f1a508a)
  • inputters: Relax SIL format sniffing to allow valid syntax (43fc4bc)
  • languages: Remove superfluous line (848b91f)
  • languages: Tidy up variable scope in languages/unicode.lua (78b453d), closes #699
  • measurements: Allow redefinition of existing units (#1608) (8d81018)
  • packages: Ensure a page switch does not break boustrophedon (#1615) (64abaf9)

v0.14.4

1 year ago

Summary of Improvements

Today we have a small rollup of fixes and improvements. @Omikhleia overhauled the counters packages as well as fixed up bugs in several other packages. The default center of rotation has been changed to give a more expected result. Text casing functions are accessible again from the Lua side of things, changing masters during a page output doesn't break page breaking, and using the twoside package doesn't force the use of mirroring. @OlivierNicole also stepped in to fixup some math bugs. Also thanks to @ThatGeoGuy and @snan for pointing out and fixing small issues in our documentation.

Features

  • packages: Add boolean noleadingzeros option to counter formatter (e4f8133)
  • packages: Add new command \set-multilevel-counter (11578a8)

Bug Fixes

  • classes: Always break out of hmode before processing \chapter headings (0c44d8e)
  • core: A typo in a variable prevents using -u with a class (b8f5c40), closes #1569
  • languages: Make 'und' an exception to language name canonicalization (52e9b79)
  • math: Fix insertion order of MathML children (738e9e6)
  • packages: Account for depth when calculating rotation center (289dd2a)
  • packages: Avoid forcing mirrored masters in twoside package (#1562) (8cdf6ed)
  • packages: Combine \unichar'ed chars with same font only (91a8d40)
  • packages: Correct rotation origin calculation back to pre v0.10.0 (3521936)
  • packages: Don't inhibit page breaking after switching masters mid-page (6b20f73)
  • packages: Make sure PDF initialized before rotate package directly calls it (449b2a6)
  • packages: Rework simple and multilevel counters (1e6e91a)
  • packages: Textcase package name typo preventing using methods from code (7f68766), closes #1568

Reverts

  • Revert "docs(packages): Fixup unichar documentation, work around known bug (#1549)" (03d1b11), closes #1549

v0.14.3

1 year ago

Summary of Improvements

This release addresses a few pain points discovered using the v0.14 series in production.

For 3rd party package developers, it's now easier to find non-Lua resources you installed along with your package. Among several contributions from @Omikhleia, the output backend now returns useful information about images it embeds directly. The same work also allows specific pages of PDFs to to be emdeded as images, not just the first page. He also helped refactor existing interfaces to make them easier to extend, such as the table of contents package. A long standing issue with Turkish hyphenation has been addressed, eliminating the need for preprocessing or other workarounds. More long standing issues with the book class and chapter opening spreads have been addressed. Some priority and interactions between new CLI flags has been worked out. A few more misc bugs were also squished and relevant tests added.

Features

  • languages: Handle hyphenation of inter-word apostrophes in Turkish (50ae936)
  • packages: Add \open-spread function with more features that \open-double-page (c2ba579)
  • packages: Add ability to select a page in PDF images (a477d94)
  • packages: Allow for customized content on otherwise blank filler pages (5ae97bf)
  • packages: Provide base directory to packages (#1529) (f9ae994)
  • utilities: Return image resolution with libtexpdf backend (a9c11d3)

Bug Fixes

  • cli: Actually apply cli provided class options (505919e)
  • cli: Allow CLI option to override document specified class (5232ce8)
  • languages: Make Turkish hyphenation less bad around intraword apostrophes (008d4c4)
  • nodes: Correct calculating width of postbreak discretionaries (ea7912c)
  • nodes: Work around discressionaries being output when not wanted (c7dc439)
  • packages: Fix over-aggressive eject in \open-double-page (5620556)
  • packages: Homogenize image width and height as measurements (b91cfbb), closes #1506
  • packages: Make sure PDF initialized before PDF package does anything (#1550) (ebc3748)
  • packages: Resolve src= relative to document for SVG images (b55fc98), closes #1532

Reverts

  • Revert "chore(build): Avoid mktemp during build, breaks opensuse packaging (#1542)" (bca007f), closes #1542
  • Revert "chore(cli): Output header before doing anything that might throw warnings" (58da8ad)

v0.14.2

1 year ago

Summary of Improvements

It’s a slow news day, but these few little fixes touchup glitches introduced in the v0.14.0 release and generally improve the robustness of the new API interfaces. Writing (and porting) classes should go just a bit smoother and behave more as expected now.

Bug Fixes

  • classes: Allow package option declarations to be reset (215e83a)
  • classes: Bring back space after subsection numbering (70a3304)
  • packages: Check for user supplied commands before setting noops (54b5071)

v0.14.1

1 year ago

Summary of Improvements

These few quick touch-ups smooth over last minute bugs and ease the transition process from v0.13.x. Besides squashing a pointless warning messages and some bug fixes, this changes the order deprecated includes are processed to facilitate the transition of old projects to new APIs by making it easier to update them one bit at a time.

Features

  • inputters: Expand postamble functionality for parity with preambles (#1518) (eb09eb3)

Bug Fixes

  • cli: Suppress deprecation message for internal shims (b339e27)
  • cli: Swap order of new --uses and legacy --include (ef0087e)
  • packages: Correct (and improve scope of) exported testcase functions (fd438e9)
  • tooling: Make sure Git version detection only picks up semver tags (25d669a)

v0.14.0

1 year ago

Summary of Improvements

Work to refactor SILE's internals into a more regular API has been in progress for some time. This release brings a big chunk of that work to light. Many/most of the changes are under the hood and won't show up in the appearance of documents. They do affect anybody writing classes or packages for SILE, hopefully for the better.

Most notably, 3rd party modules have much more robust support. A module may be a class, a package, a typesetter, a shapper, an inputter, an outputter, etc. This makes it easy for developers to extend SILE without needing to modify the core distribution. Modules can be packaged and installed using LuaRocks. LuaRocks.org may be used to host and distribute SILE addons. Rocks may also be distrusted independently. Either way they are easy to install with luarocks install and such installs will make the modules available for loading into SILE. The old built in package manager is still functional for now but deprecated.

The ergonomics of packages has changed a little. The overloaded \script command has gained some more specialized peers. For example Lua code may be passed in \lua commands. To load a package or other module, use \use[module=package.name]. This syntax also allows passing options to modules.

The inputters have been normalized a bit, and XML, SIL, and Lua are all first class input languages. Passing some content in XML format from a SIL format document is as easy as placing it in an \xml command. The same goes for SIL format content in an XML document.

3rd party developers may add new input formats as well! All that is required is an inputter module that returns an AST. Expect to see new inputters soon. @Omikhleia has already been working on a new Markdown inputter module. Other XML based formats such Docbook have been supported for a while, but the new class and inputter APIs make them easier to add and use.

The CLI has gained several new options. As usual sile --help and man sile both have relevant information. Notably the -I/--include argument has been deprecated in favor of more explicit -u/--use, -p/--preamble, and -P/--postamble. As you might expect from those options this makes it possible to load an inputter, class, or package from the command line without having it set in the document. The preamble/postamble system has been cleaned up so content or code can easily be injected at the start or end of a document. This is a change from the previous 'preamble' system that actually became the master document and then included the original master as effectively a postamble.

Many old shims and deprecated functions have been completely removed. Most will still throw relevant warning messages with hints about how to update.

While I was busy moving cheese, several contributers were chipping in new features and fixes. @rolfmblindgren pitched in Norwegian localization and improved hyphenation. @matteodelabre contributed quite a few new features and fixes to the math package. @Omikhleia did some data mining and came up with localization strings for a whole slew of languages. He also pitched in fixes to a number of packages. He also has pending contribution for many new packages and features. Be sure to checkout the PR scene on GitHub if you are looking for new features.

⚠ BREAKING CHANGES

  • packages: The primary use was probably internal to SILE, but if by chance you have bibtex databases with formatting commands in SIL markup format rather than just plain text content the markup will cease to function and will need to be converted to XML syntax instead. This enables the use of declarative markup in Fluent localizations.

  • classes: Each SILE package now inherits some interfaces from a common base package. This model allows packages easier access to SILE internals while at the same time tracking what they do so it is easier to enable/disable them. The package knows which document class instance it is attached to, and the document class knows which packages are loaded at any given time. Legacy style packages will continue to work for the time being but will not be tracked in the same way.

  • core: The role of document commands has always been tightly scoped to classes. For example the book class has a \footnote command while plain does not—unless you manually load the package and setup the frames. In spite of this obvious functional scope, registering commands has been a global operation that stored them in a global registry. In order to allow SILE to be used more programmatically as a library with potentially more than one document and class being processed at at once, these need to be moved out of the global scope. This will also facilitate things like being able unload packages and revert to previous functionality for anything they over-rood on load. For now the functionality is shimmed, but code using the SILE.registerCommand() function should switch to the method of the same name on the current class, i.e. class:registerCommand().

  • core: Some internal files and APIs got renamed with more structured name spaces. In particular the inputter, shaper, and outputter libraries all have a common naming scheme now and sensible inheritance chains. No functionality was harmed, but if you are overriding undocumented internal Lua methods you might have to update your name spaces to match.

  • cli: The -I / --include option was overloaded for more than one purpose and is now deprecated in favor of more specific replacements: -r / --require for loading code into SILE before input processing, -p / --preamble for processing content prior to a document and -P / --postamble for processing content after a document.

  • packages: The original package manager POC that used Git to clone packages into the SILE installation directory has been deprecated. It will continue to function for a while, but all new 3rd party packages should use the LuaRocks based installation process. Whether or not they use luarocks as a package manager or LuaRocks.org as a distribution channel they should install themselves to any usable the system or user Lua library path under a top level "sile" namespace.

  • classes: The shims allowing classes designed for SILE releases v0.12.x and prior have now been removed and documents using them will now throw errors when rendering. Only the refactored class system introduced in SILE v0.13.0 is supported going forward.

  • deps: We previously deprecated all use of stdlib. This release stops providing it entirely. If you use it in your own projects you will now need to provide and require() it directly.

  • build: The C modules compiled as shared libraries (.so files on Linux, .dll on Windows) are now installed to the project root shared directory instead of it's 'core' subdirectory. Distro packages that split the library into its own package will need to adjust this path. People installing from their distro packages or from source should be unaffected, but this will bring us one step closer to being able to install and use SILE as a library.

Features

  • classes: Add \use command to help deconflate \script usage (eb298c3)
  • classes: Track loaded packages per document class (32bd87b)
  • cli: Add CLI argument -E for evaluating Lua code after input (5948aca)
  • cli: Add usage hints and cleanup output of errors (cc58824)
  • cli: Allow loading custom inputters from -r option (a212e83)
  • cli: Allow passing options to any modules specified from --use (4cdcae7)
  • cli: Change --require to --use to match declarative markup (2411328)
  • core: Add ability to pass args to modules via \use and other commands that load modules (9e54bad)
  • core: Add ability to pass args to modules via \use and other commands that load modules (e64ce0f)
  • core: Add inline-escaping in SIL-language (f09b135)
  • core: Support loading classes/packages installed with luarocks (232e72b)
  • i18n: Add more Russion localizations (350cf14)
  • i18n: Add support for as many languages as possible (da57577)
  • i18n: Fallback to messages from 'und' language if no localized (9f47715)
  • i18n: Parse XML style SILE commands in Fluent messages (989290b)
  • inputters: Allow arbitrary root elements from XML input without a preamble (ad46a92)
  • inputters: Allow CLI to mandate inputter used for master document (1b9009f)
  • inputters: Promote Lua to first class input filetype, improve input type detection (3540943)
  • languages: Add Norwegian localizations (76b8f84)
  • languages: Add Norwegian Nynorsk hyphenation exceptions (520cd3f)
  • languages: Handle 'nb' code for Norwegian Bokmål, linked to 'no' rules (373bd17)
  • math: Add modulus operator support (429b162)
  • math: Allow forcing the atom type of an operator (14d384c)
  • math: Express lengths in “mu” (math units) (39c7efc)
  • math: Macros no longer wrap their replacement into s (d1f24b3)
  • math: Print resulting mbox tree to debug log (f2e7c33)
  • math: Support relative units in spaces and add standard spaces (4f2bee2)
  • packages: Add new method to export package functions to class (07a28a4)
  • packages: Allow configuring target folio frame from options (74e3924)
  • packages: Provide API for registering commands linked to packages (4875972)

Bug Fixes

  • build: Update Flake to work with Nix >= 2.10 (effb0dc)
  • classes: Reset default font direction if document direction changed (11bb0f9)
  • cli: Avoid throwing extra error on error without message (0d530a5)
  • core: Avoid error when outputting overflow warnings with specific measurements (49ef650), closes #945
  • debug: Flatten content if necessary to process and debug location (c753bd2)
  • debug: Re-implement option display in trace stacks lost with std (01d2379)
  • inputs: Drop Lua path handling duplicated in core (8abb0f2)
  • math: Fix caching of getMathMetrics (3332698)
  • math: Fix debug logs in TeX-like parsing (a686f90)
  • math: Fix spacing before integral operators (bc847b3)
  • math: Fix tostring functions in mbox subclasses (7a7c6bc)
  • math: Set math elements to inherit hbox node properties (0279556)
  • math: Turn font name printing into debug log (068ec4b)
  • outputter: Non-RGB colors shall work with the debug outputter (#1469) (e68dee3)
  • packages: Correct URL formatting when backend is not libpdftex (fc4212d)
  • packages: Ensure grid hook is ineffective when grid is off (b99482b), closes /github.com/sile-typesetter/sile/issues/1174#issuecomment-1173141699
  • packages: Make \script command properly initialize packages (#1479) (9723d0d)
  • packages: Parse height argument to \raise / \lower as measurement (#1506) (7196fda)
  • packages: Stop legacy package manager from adding empty paths (cf9b9fa)
  • packages: Stricter color parsing and improved color documentation (f7b919a)
  • packages: The autodoc package could choke on some inputs (#1491) (c7db5d5)
  • utilities: Correct traceback output for SILE.error() to show parent, not itself (16b8900)

Miscellaneous Chores

  • build: Move C modules to same relative location in source directory as installed (55ad795)
  • classes: Remove stdlib class shims (c4210da)
  • cli: Deprecate CLI argument -I in favor of -r, -p, and -P (d63a484)
  • deps: Stop providing Lua stdlib (8a8c0e9)
  • packages: Deprecate legacy package manager (b72653c)

Code Refactoring

  • core: Move inputters/shapers/outputters to isolated classes (14329ce)
  • core: Move registerCommand() out of global to classes (bc527ea)
  • packages: Process bibtex content as XML not SIL (a259b32)

v0.13.3

1 year ago

Summary of Improvements

The upcoming v0.14.0 is chock full of changes (hopefully all for the better!) but several small issues have cropped up in the v0.13.x series and there doesn't seem to be any point in inconveniencing existing users with bugs we've already fixed while we work on new features. This should fix up some issues with includes not activating exported functions and getting blocked when both directories and files of the same name exist. The Nix Flake will now work with the new Nix 2.10.x releases.

Additionally @Omikhleia contributed some fixups and features to the Bibtex package to make it much more usable.

Features

  • packages: Add minimal support for usual BibTeX types (bibtex) (292a2f2)

Bug Fixes

  • build: Update Flake to work with Nix >= 2.10 (3d5a18c)
  • core: Avoid duplicate paths blocking directory searches (7a7209f)
  • core: Avoid error when outputting overflow warnings with specific measurements (cb51ed5), closes #945
  • outputter: Non-RGB colors shall work with the debug outputter (#1469) (41fbdf4)
  • packages: BibTeX types/tags are case-insensitive, etc (61c1fc6)
  • packages: Make \script command properly initialize packages (9ded7e1)

v0.13.2

1 year ago

Summary of Improvements

This patch release brings both bug fixes and new goodies.

@Omikhleia contributed a new package for formatting lists. Features include bullet, numbered, and mixed list types with many styling options.

@ctrlcctrlv fixed zenkaku unit handling and helped refactor the jplain/jbook classes so we now have tate-capable but language-agnostic tplain/tbook classes in addition to the Japanese specific variants. He also contributed full support for Esperanto including hyphenation, number formatting, and localized output strings. Even if you don't have a use case for Esperanto directly the issues that rooted out with language and class handling should benefit everyone.

The papersize option provided by the base class is now case insensitive and allows dashes. If you prefer A4 to a4 or ANSI-A to ansia feel free to use them. A couple new paper size presets were added in the process.

Additionally the font fallback system got an overhaul. A change from previous behavior is that TOFU handed out by the last available fallback font will be rendered instead of skipping the characters completely. Switching back and forth between the color fonts package and the font fallback package is now possible. Finally it should stop throwing bogus warnings when it successfully shapes a segment via the last available fallback.

Other minor fixes include interactions with color plus dropcaps, some bibtex errors, and errors in the pecha class.

Features

  • core: Add presets for some ANSI paper sizes and ArchE variants (0f26756)
  • languages: Add full Esperanto language support (b740709)
  • packages: Add 'lists' package (bullets and enumerations) (6af3c62)
  • packages: Add more options for custom 'lists"' styling (3167410)
  • packages: Handle font fallback when glyph named null returned on shape falure (09c0a86)
  • packages: Pass through font-specific options to fallback fonts (fb29442)

Bug Fixes

  • classes: Clarify the scopes of tate and jplain (db83e9e)
  • classes: Fix circular reference in pecha class (4501ec0)
  • classes: Fix diglot and triglot class instantiation (71af1a9)
  • core: Make paper size parser case insensitive, e.g. 'a4' or 'A4' (af441c8)
  • measurements: Move the zenkaku width (zw) unit into core (cfe5060)
  • packages: Correct fall-back font processing (d3cc59b)
  • packages: Correct package load path for colored dropcaps (41a0c17)
  • packages: Fix coding errors in untested corners of bibtex package (804b1a5)
  • packages: Fix loading TOC twice resetting pdf links (97797b8)
  • shaper: Handle switching between color & fallback shapers in single document (04f2d5d)
  • utilities: Raise Lua error instead of manually aborting if inside pcall() (6e70a17)