mirror of
https://github.com/Mottie/tablesorter.git
synced 2025-01-12 15:24:21 +00:00
version bump
This commit is contained in:
parent
69be9beb99
commit
d1a9f2ee22
90
README.md
90
README.md
@ -38,12 +38,24 @@ tablesorter can successfully parse and sort many types of data including linked
|
||||
* 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.
|
||||
* Big thanks to [thezoggy](https://github.com/thezoggy) for helping with code, themes and providing valuable feedback.
|
||||
* Big thanks to [ThsSin-](https://github.com/TheSin-) for taking over for a while and also providing valuable feedback.
|
||||
* Also extra thanks to [christhomas](https://github.com/christhomas) and [Lynesth](https://github.com/Lynesth) for help with code.
|
||||
* And, of course thanks to everyone else that has contributed, and continues to contribute to this forked project!
|
||||
|
||||
### Change Log
|
||||
|
||||
View the [complete listing here](https://github.com/Mottie/tablesorter/wiki/Change).
|
||||
|
||||
#### <a name="v2.14.5">Version 2.14.5</a> (12/16/2013)
|
||||
|
||||
* Pager
|
||||
* Fix pager update when ajax returns no rows. Fixes [issue #456](https://github.com/Mottie/tablesorter/issues/456).
|
||||
* Add pager `processAjaxOnInit` option. Fixes [issue #424](https://github.com/Mottie/tablesorter/issues/424).
|
||||
* Fix & document inconsistentcies in pager triggered event parameters.
|
||||
* Disable pager arrows & show zero in display when `totalPages` is zero. Fixes [issue #460](https://github.com/Mottie/tablesorter/issues/460).
|
||||
* Filter row is now included in sticky header while using the pager. Fixes [issue #449](https://github.com/Mottie/tablesorter/issues/449).
|
||||
* Lots of thanks to [Lynesth](https://github.com/Lynesth) for sharing code fixes :)
|
||||
* Fix `stickyHeaders_attachTo` no positioning correctly. See [issue #295](https://github.com/Mottie/tablesorter/issues/295).
|
||||
|
||||
#### <a name="v2.14.4">Version 2.14.4</a> (12/14/2013)
|
||||
|
||||
* Add Bootstrap 2 theme. Thanks to [themilkman](https://github.com/themilkman).
|
||||
@ -197,81 +209,3 @@ View the [complete listing here](https://github.com/Mottie/tablesorter/wiki/Chan
|
||||
* Storage utility (`$.tablesorter.storage`) now accepts a jQuery object as well as a DOM object of the table
|
||||
* `$.tablesorter.storage( $('#mytable'), 'myvariable', 'YAY' );`, or
|
||||
* `$.tablesorter.storage( $('#mytable')[0], 'myvariable', 'YAY' );`
|
||||
|
||||
#### <a name="v2.13.3">Version 2.13.3</a> (11/9/2013)
|
||||
|
||||
* Pager (plugin/widget)
|
||||
* Fixed initial filter settings when using pager ajax. Fixes [issue #388](https://github.com/Mottie/tablesorter/issues/388).
|
||||
* Fixed ajax pager not recognizing column sorting. Fixes [issue #408](https://github.com/Mottie/tablesorter/issues/408).
|
||||
* The core plugin now remove rows from table when using pager ajax. Fixes [issue #411](https://github.com/Mottie/tablesorter/issues/411).
|
||||
|
||||
* Filter widget
|
||||
* Renamed all variables & restructured the entire widget.
|
||||
* Added better integration with the pager plugin/widget to minimize ajax server calls by getting default filter settings. Fixes [issue #388](https://github.com/Mottie/tablesorter/issues/388).
|
||||
* Fixed filter formatter HTML5 spinner to properly find exact matches.
|
||||
* Added a new fuzzy search parameter
|
||||
* Fuzzy searches match sequential characters, similar to how Sublime Text searches work
|
||||
* Start the search with a tilde `~` followed by any sequential characters to match.
|
||||
* Examples: `~bee` will match both "Bruce Lee" and "Brenda Lee", `~bcd` will find "Brandon Clark" and `~piano` will find "Philip Aaron Wong"
|
||||
* Added `filter_anyMatch`
|
||||
* Set this option to `true` when using an external search filter.
|
||||
* Setting this option should work properly with or without the column filters. The only issue you would have is if you triggered a search on the table using an array with undefined or null array values.
|
||||
* Some limitations are applied when using any match. Search operators, range queries and not-matches are not allowed.
|
||||
* See [the demo](http://mottie.github.io/tablesorter/docs/example-widget-filter-any-match.html) for examples & more details.
|
||||
* Thanks to [@prainho](https://github.com/prainho) for the suggestion, code and feedback in [issue #405](https://github.com/Mottie/tablesorter/issues/405)!
|
||||
* Modified the `bindSearch` function to allow using it on external filters:
|
||||
* Use as follows: `$.tablesorter.filter.bindSearch( $('table'), $('.search') );`
|
||||
* Binding the search input using this method allows the search to use `filter_liveSearch`, delayed searching and pressing escape to clear the search.
|
||||
* See the [filter any match demo](http://mottie.github.io/tablesorter/docs/example-widget-filter-any-match.html) for example usage.
|
||||
|
||||
* UITheme widget
|
||||
* Added caption styling
|
||||
* Updated css for jQuery UI theme and Bootstrap theme.
|
||||
|
||||
* Theme, demo & doc updates
|
||||
* Added jQuery UI theme switcher to [jQuery UI theme demo](http://mottie.github.io/tablesorter/docs/example-widget-ui-theme.html) & [jQuery UI filter formatter demo](http://mottie.github.io/tablesorter/docs/example-widget-filter-formatter-1.html).
|
||||
* Added ignore articles parser to [saveSort widget demo](http://mottie.github.io/tablesorter/docs/example-widget-savesort.html).
|
||||
* Updated history of changes made to `cssAsc`, `cssDesc` & `cssHeader` on the main documentation page. See [issue #407](https://github.com/Mottie/tablesorter/issues/407).
|
||||
|
||||
#### <a name="v2.13.2">Version 2.13.2</a> (11/2/2013)
|
||||
|
||||
* Updated pager & filter widget to work when the pager `countChildRows` option is `true`:
|
||||
* Filter widget now properly added a "filtered" class to child rows
|
||||
* Pager plugin & widget now properly calculate a correct total number of rows
|
||||
* See [issue #396](https://github.com/Mottie/tablesorter/issues/396).
|
||||
* Updated editable widget to target table cell children if they exist
|
||||
* This fixes the issue in IE where making a table element contenteditable is not allowed.
|
||||
* See [issue #404](https://github.com/Mottie/tablesorter/issues/404) for further details.
|
||||
|
||||
#### <a name="v2.13.1">Version 2.13.1</a> (10/31/2013)
|
||||
|
||||
* Fixed filter widget issues
|
||||
* filter indexing will now be correct, even if a "tablesorter-filter" input/select doesn't exist in the filter row
|
||||
* Already parsed filters (filter-formatter) will not attempt to reparse the value; problem was caused by parsed dates.
|
||||
|
||||
#### <a name="v2.13">Version 2.13</a> (10/30/2013)
|
||||
|
||||
* Added a "Development" branch to the repository.
|
||||
* I have started development on version 3 of tablesorter and this branch will have a basic structure to allow modularization of tablesorter.
|
||||
* So far, only the tablesorter core has been restructured and reorganized.
|
||||
* Added basic Zepto support to the core and some basic widgets, this is a work-in-progress. See [issue #398](https://github.com/Mottie/tablesorter/issues/398).
|
||||
|
||||
* Ensure resized headers have stored data, or provide a fallback. Fixes [issue #394](https://github.com/Mottie/tablesorter/issues/394).
|
||||
* Added pager `countChildRows` option (plugin & widget)
|
||||
* When `true`, the pager treats child rows as if it were a parent row and strictly enforces showing only the set number of pager rows.
|
||||
* This can cause problems as a child row may not appear associated with its parent, may be split across pages or possibly distort the table layout if the parent or child row contain row or cell spans.
|
||||
* When `false` the pager always includes the child row with its parent, ignoring the set pager size.
|
||||
* See [issue #396](https://github.com/Mottie/tablesorter/issues/396).
|
||||
* Removed triggered change event to fix [issue #400](https://github.com/Mottie/tablesorter/issues/400).
|
||||
* Merged in filter formatter fix for jQuery UI dateFormat conflict; [pull #403](https://github.com/Mottie/tablesorter/pull/403). Thanks @Craga89!
|
||||
|
||||
* Grouping widget update
|
||||
* Added `group_separator` option which is used when a `group-separator-#` class name is applied
|
||||
* Updated [grouping widget demo](http://mottie.github.io/tablesorter/docs/example-widget-grouping.html).
|
||||
* Added a file-type parser
|
||||
* Optimally used with the grouping widget to sort similar file types (e.g. video extensions: .mp4, .avi, .mov, etc)
|
||||
* [File type sorting demo](http://mottie.github.io/tablesorter/docs/example-parsers-file-type.html) added.
|
||||
* Updated LESS theme to work properly with LESS 4.1+
|
||||
* Other changes
|
||||
* Improved `formatFloat()` replace method.
|
||||
* Sorting a zero hex value (`0x00`) is now possible.
|
||||
|
@ -1,6 +1,6 @@
|
||||
/*!
|
||||
* tablesorter pager plugin
|
||||
* updated 12/14/2013 (v2.14.4)
|
||||
* updated 12/16/2013 (v2.14.5)
|
||||
*/
|
||||
/*jshint browser:true, jquery:true, unused:false */
|
||||
;(function($) {
|
||||
|
4
addons/pager/jquery.tablesorter.pager.min.js
vendored
4
addons/pager/jquery.tablesorter.pager.min.js
vendored
File diff suppressed because one or more lines are too long
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "tablesorter",
|
||||
"version": "2.14.4",
|
||||
"version": "2.14.5",
|
||||
"dependencies": {
|
||||
"jquery": ">=1.2.6"
|
||||
}
|
||||
|
@ -1,5 +1,5 @@
|
||||
/**!
|
||||
* TableSorter 2.14.4 - Client-side table sorting with ease!
|
||||
* TableSorter 2.14.5 - Client-side table sorting with ease!
|
||||
* @requires jQuery v1.2.6+
|
||||
*
|
||||
* Copyright (c) 2007 Christian Bach
|
||||
@ -24,7 +24,7 @@
|
||||
|
||||
var ts = this;
|
||||
|
||||
ts.version = "2.14.4";
|
||||
ts.version = "2.14.5";
|
||||
|
||||
ts.parsers = [];
|
||||
ts.widgets = [];
|
||||
|
@ -1,4 +1,4 @@
|
||||
/*! tableSorter 2.8+ widgets - updated 12/14/2013 (v2.14.4)
|
||||
/*! tableSorter 2.8+ widgets - updated 12/16/2013 (v2.14.5)
|
||||
*
|
||||
* Column Styles
|
||||
* Column Filters
|
||||
|
8
js/jquery.tablesorter.widgets.min.js
vendored
8
js/jquery.tablesorter.widgets.min.js
vendored
File diff suppressed because one or more lines are too long
@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "tablesorter",
|
||||
"title": "tablesorter",
|
||||
"version": "2.14.4",
|
||||
"version": "2.14.5",
|
||||
"description": "tablesorter is a jQuery plugin for turning a standard HTML table with THEAD and TBODY tags into a sortable table without page refreshes. tablesorter can successfully parse and sort many types of data including linked data in a cell.\n\nThis forked version adds lots of new enhancements including: alphanumeric sorting, pager callback functons, multiple widgets providing column styling, ui theme application, sticky headers, column filters and resizer, as well as extended documentation with a lot more demos.",
|
||||
"author": {
|
||||
"name": "Christian Bach",
|
||||
|
@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "tablesorter",
|
||||
"title": "tablesorter",
|
||||
"version": "2.14.4",
|
||||
"version": "2.14.5",
|
||||
"description": "tablesorter is a jQuery plugin for turning a standard HTML table with THEAD and TBODY tags into a sortable table without page refreshes. tablesorter can successfully parse and sort many types of data including linked data in a cell.\n\nThis forked version adds lots of new enhancements including: alphanumeric sorting, pager callback functons, multiple widgets providing column styling, ui theme application, sticky headers, column filters and resizer, as well as extended documentation with a lot more demos.",
|
||||
"author": {
|
||||
"name": "Christian Bach",
|
||||
|
Loading…
Reference in New Issue
Block a user