Skip to content

Commit

Permalink
Update to release v1.0.3
Browse files Browse the repository at this point in the history
  • Loading branch information
kartik-v committed Jun 26, 2015
1 parent c786373 commit bfed1b4
Show file tree
Hide file tree
Showing 7 changed files with 18 additions and 12 deletions.
6 changes: 6 additions & 0 deletions CHANGE.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
version 1.0.3
=============
**Date:** 26-Jun-2015

- (bug #33): Initialize `language` correctly.

version 1.0.2
=============
**Date:** 03-May-2015
Expand Down
3 changes: 2 additions & 1 deletion FileInput.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
* @copyright Copyright © Kartik Visweswaran, Krajee.com, 2014 - 2015
* @package yii2-widgets
* @subpackage yii2-widget-fileinput
* @version 1.0.2
* @version 1.0.3
*/

namespace kartik\file;
Expand Down Expand Up @@ -58,6 +58,7 @@ public function init()
parent::init();
$this->_msgCat = 'fileinput';
$this->initI18N(__DIR__);
$this->initLanguage();
$this->registerAssets();
if ($this->pluginLoading) {
Html::addCssClass($this->options, 'file-loading');
Expand Down
2 changes: 1 addition & 1 deletion FileInputAsset.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
* @copyright Copyright © Kartik Visweswaran, Krajee.com, 2014 - 2015
* @package yii2-widgets
* @subpackage yii2-widget-fileinput
* @version 1.0.2
* @version 1.0.3
*/

namespace kartik\file;
Expand Down
2 changes: 1 addition & 1 deletion LICENSE.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,4 +25,4 @@ ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,20 +27,20 @@ The preferred way to install this extension is through [composer](http://getcomp
To install, either run

```
$ php composer.phar require kartik-v/yii2-widget-fileinput "*"
$ php composer.phar require kartik-v/yii2-widget-fileinput "@dev"
```

or add

```
"kartik-v/yii2-widget-fileinput": "*"
"kartik-v/yii2-widget-fileinput": "@dev"
```

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

## Latest Release

> NOTE: The latest version of the module is v1.0.2. Refer the [CHANGE LOG](https://github.com/kartik-v/yii2-widget-fileinput/blob/master/CHANGE.md) for details.
> NOTE: The latest version of the module is v1.0.3. Refer the [CHANGE LOG](https://github.com/kartik-v/yii2-widget-fileinput/blob/master/CHANGE.md) for details.
## Demo

Expand Down
9 changes: 4 additions & 5 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,7 @@
"keywords": ["yii2", "extension", "widget", "input", "file", "form", "upload", "jquery", "plugin"],
"homepage": "https://github.com/kartik-v/yii2-widget-fileinput",
"type": "yii2-extension",
"license": "BSD 3-Clause",
"minimum-stability": "stable",
"license": "BSD-3-Clause",
"authors": [
{
"name": "Kartik Visweswaran",
Expand All @@ -14,12 +13,12 @@
}
],
"require": {
"kartik-v/yii2-krajee-base": "*",
"kartik-v/bootstrap-fileinput": "*"
"kartik-v/yii2-krajee-base": "~1.7",
"kartik-v/bootstrap-fileinput": "~4.2"
},
"autoload": {
"psr-4": {
"kartik\\file\\": ""
}
}
}
}
2 changes: 1 addition & 1 deletion messages/tr/fileinput.php
Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,4 @@
'Note:' => 'Not:',
'multiple file upload' => 'dosyaları yükle',
'Your browser does not support {validation}. Try an alternative or more recent browser to access these features.' => 'Browserınız {validation} desteklemiyor. Bu özellikleri kullanabilmek için lütfen alternatif veya güncel bir browser ile bağlanın.'
];
];

0 comments on commit bfed1b4

Please sign in to comment.