diff --git a/CHANGELOG.md b/CHANGELOG.md index 1677df6..b1b8d58 100755 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,7 +1,8 @@ Changelog ========= -## 1.1.* +## 1.1.1 (2020-06-14) + * Update README.md * setAttributeLabels() fixed ## 1.1.0 (2020-05-03) diff --git a/Module.php b/Module.php index 7235738..ec167be 100755 --- a/Module.php +++ b/Module.php @@ -6,7 +6,7 @@ * Yii2 Forms * * @category Module - * @version 1.1.0 + * @version 1.1.1 * @author Alexsander Vyshnyvetskyy * @link https://github.com/wdmg/yii2-forms * @copyright Copyright (c) 2019 - 2020 W.D.M.Group, Ukraine @@ -40,7 +40,7 @@ class Module extends BaseModule /** * @var string, the description of module */ - public $description = "Creation and management of user forms"; + public $description = "Creating and manage composite forms"; /** * @var array, the list of support locales for multi-language versions of page. @@ -51,7 +51,7 @@ class Module extends BaseModule /** * @var string the module version */ - private $version = "1.1.0"; + private $version = "1.1.1"; /** * @var integer, priority of initialization diff --git a/README.md b/README.md index 3100253..5ff5ea4 100755 --- a/README.md +++ b/README.md @@ -1,15 +1,21 @@ -[![Yii2](https://img.shields.io/badge/required-Yii2_v2.0.33-blue.svg)](https://packagist.org/packages/yiisoft/yii2) +[![Yii2](https://img.shields.io/badge/required-Yii2_v2.0.35-blue.svg)](https://packagist.org/packages/yiisoft/yii2) [![Downloads](https://img.shields.io/packagist/dt/wdmg/yii2-forms.svg)](https://packagist.org/packages/wdmg/yii2-forms) [![Packagist Version](https://img.shields.io/packagist/v/wdmg/yii2-forms.svg)](https://packagist.org/packages/wdmg/yii2-forms) ![Progress](https://img.shields.io/badge/progress-ready_to_use-green.svg) [![GitHub license](https://img.shields.io/github/license/wdmg/yii2-forms.svg)](https://github.com/wdmg/yii2-forms/blob/master/LICENSE) +Yii2 Composite Forms + # Yii2 Forms -Creation and management of custom user forms +Module for creating and administering composite forms for Yii2. It also records and manages the results of filling out forms on the site. It has its own component for building and displaying forms in the frontend. Supports multilingual fields and descriptions. + +This module is an integral part of the [Butterfly.SMS](https://butterflycms.com/) content management system, but can also be used as an standalone extension. + +Copyrights (c) 2019-2020 [W.D.M.Group, Ukraine](https://wdmg.com.ua/) # Requirements * PHP 5.6 or higher -* Yii2 v.2.0.33 and newest +* Yii2 v.2.0.35 and newest * [Yii2 Base](https://github.com/wdmg/yii2-base) module (required) # Installation @@ -95,6 +101,7 @@ Use the `Module::dashboardNavItems()` method of the module to generate a navigat # Status and version [ready to use] +* v.1.1.1 - Update README.md and setAttributeLabels() fixed * v.1.1.0 - Multi-language support, submit() method for Form component * v.1.0.13 - Update dependencies * v.1.0.12 - Log activity and translations, added forms component diff --git a/components/Forms.php b/components/Forms.php index b7ca47c..4c7a987 100644 --- a/components/Forms.php +++ b/components/Forms.php @@ -7,7 +7,7 @@ * Yii2 Forms * * @category Component - * @version 1.1.0 + * @version 1.1.1 * @author Alexsander Vyshnyvetskyy * @link https://github.com/wdmg/yii2-forms * @copyright Copyright (c) 2019 - 2020 W.D.M.Group, Ukraine diff --git a/composer.json b/composer.json index fd3b3f7..2dbf0ef 100755 --- a/composer.json +++ b/composer.json @@ -4,7 +4,7 @@ "keywords": ["yii2", "yii2-forms", "forms", "form management", "wdmg"], "type": "yii2-extension", "license": "MIT", - "version": "1.1.0", + "version": "1.1.1", "homepage": "https://github.com/wdmg/yii2-forms", "support": { "source": "https://github.com/wdmg/yii2-forms", @@ -21,9 +21,9 @@ } ], "require": { - "yiisoft/yii2": "^2.0.33", - "wdmg/yii2-base": "^1.2.2", - "wdmg/yii2-helpers": "^1.3.2", + "yiisoft/yii2": "^2.0.35", + "wdmg/yii2-base": "^1.2.4", + "wdmg/yii2-helpers": "^1.3.3", "wdmg/yii2-selectinput": "^1.0.9" }, "minimum-stability": "dev", diff --git a/docs/images/yii2-forms.png b/docs/images/yii2-forms.png new file mode 100644 index 0000000..62f8067 Binary files /dev/null and b/docs/images/yii2-forms.png differ