Skip to content

Commit 439a27e

Browse files
committed
Upgrade to release v1.1.0
1 parent 1286fee commit 439a27e

File tree

8 files changed

+19
-16
lines changed

8 files changed

+19
-16
lines changed

CHANGE.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,13 @@
1+
version 1.1.0
2+
=============
3+
**Date:** 10-Nov-2014
4+
5+
- Set dependency on Krajee base components
6+
- Set release to stable
7+
18
version 1.0.0
29
=============
10+
**Date:** 01-Jul-2014
11+
312
- Initial release
413
- PSR4 alias change

LICENSE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Copyright (c) 2013, Kartik Visweswaran
1+
Copyright (c) 2014, Kartik Visweswaran
22
Krajee.com
33
All rights reserved.
44

README.md

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -11,21 +11,14 @@ It is a leaner alternative for the JUI Sortable plugin and offers very similar f
1111
- Similar API and behaviour to jquery-ui sortable plugin.
1212
- Works in IE 5.5+, Firefox 3.5+, Chrome 3+, Safari 3+ and, Opera 12+.
1313

14-
> NOTE: This extension depends on the [kartik-v/yii2-widgets](https://github.com/kartik-v/yii2-widgets) extension which in turn depends on the
15-
[yiisoft/yii2-bootstrap](https://github.com/yiisoft/yii2/tree/master/extensions/bootstrap) extension. Check the
16-
[composer.json](https://github.com/kartik-v/yii2-sortable/blob/master/composer.json) for this extension's requirements and dependencies.
17-
Note: Yii 2 framework is still in active development, and until a fully stable Yii2 release, your core yii2-bootstrap packages (and its dependencies)
18-
may be updated when you install or update this extension. You may need to lock your composer package versions for your specific app, and test
19-
for extension break if you do not wish to auto update dependencies.
20-
2114
### Demo
2215
You can see detailed [documentation](http://demos.krajee.com/sortable) on usage of the extension.
2316

2417
## Installation
2518

2619
The preferred way to install this extension is through [composer](http://getcomposer.org/download/).
2720

28-
> Note: You must set the `minimum-stability` to `dev` in the **composer.json** file in your application root folder before installation of this extension.
21+
> NOTE: Check the [composer.json](https://github.com/kartik-v/yii2-sortable/blob/master/composer.json) for this extension's requirements and dependencies. Read this [web tip /wiki](http://webtips.krajee.com/setting-composer-minimum-stability-application/) on setting the `minimum-stability` settings for your application's composer.json.
2922
3023
Either run
3124

Sortable.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
/**
44
* @copyright Copyright © Kartik Visweswaran, Krajee.com, 2014
55
* @package yii2-sortable
6-
* @version 1.0.0
6+
* @version 1.1.0
77
*/
88

99
namespace kartik\sortable;
@@ -19,7 +19,7 @@
1919
* @author Kartik Visweswaran <kartikv2@gmail.com>
2020
* @since 1.0
2121
*/
22-
class Sortable extends \kartik\widgets\Widget
22+
class Sortable extends \kartik\base\Widget
2323
{
2424
const TYPE_LIST = 'list';
2525
const TYPE_GRID = 'grid';

SortableAsset.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
/**
44
* @copyright Copyright &copy; Kartik Visweswaran, Krajee.com, 2014
55
* @package yii2-sortable
6-
* @version 1.0.0
6+
* @version 1.1.0
77
*/
88

99
namespace kartik\sortable;
@@ -14,7 +14,7 @@
1414
* @author Kartik Visweswaran <kartikv2@gmail.com>
1515
* @since 1.0
1616
*/
17-
class SortableAsset extends \kartik\widgets\AssetBundle
17+
class SortableAsset extends \kartik\base\AssetBundle
1818
{
1919

2020
public function init()

assets/css/kv-sortable.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*!
22
* @copyright Copyright &copy; Kartik Visweswaran, Krajee.com, 2014
33
* @package yii2-sortable
4-
* @version 1.0.0
4+
* @version 1.1.0
55
*
66
* Sortable widget styling using Bootstrap 3.0 theme
77
* Built for Yii Framework 2.0

assets/css/kv-sortable.min.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*!
22
* @copyright Copyright &copy; Kartik Visweswaran, Krajee.com, 2014
33
* @package yii2-sortable
4-
* @version 1.0.0
4+
* @version 1.1.0
55
*
66
* Sortable widget styling using Bootstrap 3.0 theme
77
* Built for Yii Framework 2.0

composer.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,9 @@
1212
"homepage": "http://www.krajee.com/"
1313
}
1414
],
15+
"minimum-stability": "stable",
1516
"require": {
16-
"kartik-v/yii2-widgets": "*"
17+
"kartik-v/yii2-krajee-base": "*"
1718
},
1819
"autoload": {
1920
"psr-4": {

0 commit comments

Comments
 (0)