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
d1e9530bcf
commit
2281b8f2fb
59
README.md
59
README.md
@ -82,6 +82,19 @@ If you would like to contribute, please...
|
||||
|
||||
View the [complete change log here](//github.com/Mottie/tablesorter/wiki/Changes).
|
||||
|
||||
#### <a name="v2.23.1">Version 2.23.1</a> (8/19/2015)
|
||||
|
||||
* Pager
|
||||
* Include `settings` parameter from ajaxError method, between the `xhr` and `exception` parameters to match the order of parameters returned by jQuery [`.ajaxError()` method](http://api.jquery.com/ajaxError/).
|
||||
|
||||
```js
|
||||
ajaxError: function( config, xhr, settings, exception ){ return exception; };
|
||||
```
|
||||
|
||||
I didn't bump the minor version as this is somewhat on the edge of calling this a breaking change.
|
||||
|
||||
* Prevent js error when `$.tablesorter.showError()` is called without a string. Fixes [issue #997](https://github.com/Mottie/tablesorter/issues/997).
|
||||
|
||||
#### <a name="v2.23.0">Version 2.23.0</a> (8/17/2015)
|
||||
|
||||
* Core:
|
||||
@ -141,49 +154,3 @@ View the [complete change log here](//github.com/Mottie/tablesorter/wiki/Changes
|
||||
* Overall:
|
||||
* Set JSHint "undef" & "unused" options. Fixed issues.
|
||||
* The math widget was throwing a javascript error after missing a changed variable name & JSHint wasn't catching it, until now.
|
||||
|
||||
#### <a name="v2.22.4">Version 2.22.4</a> (7/28/2015)
|
||||
|
||||
* Overall
|
||||
* update debug logging. `console` is now called directly & includes grouping, tables, warning & errors.
|
||||
* Core
|
||||
* Replace `tbody` placeholder use of a `<span>` with a `<colgroup>`. Attempt to resolve IE error reported in [issue #938](https://github.com/Mottie/tablesorter/issues/938).
|
||||
* Fix `$.tablesorter.hasWidget` error introduced when fixing jscs issues.
|
||||
* Fix `$.tablesorter.isProcessing` error introduced when fixing jscs issues.
|
||||
* Update `isValueInArray` function to prevent js errors with invalid input.
|
||||
* Docs
|
||||
* Remove duplicate section in math widget docs.
|
||||
* Add resizable widget note about leaving `widthFixed` set to `false`. See [issue #958](https://github.com/Mottie/tablesorter/issues/958).
|
||||
* Update to use jQuery v1.11.3.
|
||||
* Change deprecated window load function.
|
||||
* Improve [two-digit year parser demo](http://mottie.github.io/tablesorter/docs/example-parsers-dates.html).
|
||||
* Minor updates.
|
||||
* Filter
|
||||
* Prevent invalid RegExp errors which occur while typing in an incomplete query.
|
||||
* Math
|
||||
* Ignored rows are now properly ignored in columns. Fixes [issue #976](https://github.com/Mottie/tablesorter/issues/976).
|
||||
* Output
|
||||
* Add `output_formatContent` callback - see [Stackoverflow](http://stackoverflow.com/q/31457323/145346).
|
||||
* Make compatible with the scroller widget when it hides columns. See [pull #970](https://github.com/Mottie/tablesorter/pull/970), thanks [VictorT83](https://github.com/VictorT83)!
|
||||
* Pager
|
||||
* Bind using unique event namespace. See [issue #961](https://github.com/Mottie/tablesorter/issues/961).
|
||||
* Scroller
|
||||
* Prevent error on destroy when not applied. See [issue #965](https://github.com/Mottie/tablesorter/issues/965).
|
||||
* Fix js error in old IE.
|
||||
* Delay resize after updateAll.
|
||||
* Include `sortEnd` in fixed column updates. See [issue #977](https://github.com/Mottie/tablesorter/issues/977).
|
||||
* Sort2Hash
|
||||
* This widget updates the location hash based on the table sort, and sets the table sort on initialization. [demo](http://mottie.github.io/tablesorter/docs/example-widget-sort-to-hash.html).
|
||||
* A user can share a link with others and have the table in the same sorted order.
|
||||
* The hash can be set to use header text and any text to indicate an ascending or descending sort.
|
||||
* Add text & saveSort override options. Fixes [issue #962](https://github.com/Mottie/tablesorter/issues/962).
|
||||
* Other minor revisions.
|
||||
* Parsers
|
||||
* Checkbox in multiple columns now toggles the row class correctly.
|
||||
* Grunt build: Add jscs checking & fix reported style issues.
|
||||
* Testing
|
||||
* Update QUnit to 1.18.0.
|
||||
* Add `removeWidget` test.
|
||||
* Add `isValueInArray` tests.
|
||||
* Add `isProcessing` tests.
|
||||
* Extras - dropping support for [quicksearch](https://github.com/riklomas/quicksearch) plugin.
|
||||
|
@ -1,6 +1,6 @@
|
||||
/*!
|
||||
* tablesorter (FORK) pager plugin
|
||||
* updated 8/17/2015 (v2.23.0)
|
||||
* updated 8/19/2015 (v2.23.1)
|
||||
*/
|
||||
/*jshint browser:true, jquery:true, unused:false */
|
||||
;(function($) {
|
||||
|
File diff suppressed because one or more lines are too long
6
dist/js/jquery.tablesorter.combined.js
vendored
6
dist/js/jquery.tablesorter.combined.js
vendored
@ -1,4 +1,4 @@
|
||||
/*! tablesorter (FORK) - updated 08-17-2015 (v2.23.0)*/
|
||||
/*! tablesorter (FORK) - updated 08-19-2015 (v2.23.1)*/
|
||||
/* 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.23.0 *//*
|
||||
/*! TableSorter (FORK) v2.23.1 *//*
|
||||
* Client-side table sorting with ease!
|
||||
* @requires jQuery v1.2.6+
|
||||
*
|
||||
@ -38,7 +38,7 @@
|
||||
|
||||
var ts = this;
|
||||
|
||||
ts.version = '2.23.0';
|
||||
ts.version = '2.23.1';
|
||||
|
||||
ts.parsers = [];
|
||||
ts.widgets = [];
|
||||
|
4
dist/js/jquery.tablesorter.combined.min.js
vendored
4
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.23.0 *//*
|
||||
/*! TableSorter (FORK) v2.23.1 *//*
|
||||
* Client-side table sorting with ease!
|
||||
* @requires jQuery v1.2.6+
|
||||
*
|
||||
@ -36,7 +36,7 @@
|
||||
|
||||
var ts = this;
|
||||
|
||||
ts.version = '2.23.0';
|
||||
ts.version = '2.23.1';
|
||||
|
||||
ts.parsers = [];
|
||||
ts.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
2
dist/js/jquery.tablesorter.widgets.js
vendored
2
dist/js/jquery.tablesorter.widgets.js
vendored
@ -1,4 +1,4 @@
|
||||
/*! tablesorter (FORK) - updated 08-17-2015 (v2.23.0)*/
|
||||
/*! tablesorter (FORK) - updated 08-19-2015 (v2.23.1)*/
|
||||
/* Includes widgets ( storage,uitheme,columns,filter,stickyHeaders,resizable,saveSort ) */
|
||||
(function(factory) {
|
||||
if (typeof define === 'function' && define.amd) {
|
||||
|
2
dist/js/jquery.tablesorter.widgets.min.js
vendored
2
dist/js/jquery.tablesorter.widgets.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
@ -507,9 +507,9 @@
|
||||
<br><br>
|
||||
</li>
|
||||
|
||||
<li>Pager plugin (<a href="example-pager.html">basic</a> & <a href="example-pager-ajax.html">ajax</a> demos; <span class="version updated">v2.23.0</span>).</li>
|
||||
<li>Pager plugin (<a href="example-pager.html">basic</a> & <a href="example-pager-ajax.html">ajax</a> demos; <span class="version updated">v2.23.1</span>).</li>
|
||||
<li>
|
||||
Pager widget (<a href="example-widget-pager.html">basic</a> & <a href="example-widget-pager-ajax.html">ajax</a> demos) (<span class="version">v2.12</span>; <span class="version updated">v2.23.0</span>).<br>
|
||||
Pager widget (<a href="example-widget-pager.html">basic</a> & <a href="example-widget-pager-ajax.html">ajax</a> demos) (<span class="version">v2.12</span>; <span class="version updated">v2.23.1</span>).<br>
|
||||
<br>
|
||||
</li>
|
||||
|
||||
@ -2158,7 +2158,7 @@ $(function(){
|
||||
<tr><td>50</td><td>filter</td><td>v1.4.3</td><td>1.4.3 (nextUntil & delegate)</td></tr>
|
||||
<tr><td>Last</td><td>pager plugin</td><td>v1.2.6</td><td></td></tr>
|
||||
<tr><td>55</td><td>pager widget</td><td>v1.7</td><td>1.7 (on)</td></tr>
|
||||
<tr><td>40</td><td>resizable</td><td>v1.4.1*</td><td>1.4 (isEmptyObject); 1.4.1 (parseJSON)*</td></tr>
|
||||
<tr><td>40</td><td>resizable</td><td>v1.4.1*</td><td>1.4.1 (parseJSON)*</td></tr>
|
||||
<tr><td>20</td><td>saveSort</td><td>v1.4.1</td><td>1.4.1 (parseJSON)*</td></tr>
|
||||
<tr><td>60</td><td>stickyHeaders</td><td>v1.4.3</td><td>1.4.3 (isWindow)**</td></tr>
|
||||
<tr><td>10</td><td>uitheme</td><td>v1.2.6</td><td></td></tr>
|
||||
@ -6962,7 +6962,7 @@ $.tablesorter.isDigit( "(2,345.67)" );</pre>
|
||||
|
||||
<tr id="function-showError">
|
||||
<td><a href="#" class="permalink">showError</a></td>
|
||||
<td>This function allows adding/removing a row to the thead, to display any errors (<span class="version">v2.15</span>; <span class="version updated">v2.23.0</span>).
|
||||
<td>This function allows adding/removing a row to the thead, to display any errors (<span class="version">v2.15</span>; <span class="version updated">v2.23.1</span>).
|
||||
<div class="collapsible">
|
||||
<p>This function is ONLY included within the <code>widget-pager.js</code> and <code>jquery.tablesorter.pager.js</code> files; in version 3+, I plan to add it as a selectable option in a build.</p>
|
||||
<p>In <span class="version updated">v2.23.1</span>, a <code>settings</code> parameter was included to make it match the parametered returned by the jQuery <a href="http://api.jquery.com/ajaxError/"><code>.ajaxError()</code> method</a>.</p>
|
||||
|
@ -4,7 +4,7 @@
|
||||
██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██▀▀ ▀▀▀▀██
|
||||
█████▀ ▀████▀ ██ ██ ▀████▀ ██ ██ ██ ██ ▀████▀ █████▀ ██ ██ █████▀
|
||||
*/
|
||||
/*! tablesorter (FORK) - updated 08-17-2015 (v2.23.0)*/
|
||||
/*! tablesorter (FORK) - updated 08-19-2015 (v2.23.1)*/
|
||||
/* 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.23.0 *//*
|
||||
/*! TableSorter (FORK) v2.23.1 *//*
|
||||
* Client-side table sorting with ease!
|
||||
* @requires jQuery v1.2.6+
|
||||
*
|
||||
@ -44,7 +44,7 @@
|
||||
|
||||
var ts = this;
|
||||
|
||||
ts.version = '2.23.0';
|
||||
ts.version = '2.23.1';
|
||||
|
||||
ts.parsers = [];
|
||||
ts.widgets = [];
|
||||
|
@ -1,4 +1,4 @@
|
||||
/*! TableSorter (FORK) v2.23.0 *//*
|
||||
/*! TableSorter (FORK) v2.23.1 *//*
|
||||
* Client-side table sorting with ease!
|
||||
* @requires jQuery v1.2.6+
|
||||
*
|
||||
@ -26,7 +26,7 @@
|
||||
|
||||
var ts = this;
|
||||
|
||||
ts.version = '2.23.0';
|
||||
ts.version = '2.23.1';
|
||||
|
||||
ts.parsers = [];
|
||||
ts.widgets = [];
|
||||
|
@ -4,7 +4,7 @@
|
||||
██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██▀▀ ▀▀▀▀██
|
||||
█████▀ ▀████▀ ██ ██ ▀████▀ ██ ██ ██ ██ ▀████▀ █████▀ ██ ██ █████▀
|
||||
*/
|
||||
/*! tablesorter (FORK) - updated 08-17-2015 (v2.23.0)*/
|
||||
/*! tablesorter (FORK) - updated 08-19-2015 (v2.23.1)*/
|
||||
/* Includes widgets ( storage,uitheme,columns,filter,stickyHeaders,resizable,saveSort ) */
|
||||
(function(factory) {
|
||||
if (typeof define === 'function' && define.amd) {
|
||||
|
@ -1,4 +1,4 @@
|
||||
/*! Widget: Pager - updated 8/17/2015 (v2.23.0) */
|
||||
/*! Widget: Pager - updated 8/19/2015 (v2.23.1) */
|
||||
/* Requires tablesorter v2.8+ and jQuery 1.7+
|
||||
* by Rob Garrison
|
||||
*/
|
||||
|
@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "tablesorter",
|
||||
"title": "tablesorter",
|
||||
"version": "2.23.0",
|
||||
"version": "2.23.1",
|
||||
"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.23.0",
|
||||
"version": "2.23.1",
|
||||
"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