mirror of
https://github.com/Mottie/tablesorter.git
synced 2024-11-15 23:54:22 +00:00
version bump
This commit is contained in:
parent
00f5d89677
commit
eb84f87d5a
45
README.md
45
README.md
@ -101,6 +101,24 @@ If you would like to contribute, please...
|
||||
|
||||
View the [complete change log here](//github.com/Mottie/tablesorter/wiki/Changes).
|
||||
|
||||
#### <a name="v2.26.5">Version 2.26.5</a> (6/28/2016)
|
||||
|
||||
* Docs:
|
||||
* Optimize png images using using zopflipng; see [pull #1230](https://github.com/Mottie/tablesorter/pull/1230) thanks [@PeterDaveHello](https://github.com/PeterDaveHello)!
|
||||
* Add [`showProcessing`](https://mottie.github.io/tablesorter/docs/example-option-show-processing.html#display) toggle button.
|
||||
* Add demo link for css3 animated `showProcessing` icons that actually works!
|
||||
* Update to use jQuery v3.0.0.
|
||||
* Readme: Update for previous version bump.
|
||||
* Filter: Do not return altered filters variable. Fixes [issue #1237](https://github.com/Mottie/tablesorter/issues/1237).
|
||||
* Grouping:
|
||||
* Use correct pager row indexing. Fixes [issue #1232](https://github.com/Mottie/tablesorter/issues/1232).
|
||||
* Prevent JS error with ajax & filtering. Fixes [issue #1232](https://github.com/Mottie/tablesorter/issues/1232).
|
||||
* Fix lint issue.
|
||||
* Resizable: Adjust handles on pager complete.
|
||||
* Pager:
|
||||
* Fix code alignment.
|
||||
* Fix filtered regular expression definition.
|
||||
|
||||
#### <a name="v2.26.4">Version 2.26.4</a> (6/15/2016)
|
||||
|
||||
* Version bump due to merging issues.
|
||||
@ -115,30 +133,3 @@ View the [complete change log here](//github.com/Mottie/tablesorter/wiki/Changes
|
||||
* Filter: Fix select2 lint issue.
|
||||
* Scroller: Hide `<col>` with hidden columns. Fixes [issue #1229](https://github.com/Mottie/tablesorter/issues/1229).
|
||||
* Grunt: Update dependencies & fix pager indentation.
|
||||
|
||||
#### <a name="v2.26.2">Version 2.26.2</a> (5/28/2016)
|
||||
|
||||
* Docs:
|
||||
* Add missing "tablesorter-ignoreRow" class. See [issue #1218](https://github.com/Mottie/tablesorter/issues/1218).
|
||||
* Update jQuery to 1.12.3 & add migrate for v3.0.
|
||||
* Correct grouping & resizable last update.
|
||||
* Filter:
|
||||
* Remove not any match limitation. See [updated demo](https://mottie.github.io/tablesorter/docs/example-widget-filter-any-match.html).
|
||||
* Fix select2 v3 filter extension. See [issue #1216](https://github.com/Mottie/tablesorter/issues/1216); this code does not work with select2 v4.
|
||||
* Testing: `setFilters` last parameter now `true` by default.
|
||||
|
||||
#### <a name="v2.26.1">Version 2.26.1</a> (5/16/2016)
|
||||
|
||||
* Docs:
|
||||
* Update setFilters method.
|
||||
* Update playground links & cleanup.
|
||||
* Core: Minor organization of options.
|
||||
* Filter:
|
||||
* Minor organization of options.
|
||||
* Allow any match searches with no input.
|
||||
* Group:
|
||||
* Escape angled brackets in group names. Fixes [issue #1206](https://github.com/Mottie/tablesorter/issues/1206).
|
||||
* Fix HTML escape string & prevent undefined error. See [issue #1206](https://github.com/Mottie/tablesorter/issues/1206).
|
||||
* Ensure empty cells get a header. Fixes [issue #1209](https://github.com/Mottie/tablesorter/issues/1209).
|
||||
* Math: Add `math_completed` callback.
|
||||
* Resizable: update resizable handle position after init. Fixes [issue #1207](https://github.com/Mottie/tablesorter/issues/1207).
|
||||
|
@ -1,6 +1,6 @@
|
||||
/*!
|
||||
* tablesorter (FORK) pager plugin
|
||||
* updated 5/1/2016 (v2.26.0)
|
||||
* updated 6/28/2015 (v2.26.5)
|
||||
*/
|
||||
/*jshint browser:true, jquery:true, unused:false */
|
||||
;(function($) {
|
||||
|
File diff suppressed because one or more lines are too long
18
dist/js/jquery.tablesorter.combined.js
vendored
18
dist/js/jquery.tablesorter.combined.js
vendored
@ -1,4 +1,4 @@
|
||||
/*! tablesorter (FORK) - updated 06-15-2016 (v2.26.4)*/
|
||||
/*! tablesorter (FORK) - updated 06-28-2016 (v2.26.5)*/
|
||||
/* Includes widgets ( storage,uitheme,columns,filter,stickyHeaders,resizable,saveSort ) */
|
||||
(function(factory) {
|
||||
if (typeof define === 'function' && define.amd) {
|
||||
@ -10,7 +10,7 @@
|
||||
}
|
||||
}(function($) {
|
||||
|
||||
/*! TableSorter (FORK) v2.26.4 *//*
|
||||
/*! TableSorter (FORK) v2.26.5 *//*
|
||||
* Client-side table sorting with ease!
|
||||
* @requires jQuery v1.2.6+
|
||||
*
|
||||
@ -33,7 +33,7 @@
|
||||
'use strict';
|
||||
var ts = $.tablesorter = {
|
||||
|
||||
version : '2.26.4',
|
||||
version : '2.26.5',
|
||||
|
||||
parsers : [],
|
||||
widgets : [],
|
||||
@ -3098,7 +3098,7 @@
|
||||
|
||||
})(jQuery);
|
||||
|
||||
/*! Widget: filter - updated 5/28/2016 (v2.26.2) *//*
|
||||
/*! Widget: filter - updated 6/28/2015 (v2.26.5) *//*
|
||||
* Requires tablesorter v2.8+ and jQuery 1.7+
|
||||
* by Rob Garrison
|
||||
*/
|
||||
@ -3729,14 +3729,16 @@
|
||||
// encode or decode filters for storage; see #1026
|
||||
processFilters: function( filters, encode ) {
|
||||
var indx,
|
||||
// fixes #1237; previously returning an encoded "filters" value
|
||||
result = [],
|
||||
mode = encode ? encodeURIComponent : decodeURIComponent,
|
||||
len = filters.length;
|
||||
for ( indx = 0; indx < len; indx++ ) {
|
||||
if ( filters[ indx ] ) {
|
||||
filters[ indx ] = mode( filters[ indx ] );
|
||||
result[ indx ] = mode( filters[ indx ] );
|
||||
}
|
||||
}
|
||||
return filters;
|
||||
return result;
|
||||
},
|
||||
setDefaults: function( table, c, wo ) {
|
||||
var isArray, saved, indx, col, $filters,
|
||||
@ -5224,7 +5226,7 @@
|
||||
|
||||
})(jQuery, window);
|
||||
|
||||
/*! Widget: resizable - updated 5/16/2015 (v2.26.1) */
|
||||
/*! Widget: resizable - updated 6/28/2015 (v2.26.5) */
|
||||
/*jshint browser:true, jquery:true, unused:false */
|
||||
;(function ($, window) {
|
||||
'use strict';
|
||||
@ -5480,7 +5482,7 @@
|
||||
|
||||
// right click to reset columns to default widths
|
||||
c.$table
|
||||
.bind( 'columnUpdate' + namespace, function() {
|
||||
.bind( 'columnUpdate' + namespace + ' pagerComplete' + namespace, function() {
|
||||
ts.resizable.setHandlePosition( c, wo );
|
||||
})
|
||||
.find( 'thead:first' )
|
||||
|
8
dist/js/jquery.tablesorter.combined.min.js
vendored
8
dist/js/jquery.tablesorter.combined.min.js
vendored
File diff suppressed because one or more lines are too long
4
dist/js/jquery.tablesorter.js
vendored
4
dist/js/jquery.tablesorter.js
vendored
@ -8,7 +8,7 @@
|
||||
}
|
||||
}(function($) {
|
||||
|
||||
/*! TableSorter (FORK) v2.26.4 *//*
|
||||
/*! TableSorter (FORK) v2.26.5 *//*
|
||||
* Client-side table sorting with ease!
|
||||
* @requires jQuery v1.2.6+
|
||||
*
|
||||
@ -31,7 +31,7 @@
|
||||
'use strict';
|
||||
var ts = $.tablesorter = {
|
||||
|
||||
version : '2.26.4',
|
||||
version : '2.26.5',
|
||||
|
||||
parsers : [],
|
||||
widgets : [],
|
||||
|
2
dist/js/jquery.tablesorter.min.js
vendored
2
dist/js/jquery.tablesorter.min.js
vendored
File diff suppressed because one or more lines are too long
14
dist/js/jquery.tablesorter.widgets.js
vendored
14
dist/js/jquery.tablesorter.widgets.js
vendored
@ -1,4 +1,4 @@
|
||||
/*! tablesorter (FORK) - updated 06-15-2016 (v2.26.4)*/
|
||||
/*! tablesorter (FORK) - updated 06-28-2016 (v2.26.5)*/
|
||||
/* Includes widgets ( storage,uitheme,columns,filter,stickyHeaders,resizable,saveSort ) */
|
||||
(function(factory) {
|
||||
if (typeof define === 'function' && define.amd) {
|
||||
@ -366,7 +366,7 @@
|
||||
|
||||
})(jQuery);
|
||||
|
||||
/*! Widget: filter - updated 5/28/2016 (v2.26.2) *//*
|
||||
/*! Widget: filter - updated 6/28/2015 (v2.26.5) *//*
|
||||
* Requires tablesorter v2.8+ and jQuery 1.7+
|
||||
* by Rob Garrison
|
||||
*/
|
||||
@ -997,14 +997,16 @@
|
||||
// encode or decode filters for storage; see #1026
|
||||
processFilters: function( filters, encode ) {
|
||||
var indx,
|
||||
// fixes #1237; previously returning an encoded "filters" value
|
||||
result = [],
|
||||
mode = encode ? encodeURIComponent : decodeURIComponent,
|
||||
len = filters.length;
|
||||
for ( indx = 0; indx < len; indx++ ) {
|
||||
if ( filters[ indx ] ) {
|
||||
filters[ indx ] = mode( filters[ indx ] );
|
||||
result[ indx ] = mode( filters[ indx ] );
|
||||
}
|
||||
}
|
||||
return filters;
|
||||
return result;
|
||||
},
|
||||
setDefaults: function( table, c, wo ) {
|
||||
var isArray, saved, indx, col, $filters,
|
||||
@ -2492,7 +2494,7 @@
|
||||
|
||||
})(jQuery, window);
|
||||
|
||||
/*! Widget: resizable - updated 5/16/2015 (v2.26.1) */
|
||||
/*! Widget: resizable - updated 6/28/2015 (v2.26.5) */
|
||||
/*jshint browser:true, jquery:true, unused:false */
|
||||
;(function ($, window) {
|
||||
'use strict';
|
||||
@ -2748,7 +2750,7 @@
|
||||
|
||||
// right click to reset columns to default widths
|
||||
c.$table
|
||||
.bind( 'columnUpdate' + namespace, function() {
|
||||
.bind( 'columnUpdate' + namespace + ' pagerComplete' + namespace, function() {
|
||||
ts.resizable.setHandlePosition( c, wo );
|
||||
})
|
||||
.find( 'thead:first' )
|
||||
|
6
dist/js/jquery.tablesorter.widgets.min.js
vendored
6
dist/js/jquery.tablesorter.widgets.min.js
vendored
File diff suppressed because one or more lines are too long
4
dist/js/widgets/widget-filter.min.js
vendored
4
dist/js/widgets/widget-filter.min.js
vendored
File diff suppressed because one or more lines are too long
2
dist/js/widgets/widget-grouping.min.js
vendored
2
dist/js/widgets/widget-grouping.min.js
vendored
File diff suppressed because one or more lines are too long
2
dist/js/widgets/widget-pager.min.js
vendored
2
dist/js/widgets/widget-pager.min.js
vendored
File diff suppressed because one or more lines are too long
2
dist/js/widgets/widget-resizable.min.js
vendored
2
dist/js/widgets/widget-resizable.min.js
vendored
File diff suppressed because one or more lines are too long
@ -4,7 +4,7 @@
|
||||
██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██▀▀ ▀▀▀██
|
||||
█████▀ ▀████▀ ██ ██ ▀████▀ ██ ██ ██ ██ ▀████▀ █████▀ ██ ██ █████▀
|
||||
*/
|
||||
/*! tablesorter (FORK) - updated 06-15-2016 (v2.26.4)*/
|
||||
/*! tablesorter (FORK) - updated 06-28-2016 (v2.26.5)*/
|
||||
/* Includes widgets ( storage,uitheme,columns,filter,stickyHeaders,resizable,saveSort ) */
|
||||
(function(factory) {
|
||||
if (typeof define === 'function' && define.amd) {
|
||||
@ -16,7 +16,7 @@
|
||||
}
|
||||
}(function($) {
|
||||
|
||||
/*! TableSorter (FORK) v2.26.4 *//*
|
||||
/*! TableSorter (FORK) v2.26.5 *//*
|
||||
* Client-side table sorting with ease!
|
||||
* @requires jQuery v1.2.6+
|
||||
*
|
||||
@ -39,7 +39,7 @@
|
||||
'use strict';
|
||||
var ts = $.tablesorter = {
|
||||
|
||||
version : '2.26.4',
|
||||
version : '2.26.5',
|
||||
|
||||
parsers : [],
|
||||
widgets : [],
|
||||
@ -3104,7 +3104,7 @@
|
||||
|
||||
})(jQuery);
|
||||
|
||||
/*! Widget: filter - updated 5/28/2016 (v2.26.2) *//*
|
||||
/*! Widget: filter - updated 6/28/2015 (v2.26.5) *//*
|
||||
* Requires tablesorter v2.8+ and jQuery 1.7+
|
||||
* by Rob Garrison
|
||||
*/
|
||||
@ -3735,14 +3735,16 @@
|
||||
// encode or decode filters for storage; see #1026
|
||||
processFilters: function( filters, encode ) {
|
||||
var indx,
|
||||
// fixes #1237; previously returning an encoded "filters" value
|
||||
result = [],
|
||||
mode = encode ? encodeURIComponent : decodeURIComponent,
|
||||
len = filters.length;
|
||||
for ( indx = 0; indx < len; indx++ ) {
|
||||
if ( filters[ indx ] ) {
|
||||
filters[ indx ] = mode( filters[ indx ] );
|
||||
result[ indx ] = mode( filters[ indx ] );
|
||||
}
|
||||
}
|
||||
return filters;
|
||||
return result;
|
||||
},
|
||||
setDefaults: function( table, c, wo ) {
|
||||
var isArray, saved, indx, col, $filters,
|
||||
@ -5230,7 +5232,7 @@
|
||||
|
||||
})(jQuery, window);
|
||||
|
||||
/*! Widget: resizable - updated 5/16/2015 (v2.26.1) */
|
||||
/*! Widget: resizable - updated 6/28/2015 (v2.26.5) */
|
||||
/*jshint browser:true, jquery:true, unused:false */
|
||||
;(function ($, window) {
|
||||
'use strict';
|
||||
@ -5486,7 +5488,7 @@
|
||||
|
||||
// right click to reset columns to default widths
|
||||
c.$table
|
||||
.bind( 'columnUpdate' + namespace, function() {
|
||||
.bind( 'columnUpdate' + namespace + ' pagerComplete' + namespace, function() {
|
||||
ts.resizable.setHandlePosition( c, wo );
|
||||
})
|
||||
.find( 'thead:first' )
|
||||
|
@ -1,4 +1,4 @@
|
||||
/*! TableSorter (FORK) v2.26.4 *//*
|
||||
/*! TableSorter (FORK) v2.26.5 *//*
|
||||
* Client-side table sorting with ease!
|
||||
* @requires jQuery v1.2.6+
|
||||
*
|
||||
@ -21,7 +21,7 @@
|
||||
'use strict';
|
||||
var ts = $.tablesorter = {
|
||||
|
||||
version : '2.26.4',
|
||||
version : '2.26.5',
|
||||
|
||||
parsers : [],
|
||||
widgets : [],
|
||||
|
@ -4,7 +4,7 @@
|
||||
██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██▀▀ ▀▀▀██
|
||||
█████▀ ▀████▀ ██ ██ ▀████▀ ██ ██ ██ ██ ▀████▀ █████▀ ██ ██ █████▀
|
||||
*/
|
||||
/*! tablesorter (FORK) - updated 06-15-2016 (v2.26.4)*/
|
||||
/*! tablesorter (FORK) - updated 06-28-2016 (v2.26.5)*/
|
||||
/* Includes widgets ( storage,uitheme,columns,filter,stickyHeaders,resizable,saveSort ) */
|
||||
(function(factory) {
|
||||
if (typeof define === 'function' && define.amd) {
|
||||
@ -372,7 +372,7 @@
|
||||
|
||||
})(jQuery);
|
||||
|
||||
/*! Widget: filter - updated 5/28/2016 (v2.26.2) *//*
|
||||
/*! Widget: filter - updated 6/28/2015 (v2.26.5) *//*
|
||||
* Requires tablesorter v2.8+ and jQuery 1.7+
|
||||
* by Rob Garrison
|
||||
*/
|
||||
@ -1003,14 +1003,16 @@
|
||||
// encode or decode filters for storage; see #1026
|
||||
processFilters: function( filters, encode ) {
|
||||
var indx,
|
||||
// fixes #1237; previously returning an encoded "filters" value
|
||||
result = [],
|
||||
mode = encode ? encodeURIComponent : decodeURIComponent,
|
||||
len = filters.length;
|
||||
for ( indx = 0; indx < len; indx++ ) {
|
||||
if ( filters[ indx ] ) {
|
||||
filters[ indx ] = mode( filters[ indx ] );
|
||||
result[ indx ] = mode( filters[ indx ] );
|
||||
}
|
||||
}
|
||||
return filters;
|
||||
return result;
|
||||
},
|
||||
setDefaults: function( table, c, wo ) {
|
||||
var isArray, saved, indx, col, $filters,
|
||||
@ -2498,7 +2500,7 @@
|
||||
|
||||
})(jQuery, window);
|
||||
|
||||
/*! Widget: resizable - updated 5/16/2015 (v2.26.1) */
|
||||
/*! Widget: resizable - updated 6/28/2015 (v2.26.5) */
|
||||
/*jshint browser:true, jquery:true, unused:false */
|
||||
;(function ($, window) {
|
||||
'use strict';
|
||||
@ -2754,7 +2756,7 @@
|
||||
|
||||
// right click to reset columns to default widths
|
||||
c.$table
|
||||
.bind( 'columnUpdate' + namespace, function() {
|
||||
.bind( 'columnUpdate' + namespace + ' pagerComplete' + namespace, function() {
|
||||
ts.resizable.setHandlePosition( c, wo );
|
||||
})
|
||||
.find( 'thead:first' )
|
||||
|
@ -1,4 +1,4 @@
|
||||
/*! Widget: filter - updated 5/28/2016 (v2.26.2) *//*
|
||||
/*! Widget: filter - updated 6/28/2015 (v2.26.5) *//*
|
||||
* Requires tablesorter v2.8+ and jQuery 1.7+
|
||||
* by Rob Garrison
|
||||
*/
|
||||
|
@ -1,4 +1,4 @@
|
||||
/*! Widget: grouping - updated 5/16/2015 (v2.26.1) *//*
|
||||
/*! Widget: grouping - updated 6/28/2015 (v2.26.5) *//*
|
||||
* Requires tablesorter v2.8+ and jQuery 1.7+
|
||||
* by Rob Garrison
|
||||
*/
|
||||
|
@ -1,4 +1,4 @@
|
||||
/*! Widget: Pager - updated 5/1/2016 (v2.26.0) */
|
||||
/*! Widget: Pager - updated 6/28/2015 (v2.26.5) */
|
||||
/* Requires tablesorter v2.8+ and jQuery 1.7+
|
||||
* by Rob Garrison
|
||||
*/
|
||||
|
@ -1,4 +1,4 @@
|
||||
/*! Widget: resizable - updated 5/16/2015 (v2.26.1) */
|
||||
/*! Widget: resizable - updated 6/28/2015 (v2.26.5) */
|
||||
/*jshint browser:true, jquery:true, unused:false */
|
||||
;(function ($, window) {
|
||||
'use strict';
|
||||
|
@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "tablesorter",
|
||||
"title": "tablesorter",
|
||||
"version": "2.26.4",
|
||||
"version": "2.26.5",
|
||||
"description": "tablesorter (FORK) 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.",
|
||||
"author": {
|
||||
"name": "Christian Bach",
|
||||
|
@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "tablesorter",
|
||||
"title": "tablesorter",
|
||||
"version": "2.26.4",
|
||||
"version": "2.26.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