Skip to content

Commit

Permalink
Create CHANGELOG.md
Browse files Browse the repository at this point in the history
Move changelog from README.md into its own file.

Closes #301
  • Loading branch information
crissdev committed Mar 15, 2015
1 parent d37f354 commit f9bce2d
Show file tree
Hide file tree
Showing 2 changed files with 44 additions and 17 deletions.
34 changes: 34 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@

# 2.1.5 (2015-xx-xx)

### Bug Fixes

* variable 'sortInfo is not defined' [#174](https://github.com/Knockout-Contrib/KoGrid/issues/174)
* Drag and Drop columns doesn't work in IE9 [#187](https://github.com/Knockout-Contrib/KoGrid/issues/187)


# 2.1.1 (2012-12-18)

* __2012-12-18__ - Adding columnsChanged callback [#171](https://github.com/Knockout-Contrib/KoGrid/issues/171) and added fixes for issues [#170](https://github.com/Knockout-Contrib/KoGrid/issues/170), [#167](https://github.com/Knockout-Contrib/KoGrid/issues/167), [#164](https://github.com/Knockout-Contrib/KoGrid/issues/164), and [#134](https://github.com/Knockout-Contrib/KoGrid/issues/134).
* __2012-12-12__ - Merge ineedFat's awesome search improvements. Removing gridservice and improving performance with templates. Other bugfixes.

__Note:__ this version is not tagged in the repository.


# 2.0.6 (2012-12-09)

* __2012-12-03__ - various improvements and fixes to searching, bindings, resizing, and reordering. Ability to specify partial html file urls for templates.
* __2012-12-03__ - Version 2.0 BREAKING CHANGES. numerous enhancements, bug fixes and architectural changes. reduced code footprint by ~40%.


# 1.2.4 (2012-11-03)

* __2012-08-30__ - Version 1.2 merging changes from skoGrid branch


# 1.1 (2012-08-28)

* __2012-08-18__ - Adding new features, up/down arrows now control the selected item when multiselect is disabled. columnDefs are now observable so you can change the columns on the fly.
* __2012-08-16__ - Styles moved into CSS, minor bug fix for Row templates where cells wouldn't take null values (for instance, when you want to display an image instead of the value)
* __2012-03-07__ - Huge Row Rendering Perf improvements, Easier syntax for custom cell templates, Allow Custom CSS Classes on Header and Data Cells, Allow toggling of Footer Visibility, Much better button iconography, enhanced default CSS styles, various other bug fixes
* __2012-04-10__ - Wildcard Filtering, better grid resizing during window resize events, better sorting, numerous bug-fixes
27 changes: 10 additions & 17 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,11 @@
#koGrid : A Knockout DataGrid#
# KoGrid
A Knockout DataGrid


__Contributors:__

KoGrid Team:
* [Eric M. Barnard](https://github.com/ericmbarnard/koGrid)
* [Eric M. Barnard](https://github.com/ericmbarnard)
* [Tim Sweet](http://ornerydevelopment.blogspot.com/)
* [Jonathon Ricaurte](https://github.com/jonricaurte)
* [Alan Souza](https://github.com/alansouzati)
Expand All @@ -13,9 +15,9 @@ License: [MIT](http://www.opensource.org/licenses/mit-license.php)
Dependencies: jQuery & Knockout
***
##About##
__koGrid__ is a direct knockout port of [ng-grid](http://angular-ui.github.com/ng-grid/) which was originally inspired by koGrid, which was inspired by SlickGrid. I know, right?
__KoGrid__ is a direct knockout port of [ng-grid](http://angular-ui.github.com/ng-grid/) which was originally inspired by KoGrid, which was inspired by SlickGrid. I know, right?

koGrid is in 2.1.1 release currently.
KoGrid is in 2.1.1 release currently.

Questions, Comments, Complaints? feel free to email us at [email protected]

Expand All @@ -27,25 +29,16 @@ _The sizzle_:
```
```javascript
var vm = {
myObservableArray: ko.observableArray(/* array of any complex obects */)
myObservableArray: ko.observableArray(/* array of any complex objects */)
};

ko.applyBindings(vm);
```

##Want More?##
Check out the [Getting Started](https://github.com/Knockout-Contrib/KoGrid/wiki/Getting-Started) and other [Docs](https://github.com/Knockout-Contrib/KoGrid/wiki)
Check out the [Getting Started](https://github.com/Knockout-Contrib/KoGrid/wiki/Getting-Started) and other [Docs](https://github.com/Knockout-Contrib/KoGrid/wiki).

##Examples##
http://knockout-contrib.github.io/KoGrid/#/examples
also check out the new [Custom Cell Template Library](https://github.com/Knockout-Contrib/KoGrid/wiki/Cell-Template-Library)
##Change Log##
* __2012-12-18__ - Adding columnsChanged callback (#171) and added fixes for issues #170, #167, #164, and #134.
* __2012-12-12__ - Merge ineedFat's awesome serach improvements. Removing gridservice and improving performance with templates. other bugfixes.
* __2012-12-03__ - various improvements and fixes to searching, bindings, resizing, and reordering. Ability to specify partial html file urls for templates.
* __2012-12-03__ - Version 2.0 BREAKING CHANGES. numerous enhancements, bugfixes and architectural changes. reduced code footprint by ~40%.
* __2012-08-30__ - Version 1.2 merging changes from skoGrid branch
* __2012-08-18__ - Adding new features, up/down arrows now control the selected item when multiselect is disabled. columnDefs are now observable so you can change the columns on the fly.
* __2012-08-16__ - Styles moved into CSS, minor bug fix for Row templates where cells wouldn't take null values (for instance, when you want to display an image instead of the value)
* __2012-03-07__ - Huge Row Rendering Perf improvements, Easier syntax for custom cell templates, Allow Custom CSS Classes on Header and Data Cells, Allow toggling of Footer Visibility, Much better button iconography, enhanced default CSS styles, various other bug fixes
* __2012-04-10__ - Wildcard Filtering, better grid resizing during window resize events, better sorting, numerous bug-fixes

Also check out the new [Custom Cell Template Library](https://github.com/Knockout-Contrib/KoGrid/wiki/Cell-Template-Library).

0 comments on commit f9bce2d

Please sign in to comment.