Revision history for Pod-To-PDF-Lite
0.1.9 2023-08-03T14:12:17+12:00
- Use PDF::Content 0.6.14+ text flow
0.1.8 2023-03-29T09:27:02+13:00
- Fix loading of latest PDF version
- Enable kerning.
0.1.7 2022-11-21T07:55:51+13:00
- Increase font-sizes by about 20%. Better match the output of
Pod::To::PDF.
0.1.6 2022-11-09T13:57:19+13:00
- Minor corrections to documentation and footnote positioning
0.1.5 2022-11-09T10:07:43+13:00
- Add general options parsing: --width=p --height=p --margin=p --save-as=file.pdf
- Added page numbering #2. Enabled via the --page-numbers option
0.1.4 2022-08-04T08:11:02+12:00
- Fix rendering of footnotes
0.1.3 2022-06-11T14:57:52+12:00
- Factor out concurrent processing to sub-class Pod::To::PDF::Lite::Async
rendering mode. Keep the main module synchronous.
0.1.2 2022-05-29T16:51:18+12:00
- Fix pagination of level-1 headers
0.1.1 2022-05-29T07:19:58+12:00
- Work around symbol merge issues in recent Rakudo point releases
0.1.0 2022-05-28T11:26:42+12:00
- Use race() for concurrency; Less active threads and slightly
better performance.
0.0.15 2022-05-27T18:02:16+12:00
- Fixes to Pod::To::PDF::Lite::Scheduler
- Call $!page.finish() from thread workers. This speeds
up final serialization from the main thread.
0.0.14 2022-05-26T16:18:35+12:00
- Add concurrent threaded construction of Pod documents. This is
most effective for larger documents with multiple sections, that
begin with `=head1` (these break onto a new page).
0.0.13 2022-04-04T11:31:40+12:00
- Add options :$width, :$height, and :@fonts.
0.0.12 2022-03-23T07:46:17+13:00
- Improved handling of page-breaks in code blocks
- Moved repo to github pod-to-pdf organization.
0.0.11 2022-03-22T15:25:31+13:00
- Handle formatting in code blocks, e.g.: =begin code :handle
- Page break on =TITLE
- Fix code font-sizing. e.g. to fix appearance of:
=head1 Large header with C
0.0.10 2022-03-19T09:46:56+13:00
- Handle replacement formatting (R<>). Added :%replace option to
podf2pdf().
0.0.9 2022-03-17T12:11:25+13:00
- Handle formatting in headers, such as links or italics
- Fallback handling of Placement Links as "(see: )"
- Font-loading fixes
0.0.8 2022-03-12T08:59:29+13:00
- Revised handling of uppercase =TITLE =AUTHOR, etc. These are
now rendered https://design.raku.org/S26.html#Semantic_blocks
0.0.7 2022-03-04T08:45:51+13:00
- Handle nested named blocks as sub-sections
0.0.6 2022-03-02T11:25:03+13:00
- Added metadata
- Pagination and code display fixes
0.0.5 2022-01-05T09:29:15+13:00
- Handle footnotes N<...>. These are written to a reserved gutter
at the bottom of each page.
0.0.4 2022-01-02T05:45:10+13:00
- Reworked formatting of inline code: C<$foo = 42;>.
- Avoid double rendering in Rakudo #2588
0.0.3 2021-12-28T10:10:23+13:00
- Fixed issues with font styling and code pagination/reflow
0.0.2 2021-12-24T05:46:28+13:00
- Fix documentation
0.0.1 2021-12-23T08:11:18+13:00
- Initial version