Skip to content

Releases: bpampuch/pdfmake

0.2.3

06 Nov 09:12
Compare
Choose a tag to compare
  • 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

02 Aug 12:24
Compare
Choose a tag to compare
  • Fixed compatibility with Internet Explorer 11

0.2.1

02 Aug 05:52
Compare
Choose a tag to compare

0.2.0

05 Jul 08:59
Compare
Choose a tag to compare

0.1.72

05 Jul 08:42
Compare
Choose a tag to compare
  • Introduced new build-vfs.js script to build virtual file system for fonts (see documentation).
  • Updated pdfkit (version 0.12.1).

0.1.71

05 Apr 11:50
Compare
Choose a tag to compare
  • update pdfkit (version 0.12.0)
  • update Roboto font (version 3.004)
  • fix performance problem for pageBreakBefore in large documents

0.1.70

16 Jan 10:20
Compare
Choose a tag to compare
  • fixed compatibility with Internet Explorer

0.1.69

27 Dec 14:19
Compare
Choose a tag to compare
  • superscript and subscript support (see #2128)
  • support cover for image element (see #2148)
  • migrated from uglifyjs to terser minifier. This fix issues with minified version.
  • fix auto page height for table and vectors

0.1.68

31 Jul 15:28
Compare
Choose a tag to compare
  • fixed error window is not defined in Node.js

0.1.67

26 Jul 14:30
Compare
Choose a tag to compare
  • 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' }