The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
Revision history for Tickit-Widget-Table

0.200     2014-08-16 18:43:32+01:00 Europe/London
	Renamed from Tickit::Widget::Table::Paged to Tickit::Widget::Table.
	The old Tickit::Widget::Table implementation didn't work out
	particularly well, and currently fails tests.

	New features:
	* Adapter support - underlying data is provided by an
	Adapter::Async::OrderedList instance, allowing the table widget to
	receive updates when the underlying data source changes
	* Row visibility - allows filtering rows to show a subset of data,
	see the ->filter method for more details
	* Transformations - used for applying specific formatting or text
	conversion, such as timestamp => date and time representation or
	word highlighting

	Bugs fixed:
	* Avoid warnings when no alignment is specified (default is 'left')
	* Fix numeric alignment (can now use 0.5, 1.0 etc. as originally
	intended, previously it had to be 'centre', 'right' etc.)
	* Scrollbar rendering - sometimes this extended into header due
	to incorrect ratio calculation

	Bugs introduced:
	* Filtering does not yet work reliably. It might not work at all.
	You should probably wait for the next version.
	* Scrolling past the start or the end of the table is possible -
	there's a plan to support "wrapped" tables but that requires splitting
	the scrollbar, maybe fixed iin the next version

0.004     2014-04-22 02:33:42+01:00 Europe/London
	New features:
	* ->data method returns the arrayref holding table data
	* ->selected_rows returns all selected rows (highlighted row only
	if we're not in multiselect mode). (both features thanks to a patch
	from buu)

0.003     2014-04-22 02:02:25+01:00 Europe/London
	No new features.

	Bugs fixed:
	* Fixed off-by-one on scrollrect (thanks LeoNerd)
	* An exception could be raised when scrolling off the end of a list,
	due to incorrect scrollbar height calculation (thanks buu)

0.002     2013-11-10 01:26:54 Europe/London
	New features:
	* Allow setting on_activate at instantiation or via accessor
	(previously had to set ->{on_activate} manually)
	* Multiselection support (disabled by default)

0.001     2013-09-15 02:55:07 Europe/London
	Initial CPAN release