Skip to content

Releases: bpampuch/pdfmake

0.1.58

27 Jul 12:40
Compare
Choose a tag to compare
  • support SVG nodes (experimental) see documentation and example
  • fix table border with colSpan
  • fix rendering empty ToC

0.1.57

09 Jun 04:57
Compare
Choose a tag to compare
  • update pdfkit to 0.10.0
  • added feature link to destination via linkToDestination property (see links example)
  • ToC - links to destination support with title and page number

0.1.56

04 May 05:21
Compare
Choose a tag to compare
  • fix crash with rendering table of content
  • add support for linear gradient to ellipse

0.1.55

01 May 05:10
Compare
Choose a tag to compare
  • update pdfkit to 0.9.1
  • add borderColor for table cell (example borderColor: ['#ff00ff', '#00ffff', '#ff00ff', '#00ffff'] and see table example)
  • cache can be disabled via fontLayoutCache option. Example: printer.createPdfKitDocument(docDefinition, { fontLayoutCache: false }) on server-side and pdfMake.createPdf(docDefinition).download('document.pdf', null, { fontLayoutCache: false }); on client-side
  • normalized readFileSync method parameters in virtual file system same as in node.js
  • improved throwing of exception for opening image
  • fix download() options might be dropped
  • upgrade to webpack 4

0.1.54

17 Mar 07:20
Compare
Choose a tag to compare
  • fix page numbers for ToC with unbreakable content
  • updated fontkit to 1.8.0 for fix font problems
  • fix check for supported browsers
  • fix support file-saver on mobile devices
  • fix building pdfmake with pdf standard fonts

0.1.53

17 Feb 14:53
Compare
Choose a tag to compare
  • update file-saver to 2.0.1 witch solves used twice (issue #1634)

0.1.52

17 Feb 07:23
Compare
Choose a tag to compare
  • fix bug with creating links and set document info in client-side (in browser)

0.1.51

10 Feb 10:38
Compare
Choose a tag to compare
  • fix table fill color render with dontBreakRows

0.1.50

02 Feb 06:52
Compare
Choose a tag to compare
  • pdfkit updated to 0.9.0
  • fontkit updated to 1.7.8
  • Solved heavy use of memory
  • Supported PNG with alpha channel
  • Add encryption and access privileges, example of usage:
var docDefinition = {
	//userPassword: '123',
	ownerPassword: '123456',
	permissions: {
		printing: 'highResolution', //'lowResolution'
		modifying: false,
		copying: false,
		annotating: true,
		fillingForms: true,
		contentAccessibility: true,
		documentAssembly: true
	},
	content: [
		'...'
	]
};

0.1.41

27 Jan 14:26
Compare
Choose a tag to compare
  • Table of Content: custom number style to toc item (tocNumberStyle)
  • browser: add getStream method for receive pdfkit document

Bugfixes:

  • ordered list: fix ignored properties start and count with value 0
  • removed setImmediate polyfill because is not allowed on sites with Content Security Policy (CSP)
  • fix redering fill color in table with borders