Skip to content

Commit

Permalink
YiiBooster 2.1.0 Release
Browse files Browse the repository at this point in the history
  • Loading branch information
Maksim Naumov committed Dec 17, 2013
1 parent 540ede4 commit 01afd2d
Show file tree
Hide file tree
Showing 8 changed files with 31 additions and 9 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,9 @@ Thank you all
Antonio Ramirez.

## YiiBooster latest development alpha


## YiiBooster version 2.1.0
- **(fix)** Fix "Maximum call stack size exceeded" inside `TbExtendedGridView` class #430 (fromYukki)
- **(fix)** Fix attributes on `td` after update in classes `TbJsonButtonColumn` and `TbJsonCheckBoxColumn` #350 (fromYukki)
- **(enh)** New attributes `readonly` and `disabled` for `TbSelect2` class #305 (fromYukki)
Expand Down
4 changes: 1 addition & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ YiiBooster

**This is the master branch, containing work in progress on the next release.
Do not think that it's a production ready version which you can safely clone into your project.
If you want the latest point release, check out the `2.0.0` branch**
If you want the latest point release, check out the `2.1.0` branch**

---

Expand Down Expand Up @@ -59,8 +59,6 @@ If you find any bugs, please create an issue at [issue tracker for project Githu
## License
This work as a whole is licensed under a BSD license. Full text is included in the `LICENSE` file in the root of codebase.

> [![Clevertech](http://clevertech.biz/images/slir/w54-h36-c54:36/images/site/index/home/clevertech-logo.png)](http://www.clevertech.biz)
>
> Well-built beautifully designed web applications.
>
> [www.clevertech.biz](http://www.clevertech.biz)
Expand Down
9 changes: 8 additions & 1 deletion src/components/Bootstrap.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,10 @@
* Maintenance
* @author Mark Safronov <hijarian@gmail.com>
* @version 2.0.0
*
* Maintenance
* @author Maksim Naumov <fromyukki@gmail.com>
* @version 2.1.0
*/

/**
Expand Down Expand Up @@ -341,7 +345,7 @@ protected function registerJsPackagesIfEnabled()
*/
public function getVersion()
{
return '2.0.0';
return '2.1.0';
}

/**
Expand Down Expand Up @@ -431,6 +435,7 @@ protected function setAssetsRegistryIfNotDefined()

/**
* @param CEvent $event
* @since 2.1.0
*/
public function resolveUiConflict($event = null)
{
Expand Down Expand Up @@ -966,6 +971,7 @@ protected function tryGetInfoForPlugin($name, $key)

/**
* @param Bootstrap $value
* @since 2.1.0
*/
public static function setBooster($value)
{
Expand All @@ -976,6 +982,7 @@ public static function setBooster($value)

/**
* @return Bootstrap
* @since 2.1.0
*/
public static function getBooster()
{
Expand Down
3 changes: 3 additions & 0 deletions src/components/BootstrapClientScript.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
<?php

/**
* @since 2.1.0
*/
class BootstrapClientScript extends CClientScript
{
/**
Expand Down
4 changes: 2 additions & 2 deletions src/widgets/TbButton.php
Original file line number Diff line number Diff line change
Expand Up @@ -141,14 +141,14 @@ class TbButton extends CWidget
/**
* Tooltip for button
* @var bool
* @since 2.0.0
* @since 2.1.0
*/
public $tooltip = false;

/**
* Tooltip options
* @var array
* @since 2.0.0
* @since 2.1.0
*/
public $tooltipOptions = array();

Expand Down
5 changes: 4 additions & 1 deletion src/widgets/TbCarousel.php
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,10 @@ protected function renderItems($items)
$item['imageOptions'] = array();
}

// Is this image should be a link?
/**
* Is this image should be a link?
* @since 2.1.0
*/
if (isset($item['link'])) {
// Any kind of link options
if (!isset($item['linkOptions']) || !is_array($item['linkOptions'])) {
Expand Down
10 changes: 8 additions & 2 deletions src/widgets/TbSelect2.php
Original file line number Diff line number Diff line change
Expand Up @@ -47,10 +47,16 @@ class TbSelect2 extends CInputWidget
*/
public $options;

/** @var bool */
/**
* @var bool
* @since 2.1.0
*/
public $readonly = false;

/** @var bool */
/**
* @var bool
* @since 2.1.0
*/
public $disabled = false;

/**
Expand Down
2 changes: 2 additions & 0 deletions src/widgets/TbUiLayout.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@
*
* About additional information you can read here:
* @link http://layout.jquery-dev.net/documentation.cfm
*
* @since 2.1.0
*/
class TbUiLayout extends CWidget
{
Expand Down

0 comments on commit 01afd2d

Please sign in to comment.