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
21b205dcd3
commit
3a12af8e85
10
README.md
10
README.md
@ -47,6 +47,16 @@ tablesorter can successfully parse and sort many types of data including linked
|
||||
|
||||
View the [complete listing here](https://github.com/Mottie/tablesorter/wiki/Change).
|
||||
|
||||
#### <a name="v2.16.1">Version 2.16.1-beta</a> (4/22/2014)
|
||||
|
||||
* Docs:
|
||||
* Add note about using buttons in forms (include `type="button"`). Fixes [issue #543](https://github.com/Mottie/tablesorter/issues/543).
|
||||
* Add example link to select2 demo for the `filter_selectSource` entry.
|
||||
* Filter widget: setFilters now supports passing it a jQuery table object
|
||||
* Static Row widget
|
||||
* Add more inline comments
|
||||
* Fix issue with not repositioning static row properly within mutliple tbodies.
|
||||
|
||||
#### <a name="v2.16.0">Version 2.16.0-beta</a> (4/20/2014)
|
||||
|
||||
* Doc & testing updates
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "tablesorter",
|
||||
"version": "2.16.0-beta",
|
||||
"version": "2.16.1-beta",
|
||||
"dependencies": {
|
||||
"jquery": ">=1.2.6"
|
||||
},
|
||||
|
@ -1,5 +1,5 @@
|
||||
/**!
|
||||
* TableSorter 2.16.0 beta - Client-side table sorting with ease!
|
||||
* TableSorter 2.16.1-beta - 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.16.0-beta";
|
||||
ts.version = "2.16.1-beta";
|
||||
|
||||
ts.parsers = [];
|
||||
ts.widgets = [];
|
||||
|
4
js/jquery.tablesorter.min.js
vendored
4
js/jquery.tablesorter.min.js
vendored
File diff suppressed because one or more lines are too long
@ -1,4 +1,4 @@
|
||||
/*! Filter widget formatter functions - updated 4/20/2014 (v2.16)
|
||||
/*! Filter widget formatter functions - updated 4/22/2014 (v2.16.1-beta)
|
||||
* requires: jQuery 1.7.2+, tableSorter 2.16+, filter widget 2.16+ and select2 v3.4.6+ plugin
|
||||
*/
|
||||
/*jshint browser:true, jquery:true, unused:false */
|
||||
|
@ -1,4 +1,4 @@
|
||||
/*! tableSorter 2.16+ widgets - updated 4/20/2014 (v2.16.0)
|
||||
/*! tableSorter 2.16+ widgets - updated 4/22/2014 (v2.16.1-beta)
|
||||
*
|
||||
* 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,6 +1,6 @@
|
||||
/*
|
||||
* StaticRow widget for jQuery TableSorter 2.0
|
||||
* Version 1.1 - modified by Rob Garrison (4/19/2014 for tablesorter v2.16.0)
|
||||
* Version 1.1 - modified by Rob Garrison (4/22/2014 for tablesorter v2.16.1-beta)
|
||||
* Requires:
|
||||
* jQuery v1.4+
|
||||
* tablesorter plugin, v2.8+, available at http://mottie.github.com/tablesorter/docs/
|
||||
|
@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "tablesorter",
|
||||
"title": "tablesorter",
|
||||
"version": "2.16.0-beta",
|
||||
"version": "2.16.1-beta",
|
||||
"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.16.0-beta",
|
||||
"version": "2.16.1-beta",
|
||||
"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