version bump

This commit is contained in:
Mottie 2013-10-30 17:47:58 -05:00
parent c170dc6669
commit 1cc8b0da33
15 changed files with 48 additions and 22 deletions

View File

@ -44,6 +44,32 @@ 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.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 &amp; 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).
* Updated LESS theme to work properly with LESS 4.1+
* 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.
* Internal changes
* Improved `formatFloat()` replace method.
* Sorting a zero hex value (`0x00`) is now possible.
#### <a name="v2.12">Version 2.12</a> (10/18/2013)
**Core**

View File

@ -1,6 +1,6 @@
/*!
* tablesorter pager plugin
* updated 10/18/2013
* updated 10/30/2013
*/
/*jshint browser:true, jquery:true, unused:false */
;(function($) {

File diff suppressed because one or more lines are too long

View File

@ -1,6 +1,6 @@
{
"name": "tablesorter",
"version": "2.12.0",
"version": "2.13.0",
"dependencies": {
"jquery": ">=1.2.6"
}

View File

@ -137,7 +137,7 @@
<ul>
<li>This widget will <strong>only work</strong> in tablesorter version 2.8+ and jQuery version 1.7+.</li>
<li>Please do not use this widget in very large tables (it might be really slow) <del>or when your table includes multiple tbodies</del>.</li>
<li>In <span class="version">v2.12.1</span>, added <code>group_separator</code> option &amp; <code>group-separator-#</code> header class name.</li>
<li>In <span class="version">v2.13</span>, added <code>group_separator</code> option &amp; <code>group-separator-#</code> header class name.</li>
<li>In <span class="version">v2.12</span>, added <code>group_callback</code> &amp; <code>group_complete</code> options. See options section below for details.</li>
<li>In <span class="version">v2.11</span>:
<ul>

View File

@ -327,7 +327,7 @@
<li><a href="example-parsers-metric.html">Metric parser</a> (<span class="version">v2.8</span>).</li>
<li><a href="example-parsers-feet-inch-fraction.html">Feet-inch-fraction parser</a> (<span class="version">v2.8</span>).</li>
<li><a href="example-parsers-ip-address.html">IPv6 address parser</a> (<span class="version">v2.12</span>).</li>
<li><a href="example-parsers-file-type.html">File type parser</a> (<span class="version">v2.12.1</span>).</li>
<li><a href="example-parsers-file-type.html">File type parser</a> (<span class="version">v2.13</span>).</li>
</ul>
</div>

View File

@ -1,5 +1,5 @@
/**!
* TableSorter 2.12.0 - Client-side table sorting with ease!
* TableSorter 2.13.0 - 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.12.0";
ts.version = "2.13.0";
ts.parsers = [];
ts.widgets = [];

File diff suppressed because one or more lines are too long

View File

@ -1,4 +1,4 @@
/*! Filter widget formatter functions - updated 10/10/2013
/*! Filter widget formatter functions - updated 10/30/2013
* requires: tableSorter 2.7.7+ and jQuery 1.4.3+
*
* uiSpinner (jQuery UI spinner)
@ -608,7 +608,7 @@ $.tablesorter.filterFormatter = {
$number = $('<input type="number" style="visibility:hidden;" value="test">').appendTo($cell),
// test if HTML5 number is supported - from Modernizr
numberSupported = o.skipTest || $number.attr('type') === 'number' && $number.val() !== 'test',
t, l, $shcell = [],
l, $shcell = [],
c = $cell.closest('table')[0].config,
updateCompare = function(v) {

View File

@ -1,4 +1,4 @@
/*! Filter widget formatter functions - updated 10/10/2013
/*! Filter widget formatter functions - updated 10/30/2013
* requires: tableSorter 2.7.7+ and jQuery 1.4.3+
* jQuery UI spinner, silder, range slider & datepicker (range)
* HTML5 number (spinner), range slider & color selector

View File

@ -1,4 +1,4 @@
/*! tableSorter 2.8+ widgets - updated 10/18/2013
/*! tableSorter 2.8+ widgets - updated 10/30/2013
*
* Column Styles
* Column Filters

File diff suppressed because one or more lines are too long

View File

@ -1,4 +1,4 @@
/* Pager widget (beta) for TableSorter 10/18/2013 */
/* Pager widget (beta) for TableSorter 10/30/2013 */
/*jshint browser:true, jquery:true, unused:false */
;(function($){
"use strict";

View File

@ -1,7 +1,7 @@
{
"name": "tablesorter",
"title": "tablesorter",
"version": "2.12.0",
"version": "2.13.0",
"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",

View File

@ -1,7 +1,7 @@
{
"name": "tablesorter",
"title": "tablesorter",
"version": "2.12.0",
"version": "2.13.0",
"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",