Skip to content

Commit

Permalink
Handsontable 0.8.11
Browse files Browse the repository at this point in the history
  • Loading branch information
warpech committed Mar 8, 2013
1 parent 8151891 commit fb80698
Show file tree
Hide file tree
Showing 7 changed files with 363 additions and 363 deletions.
6 changes: 3 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
## HEAD
## [0.8.11](https://github.com/warpech/jquery-handsontable/tree/v0.8.11) (Mar 8, 2013)

Features:
- this may be a **breaking change** for some applications. Now the third parameter to the `alter` method tells the amount of rows/columns to be inserted/removed. This adds more consistency to the API. ([#368](https://github.com/warpech/jquery-handsontable/issues/368))
- this may be a **breaking change** for some applications: Now the third parameter to the `alter` method tells the amount of rows/columns to be inserted/removed. This adds more consistency to the API. ([#368](https://github.com/warpech/jquery-handsontable/issues/368))
- merged pull request [#474](https://github.com/warpech/jquery-handsontable/pull/474) - Travis-CI integration. The tests don't pass yet but don't worry about it yet. It is a work in progress on complete test automation. Making all tests pass on Travis CI headless browser may take few more days or weeks :)

Bugfix:
- again, this may be a **breaking change** for some applications. Fix very long standing inconsistency. Restored original `setDataAtCell` requirement of the second parameter to be a column number (as described in [README.md](https://github.com/warpech/jquery-handsontable) since always). If you happen to experience an error in `setDataAtCell` after upgrade, change your usage of this method to the new method `setDataAtRowProp` ([#284](https://github.com/warpech/jquery-handsontable/pull/284))
- again, this may be a **breaking change** for some applications: Fix very long standing inconsistency. Restored original `setDataAtCell` requirement of the second parameter to be a column number (as described in [README.md](https://github.com/warpech/jquery-handsontable) since always). If you happen to experience an error in `setDataAtCell` after upgrade, change your usage of this method to the new method `setDataAtRowProp` ([#284](https://github.com/warpech/jquery-handsontable/pull/284))
- new methods `setDataAtRowProp` and `getDataAtRowProp` that set/get data according to the property name in data source. See [README.md](https://github.com/warpech/jquery-handsontable) for clarification
- merged pull request [#266](https://github.com/warpech/jquery-handsontable/pull/266) - fix countCols for arrays with column settings

Expand Down
4 changes: 2 additions & 2 deletions dist/jquery.handsontable.full.css
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
/**
* Handsontable 0.8.10
* Handsontable 0.8.11
* Handsontable is a simple jQuery plugin for editable tables with basic copy-paste compatibility with Excel and Google Docs
*
* Copyright 2012, Marcin Warpechowski
* Licensed under the MIT license.
* http://handsontable.com/
*
* Date: Fri Mar 08 2013 01:14:54 GMT+0100 (Central European Standard Time)
* Date: Fri Mar 08 2013 01:58:20 GMT+0100 (Central European Standard Time)
*/

.handsontable {
Expand Down
6 changes: 3 additions & 3 deletions dist/jquery.handsontable.full.js
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
/**
* Handsontable 0.8.10
* Handsontable 0.8.11
* Handsontable is a simple jQuery plugin for editable tables with basic copy-paste compatibility with Excel and Google Docs
*
* Copyright 2012, Marcin Warpechowski
* Licensed under the MIT license.
* http://handsontable.com/
*
* Date: Fri Mar 08 2013 01:14:54 GMT+0100 (Central European Standard Time)
* Date: Fri Mar 08 2013 01:58:20 GMT+0100 (Central European Standard Time)
*/
/*jslint white: true, browser: true, plusplus: true, indent: 4, maxerr: 50 */

Expand Down Expand Up @@ -2010,7 +2010,7 @@ Handsontable.Core = function (rootElement, settings) {
/**
* Handsontable version
*/
this.version = '0.8.10'; //inserted by grunt from package.json
this.version = '0.8.11'; //inserted by grunt from package.json
};

var settings = {
Expand Down
2 changes: 1 addition & 1 deletion handsontable.jquery.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "handsontable",
"title": "Handsontable",
"version": "0.8.10",
"version": "0.8.11",
"author": {
"name": "Marcin Warpechowski",
"email": "[email protected]",
Expand Down
4 changes: 2 additions & 2 deletions jquery.handsontable.css
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
/**
* Handsontable 0.8.10
* Handsontable 0.8.11
* Handsontable is a simple jQuery plugin for editable tables with basic copy-paste compatibility with Excel and Google Docs
*
* Copyright 2012, Marcin Warpechowski
* Licensed under the MIT license.
* http://handsontable.com/
*
* Date: Fri Mar 08 2013 01:14:54 GMT+0100 (Central European Standard Time)
* Date: Fri Mar 08 2013 01:58:20 GMT+0100 (Central European Standard Time)
*/

.handsontable {
Expand Down
Loading

0 comments on commit fb80698

Please sign in to comment.