Skip to content

Commit

Permalink
Form 1.10.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Awilum committed Jan 7, 2021
1 parent 698cec9 commit e766c72
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 7 deletions.
9 changes: 8 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
<a name="1.10.0"></a>
# [1.10.0](https://github.com/flextype-plugins/form/compare/v1.9.0...v1.10.0) (2021-01-07)

### Features

* **core** update code base for new Icon 2.0.0
* **core** update code base for new Twig 2.0.0

<a name="1.9.0"></a>
# [1.9.0](https://github.com/flextype-plugins/form/compare/v1.8.1...v1.9.0) (2021-01-03)

Expand All @@ -6,7 +14,6 @@
* **core** update code base for new Flextype 0.9.15
* **core** add plugin.php file


<a name="1.8.1"></a>
# [1.8.1](https://github.com/flextype-plugins/form/compare/v1.8.0...v1.8.1) (2020-12-30)

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ The following dependencies need to be installed for Form Plugin.
| Item | Version | Download |
|---|---|---|
| [flextype](https://github.com/flextype/flextype) | 0.9.15 | [download](https://github.com/flextype/flextype/releases) |
| [twig](https://github.com/flextype-plugins/twig) | >=1.0.0 | [download](https://github.com/flextype-plugins/twig/releases) |
| [twig](https://github.com/flextype-plugins/twig) | >=2.0.0 | [download](https://github.com/flextype-plugins/twig/releases) |
| [jquery](https://github.com/flextype-plugins/jquery) | >=1.0.0 | [download](https://github.com/flextype-plugins/jquery/releases) |

## Installation
Expand Down
2 changes: 1 addition & 1 deletion fieldsets/multi-form.html
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<form action="{% if fieldset.form.action %}{{ path_for(fieldset.form.action) }}{% endif %}"
<form action="{% if fieldset.form.action %}{{ urlFor(fieldset.form.action) }}{% endif %}"
method="{% if fieldset.form.method %}{{ fieldset.form.method }}{% else %}post{% endif %}"
{% if fieldset.form.id %}id="form-{{ fieldset.form.id }}"{% endif %}
{% if fieldset.form.name %}id="form-{{ fieldset.form.name }}"{% endif %}>
Expand Down
2 changes: 1 addition & 1 deletion fieldsets/single-form.html
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<form action="{% if fieldset.form.action %}{{ path_for(fieldset.form.action) }}{% endif %}"
<form action="{% if fieldset.form.action %}{{ urlFor(fieldset.form.action) }}{% endif %}"
method="{% if fieldset.form.method %}{{ fieldset.form.method }}{% else %}post{% endif %}"
{% if fieldset.form.id %}id="form-{{ fieldset.form.id }}"{% endif %}
{% if fieldset.form.name %}id="form-{{ fieldset.form.name }}"{% endif %}>
Expand Down
8 changes: 5 additions & 3 deletions plugin.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
name: Form
version: 1.9.0
version: 1.10.0
description: Form Plugin to render user forms for Flextype.
icon: fas fa-check-circle
icon:
name: check-circle
set: "fontawesome|solid"
author:
name: Sergey Romanenko
email: [email protected]
Expand All @@ -15,5 +17,5 @@ license: MIT

dependencies:
flextype: 0.9.15
twig: '>=1.0.0'
twig: '>=2.0.0'
jquery: '>=1.0.0'

0 comments on commit e766c72

Please sign in to comment.