Releases: bpampuch/pdfmake
Releases · bpampuch/pdfmake
0.2.3
- Updated @foliojs-fork/pdfkit to version 0.13.0.
- Tiling pattern support.
- svg-to-pdfkit package moved as built-in. Solve not used installation of pdfkit.
- Fixed passing document metadata.
0.2.2
0.2.1
- Upgrade Unicode Line Breaking Algorithm (
UAX #14
) to Unicode 13.0.0 - Updated @foliojs-fork/pdfkit to version 0.12.3.
- Updated @foliojs-fork/linebreak to version 1.11.1.
0.2.0
- Move to @foliojs-fork packages with up-to-date dependecies and security bug fixes and others. These are the libraries @foliojs-fork/fontkit, @foliojs-fork/restructure, @foliojs-fork/linebreak which are used in @foliojs-fork/pdfkit.
- Upgrade Unicode Line Breaking Algorithm (UAX
#14
) to Unicode 12.0.0 - Introduced new
build-vfs.js
script to build virtual file system for fonts (see documentation). - Removed support Node.js 8 and 10. Minimum required version is 12 LTS.
- Removed support Internet Explorer 10. Supported only Internet Explorer 11.
- Removed gulp.
0.1.72
- Introduced new
build-vfs.js
script to build virtual file system for fonts (see documentation). - Updated pdfkit (version 0.12.1).
0.1.71
0.1.70
0.1.69
0.1.68
0.1.67
- fixed include Promise polyfill
- experimental SVG: rewrited SVG parsing
- client-side: images file loading via url address (https:// or http:// protocol) in "images" dictionary
Example of usage:
var dd = {
content: [
{
image: 'testImage'
}
],
images: {
testImage: 'https://picsum.photos/seed/picsum/200/300',
}
};
This is not supported: { image: 'https://picsum.photos/seed/picsum/200/300' }