Skip to content

Commit

Permalink
Updates to release v1.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
kartik-v committed Sep 6, 2018
1 parent 9ebc895 commit a554039
Show file tree
Hide file tree
Showing 94 changed files with 124 additions and 88 deletions.
6 changes: 5 additions & 1 deletion CHANGE.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,12 @@ Change Log: `yii2-export`

## version 1.3.0

**Date:** _work-in-progress_
**Date:** 07-Sep-2018

- Enhancements to support Bootstrap v4.x.
- Move all source code to `src` directory.
- (enh #256, #257): Correct documentation.
- (enh #255): Modify code for better performance.
- (kartik-v/yii2-krajee-base#94): Refactor code and consolidate / optimize properties within traits.
- (bug #252): Correct krajeeDialog plugin undefined initialization.
- (enh #249, #250): New property `exportFormHiddenInputs` for submitting additional data with export form.
Expand Down
23 changes: 16 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,8 @@ The extension offers configurable user interfaces for advanced cases using view
## Demo
You can see detailed [documentation](http://demos.krajee.com/export) and [demonstration](http://demos.krajee.com/export-demo) on usage of the extension.

## Latest Release
>NOTE: The latest version of the extension is v1.2.9. Refer the [CHANGE LOG](https://github.com/kartik-v/yii2-export/blob/master/CHANGE.md) for details.
## Release Changes
> NOTE: Refer the [CHANGE LOG](https://github.com/kartik-v/yii2-export/blob/master/CHANGE.md) for details on changes to various releases.
## Installation

Expand All @@ -55,7 +55,20 @@ or add

to the `require` section of your `composer.json` file.

> Note: we must run `composer update` if we already have stable `kartik-v/yii2-krajee-base`
> Note: you must run `composer update` to have the latest stable dependencies like `kartik-v/yii2-krajee-base`
## Pre-requisites

The `yii2-export` extension is dependent on `yii2-grid` extension module. In order to start using `yii2-export`, you need to ensure setup of the `gridview` module in your application modules configuration file. For example:

```php
'modules' => [
'gridview' => [
'class' => 'kartik\grid\Module',
// other module settings
]
]
```

## Usage

Expand Down Expand Up @@ -86,10 +99,6 @@ echo \kartik\grid\GridView::widget([
'columns' => $gridColumns
]);
```
> Note: Set your module config as below
```
'gridview' => ['class' => 'kartik\grid\Module']
```

## License

Expand Down
4 changes: 2 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -34,12 +34,12 @@
},
"autoload": {
"psr-4": {
"kartik\\export\\": ""
"kartik\\export\\": "src"
}
},
"extra": {
"branch-alias": {
"dev-master": "1.2.x-dev"
"dev-master": "1.3.x-dev"
}
}
}
2 changes: 1 addition & 1 deletion ExportColumnAsset.php → src/ExportColumnAsset.php
100755 → 100644
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
/**
* @copyright Copyright © Kartik Visweswaran, Krajee.com, 2015 - 2018
* @package yii2-export
* @version 1.2.9
* @version 1.3.0
*/

namespace kartik\export;
Expand Down
Loading

0 comments on commit a554039

Please sign in to comment.