diff --git a/CHANGELOG.md b/CHANGELOG.md index a7924ca8238..9eba46544e9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/dist/jquery.handsontable.full.css b/dist/jquery.handsontable.full.css index a1095425af5..5a16057ee36 100644 --- a/dist/jquery.handsontable.full.css +++ b/dist/jquery.handsontable.full.css @@ -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 { diff --git a/dist/jquery.handsontable.full.js b/dist/jquery.handsontable.full.js index 88e1ec919be..ed08fb8d85a 100644 --- a/dist/jquery.handsontable.full.js +++ b/dist/jquery.handsontable.full.js @@ -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 */ @@ -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 = { diff --git a/handsontable.jquery.json b/handsontable.jquery.json index b478b6389e0..43f16d618bb 100644 --- a/handsontable.jquery.json +++ b/handsontable.jquery.json @@ -1,7 +1,7 @@ { "name": "handsontable", "title": "Handsontable", - "version": "0.8.10", + "version": "0.8.11", "author": { "name": "Marcin Warpechowski", "email": "marcin@nextgen.pl", diff --git a/jquery.handsontable.css b/jquery.handsontable.css index fc95ae2eac0..5145c69af17 100644 --- a/jquery.handsontable.css +++ b/jquery.handsontable.css @@ -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 { diff --git a/jquery.handsontable.js b/jquery.handsontable.js index a1a43960aeb..83014187e29 100644 --- a/jquery.handsontable.js +++ b/jquery.handsontable.js @@ -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 */ @@ -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 = { @@ -2676,354 +2676,354 @@ Handsontable.NumericRenderer = function (instance, td, row, col, prop, value, ce Handsontable.TextRenderer(instance, td, row, col, prop, value, cellProperties); } }; -function HandsontableTextEditorClass(instance) { - if (instance) { - this.isCellEdited = false; - this.instance = instance; - this.createElements(); - this.bindEvents(); - } -} - -HandsontableTextEditorClass.prototype.createElements = function () { - this.TEXTAREA = $('