diff --git a/CHANGELOG.md b/CHANGELOG.md
index a3c5e48..25b35b6 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,5 +1,28 @@
# Changelog
+## 2.0.0
+
+### Enhancements & Features
+- Added localStorage to store states of:
+⋅ search filters
+⋅ pagination
+⋅ column visibility
+⋅ row count
+- Now you can:
+⋅ Add advanced filters
+⋅ Add action links inside bootgrid header row
+⋅ Add action links inside a table td that will be wrapped in a dropdown
+⋅ Format a table td without use common formatter
+⋅ Pass header Authorization to ajax request
+⋅ Load ajax response with a different rows wrapper
+⋅ Call encapsulated json elements in data-column-id
+- Fixed table td links with data-remote and data-confirmation
+- Changed default icon library to *FontAwesome*
+
+### Breaking Changes
+There are no breaking changes but some HTML templates changed during development. In case you want to use the full new feature set be sure you did not override any affected templates.
+See [README](http://github.com/correalucas/jquery-bootgrid) for more details.
+
## 1.3.1
### Enhancements & Features
diff --git a/Gruntfile.js b/Gruntfile.js
index e584c33..29c8070 100644
--- a/Gruntfile.js
+++ b/Gruntfile.js
@@ -210,7 +210,7 @@ module.exports = function (grunt)
files: [
{
flatten: true,
- expand: true,
+ expand: true,
src: ['<%= folders.dist %>/*.js', '<%= folders.dist %>/*.css'], dest: '/'
}
]
diff --git a/README.md b/README.md
index 9ef1416..cb6146b 100644
--- a/README.md
+++ b/README.md
@@ -1,4 +1,4 @@
-jQuery Bootgrid Plugin [](https://travis-ci.org/rstaib/jquery-bootgrid)    
+jQuery Bootgrid Plugin [](https://travis-ci.org/rstaib/jquery-bootgrid)   
============
Nice, sleek and intuitive. A grid control especially designed for bootstrap.
@@ -16,29 +16,92 @@ Everything you need to start quickly is:
```html
-
- Demo
-
-
-
-
-
-
-
-
-
-
ID
-
Sender
-
-
-
-
-
-
-
+
+
+
+ jQuery Bootgrid Demo
+
+
+
+
+
+
+
+
+
+
+
ID
+
Sender
+
Received
+
+
+
+
+
+
+
+
+
```
+### New features
+
+Set Authorization header to ajax response
+```html
+localStorage.setItem("ajax-authorization", "my-api-authorization");
+```
+
+Replace default row wrapper from ajax response by changing wrapper option.
+data-wrapper="" indicates that json rows will be in root directory.
+
+Add action links to your table adding a action-links option like this:
+
+```html
+
+```
+and this column will call a referenced div with the same action links id like this one:
+
+```html
+
+```
+
+Add a html formatter by adding the html-formatter option to your column like this:
+```html
+
Sender
+```
+and this column will call a referenced div with the same html formatter. You can also execute javascript wrapped in bootgridExecute[javascript code here]end like this:
+```html
+
+ {sender.email}
+
+```
+
+Everything inside a div with bootgrid-buttons-id option will be placed in the header row, example:
+```html
+