* All of the [original document pages](http://tablesorter.com/docs/) have been included.
* Information from my blog post on [undocumented options](http://wowmotty.blogspot.com/2011/06/jquery-tablesorter-missing-docs.html) and lots of new demos have also been included.
* Change log moved from included text file into the [wiki documentation](https://github.com/Mottie/tablesorter/wiki/Change).
* Parsers for sorting text, alphanumeric text, URIs, integers, currency, floats, IP addresses, dates (ISO, long and short formats) & time. [Add your own easily](http://mottie.github.io/tablesorter/docs/example-parsers.html).
* Big shout-out to [Nick Craver](https://github.com/NickCraver) for getting rid of the `eval()` function that was previously needed for multi-column sorting.
* More version numbers added - when certain variable & functions were added or last updated.
* Update to use Bootstrap 3.1.1.
* Update to the latest testing files.
* Reorganize example section & cleanup.
* Fix demos that include togglable parsed data.
* Fix miscellaneous typos.
* Core
* Make `computeColumnIndex` function public ([get details](http://mottie.github.io/tablesorter/docs/index.html#function-computecolumnindex)).
* Move cache rows into the normalized data
* This is a *big change*, as the cache rows no longer exist and did break several widgets.
* This change allows for the Filter widget to better work with cached data (pager with `removeRows` set to `true`) & makes the sort tbodies widget possible.
* Updated core tests.
* Update `textExtraction` option
* Default option is now `"basic"` and checks for a data-attribute (set by by the new `textAttribute` option).
* Set this option to any string (besides an empty string) to revert back to the original method; this may be necessary in older versions of IE due to initialization speed issues.
* New [math widget demo](http://mottie.github.io/tablesorter/docs/example-widget-math.html) Replaces the previous alpha "Column sum widget" demo.
* This widget adds basic math capabilities; by default the following functions are available: count, sum, max, min, mean, median, mode, range, variance (sample & population), standard deviation (sample & population).
* Custom math functions can be added
* Data from cells is gathered from the row, cells "above" the target cell, column, or the entire table.
* This widget will output the table data as any of the following data formats:
* Any separator: comma (csv), tabs (tsv), spaces, etc
* Javascript array
* JSON
* Output the entire table, filtered or visible rows.
* Works with the filter & pager widgets.
* See [this demo](http://mottie.github.io/tablesorter/docs/example-widget-output.html) for more details.
* Pager
* The `ajaxObject` success function will no longer be called twice on initialization. Fixes [issue #540](https://github.com/Mottie/tablesorter/issues/540).
* Update to work with the filter widget & the modified row cache. Fixes [issue #515](https://github.com/Mottie/tablesorter/issues/515).
* Destroy method now clears the table cache & pager rows copy.
* Add `pageReset` option - pager resets to set page after filtering the table. Fixes [issue #565](https://github.com/Mottie/tablesorter/issues/565).
* Reflow & Reflow2 widget
* These widgets change the layout of the table when a set browser width breakpoint is reached.
* Each tbody cell will display the header cell text when the table reflows.
* See [this demo](http://mottie.github.io/tablesorter/docs/example-widget-reflow.html).
* Update to work properly with the filter widget. Fixes issues [#584](https://github.com/Mottie/tablesorter/issues/584) & [#370](https://github.com/Mottie/tablesorter/issues/370).
* Update method to bind table headers.
* Added remove function so this widget now works properly with the "updateAll" method.
* Static Row widget
* Modified from the [Tablesorter-Static-Row-Plugin](https://github.com/ascii-soup/Tablesorter-Static-Row-Plugin) by [ascii-soup](https://github.com/ascii-soup).
* This widget works with multiple tbodies (but not information only tbodies).
* Dynamically set & update the static row.
* For more details see [the demo](http://mottie.github.io/tablesorter/docs/example-widget-static-row.html).
* Fixes issues [#120](https://github.com/Mottie/tablesorter/issues/120) & [#472](https://github.com/Mottie/tablesorter/issues/472).
* StickyHeaders widget - the cloned table (sticky part) tbody & tfoot are now removed instead of hidden.
* Added pager `ajaxProcessing` documentation about extra values available for the output. Fixes [issue #576](https://github.com/Mottie/tablesorter/issues/576).
* When including a `false` parameter with the destroy method, class names will be left intact as before. But this now includes the reapplying of the uitheme and zebra widgets.
```js
$("table").trigger("destroy", [false]);
```
* This change will maintain the table's appearance.
* See this [Stackoverflow question](http://stackoverflow.com/q/22969340/145346) for why this change was made.
* Grouping widget: group name now saves after callback. Fixes [issue #514](https://github.com/Mottie/tablesorter/issues/514).
* Pager `processAjaxOnInit` now works with jQuery objects. Fixes [issue #572](https://github.com/Mottie/tablesorter/issues/572).
* Filter widget: `getFilters` will not cause a js error when it targets a non-tablesorter table.
* Added <code>tablesorter-hasChildRow</code> class name to all parents of child rows.
* Added `.tablesorter .filtered { display: none; }` to every included theme; needed to properly hide child rows
* Fixed pager so that if the last pager row has any child rows, they are now included. Fixes part of [issue #396](https://github.com/Mottie/tablesorter/issues/396).
* Check if cell has parser to catch undefined error. Fixes [issue #546](https://github.com/Mottie/tablesorter/pull/546). Thanks [antila](https://github.com/antila)!
* Column count is now correct with nested tables (with tfoot). Fixes [issue #547](https://github.com/Mottie/tablesorter/issues/547).