Skip to content

Commit bfed1b4

Browse files
committed
Update to release v1.0.3
1 parent c786373 commit bfed1b4

File tree

7 files changed

+18
-12
lines changed

7 files changed

+18
-12
lines changed

CHANGE.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
version 1.0.3
2+
=============
3+
**Date:** 26-Jun-2015
4+
5+
- (bug #33): Initialize `language` correctly.
6+
17
version 1.0.2
28
=============
39
**Date:** 03-May-2015

FileInput.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
* @copyright Copyright © Kartik Visweswaran, Krajee.com, 2014 - 2015
55
* @package yii2-widgets
66
* @subpackage yii2-widget-fileinput
7-
* @version 1.0.2
7+
* @version 1.0.3
88
*/
99

1010
namespace kartik\file;
@@ -58,6 +58,7 @@ public function init()
5858
parent::init();
5959
$this->_msgCat = 'fileinput';
6060
$this->initI18N(__DIR__);
61+
$this->initLanguage();
6162
$this->registerAssets();
6263
if ($this->pluginLoading) {
6364
Html::addCssClass($this->options, 'file-loading');

FileInputAsset.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
* @copyright Copyright © Kartik Visweswaran, Krajee.com, 2014 - 2015
55
* @package yii2-widgets
66
* @subpackage yii2-widget-fileinput
7-
* @version 1.0.2
7+
* @version 1.0.3
88
*/
99

1010
namespace kartik\file;

LICENSE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,4 +25,4 @@ ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
2525
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
2626
ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
2727
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
28-
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
28+
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,20 +27,20 @@ The preferred way to install this extension is through [composer](http://getcomp
2727
To install, either run
2828

2929
```
30-
$ php composer.phar require kartik-v/yii2-widget-fileinput "*"
30+
$ php composer.phar require kartik-v/yii2-widget-fileinput "@dev"
3131
```
3232

3333
or add
3434

3535
```
36-
"kartik-v/yii2-widget-fileinput": "*"
36+
"kartik-v/yii2-widget-fileinput": "@dev"
3737
```
3838

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

4141
## Latest Release
4242

43-
> 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.
43+
> 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.
4444
4545
## Demo
4646

composer.json

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,7 @@
44
"keywords": ["yii2", "extension", "widget", "input", "file", "form", "upload", "jquery", "plugin"],
55
"homepage": "https://github.com/kartik-v/yii2-widget-fileinput",
66
"type": "yii2-extension",
7-
"license": "BSD 3-Clause",
8-
"minimum-stability": "stable",
7+
"license": "BSD-3-Clause",
98
"authors": [
109
{
1110
"name": "Kartik Visweswaran",
@@ -14,12 +13,12 @@
1413
}
1514
],
1615
"require": {
17-
"kartik-v/yii2-krajee-base": "*",
18-
"kartik-v/bootstrap-fileinput": "*"
16+
"kartik-v/yii2-krajee-base": "~1.7",
17+
"kartik-v/bootstrap-fileinput": "~4.2"
1918
},
2019
"autoload": {
2120
"psr-4": {
2221
"kartik\\file\\": ""
2322
}
2423
}
25-
}
24+
}

messages/tr/fileinput.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,4 +21,4 @@
2121
'Note:' => 'Not:',
2222
'multiple file upload' => 'dosyaları yükle',
2323
'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.'
24-
];
24+
];

0 commit comments

Comments
 (0)