Revision history for Perl extension PDF::Table.
Version 0.9.3 - 27.12.2006
----------------------------
Added backward compatibility and now again params with '-' front are supported.
Both params with '-'and without are valid and can be even mixed together.
I excuse for changing the interface before.
Added cell_props parameter wich can define properties for a single cell as specified by user.
Thanks for cell_props patch to Bodo Bauer.
Removed Version requirement of Perl 5.8.7 and only version ot 5.6.0 is required.
Thanks to Jonas Pasche for reporting it.
Updated examples/sample1.pl file to try the capabilities of the module immidiately after download.
Documentation Update.
Fixed bug with interpreting \n as special char but not as newline.
Thanks to Jonas Pasche for reporting it.
(reminder: text with \n must be enclosed in double quotes i.e. "text\nnewline" )
Fixed documentation inacuracy for text_block(). It is called as $pdftable->text_block() of course.
Thanks to Jonas Pasche for reporting it.
Fixed bug with first_line overlaping with former paragraph last line.
Thanks to Jonas Pasche for reporting it and contributing a patch.
Version 0.9.2 - 02.Oct.2006
----------------------------
Fixed bug with 'col_props->bg_color' overiding 'header_props->bg_color'
Thanks to Giulio Di Giuliomaria
Fixed some documentation inacuracys.
Added some new documentation.
'column_props->width' parameter changed to 'min_w'
Added example script to instantly test the module when downloaded.
See 'examples' into the tar.gz archive.
Version 0.9.1 - 18.Sep.2006
----------------------------
Removed Debug Message "Created New Page"
Fixed bug with not working header row bg_color parameter
Thanks to Bodo Bauer for submiting the patch.
Version 0.9 - 14.Sep.2006
----------------------------
Fixed 'fontsize' bug at line 234 to font_size and parameter is working correctly
Changed all parameters not to start with '-'
So now '-start_h' becomes only 'start_h'
Changed default font encoding form latin1 to UTF8
Added Default Values for next_h next_y parameters
Added Minimum value check for x y start_h start_y
Optimization for min row height calculations
Added 'new_page_func parameter'. This is should be a reference to function which is called every time when a new page needs to be created so the table can span.See online manual for more info how to use it.
Added Check if any text in sub text_block before spliting the parameter.
Fixed bug with infinite loop when spanning to a new page.
Splitting long words to parts because of breaking table cels
Parameter in text_block() 'parspace' space before block start (paragraph).
So the first line will start and height $ybase $parspace. So is every next paragraph into the block.
Undocumented Parameter in text_block() 'indent' indent of every line
Undocumented Parameter in text_block() 'flindent' indent of first line
Undocumented Parameter in text_block() 'fpindent' indent of first paragraph
The Above parameters are excluding each other in the following order: parspace,flindent,fpindent,indent
The one that is found first and has valid value is beeing used
Added Header Row support with repeat on every new page and different layout than the other rows
Parameter 'w' for table is not optional any more (could change)
Changed table width calculation and now module tries to use as much space as it is given but not more than it.
Default values for many options
Better source formatting
Fixed incorect y position returned from text_block()
Others that i dont remeber.