Skip to content

Commit 4826b79

Browse files
authored
Merge pull request #40 from PrestaShop/dev
Release 4.2.0
2 parents ccc98eb + c6869cc commit 4826b79

File tree

14 files changed

+351
-124
lines changed

14 files changed

+351
-124
lines changed

.github/PULL_REQUEST_TEMPLATE.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
<!-----------------------------------------------------------------------------
2+
Thank you for contributing to the PrestaShop project!
3+
4+
Please take the time to edit the "Answers" rows below with the necessary information.
5+
6+
Check out our contribution guidelines to find out how to complete it:
7+
https://devdocs.prestashop.com/1.7/contribute/contribution-guidelines/#pull-requests
8+
------------------------------------------------------------------------------>
9+
10+
| Questions | Answers
11+
| ------------- | -------------------------------------------------------
12+
| Description? | Please be specific when describing the PR. <br> Every detail helps: versions, browser/server configuration, specific module/theme, etc. Feel free to add more information below this table.
13+
| Type? | bug fix / improvement / new feature / refacto / critical
14+
| BC breaks? | yes / no
15+
| Deprecations? | yes / no
16+
| Fixed ticket? | Fixes PrestaShop/Prestashop#{issue number here}.
17+
| How to test? | Please indicate how to best verify that this PR is correct.
18+
19+
<!-- Click the form's "Preview" button to make sure the table is functional in GitHub. Thank you! -->

.github/release-drafter.yml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
branches:
2+
- master
3+
name-template: v$NEXT_PATCH_VERSION
4+
tag-template: v$NEXT_PATCH_VERSION
5+
categories:
6+
- title: 🚀 Improvements
7+
label: enhancement
8+
- title: 🐛 Bug Fixes
9+
label: bug
10+
change-template: '- #$NUMBER: $TITLE by @$AUTHOR'
11+
template: |
12+
# Changes
13+
14+
$CHANGES

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
.idea
2+
composer.lock
3+
vendor/

Readme.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,13 @@ Adds a contact form to the "Contact us" page.
88

99
You can report issues with this module in the main PrestaShop repository. [Click here to report an issue][report-issue].
1010

11+
## Multistore compatibility
12+
13+
This module is compatible with the multistore :heavy_check_mark: <br/>
14+
It can be configured differently from one store to another.<br/>
15+
It can be configured quickly in the same way on all stores thanks to the all shops context or the group of shops.<br/>
16+
It can be activated on one store and deactivated on another
17+
1118
## Contributing
1219

1320
PrestaShop modules are open source extensions to the [PrestaShop e-commerce platform][prestashop]. Everyone is welcome and even encouraged to contribute with their own improvements!

composer.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,8 @@
1010
}
1111
],
1212
"require": {
13-
"php": ">=5.4.0"
13+
"php": ">=5.4.0",
14+
"jakeasmith/http_build_url": "^1"
1415
},
1516
"config": {
1617
"preferred-install": "dist"

config.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
<module>
33
<name>contactform</name>
44
<displayName><![CDATA[Contact form]]></displayName>
5-
<version><![CDATA[4.1.1]]></version>
6-
<description><![CDATA[Description for contact form module]]></description>
5+
<version><![CDATA[4.2.0]]></version>
6+
<description><![CDATA[Adds a contact form to the "Contact us" page.]]></description>
77
<author><![CDATA[PrestaShop]]></author>
88
<tab><![CDATA[front_office_features]]></tab>
99
<is_configurable>0</is_configurable>

0 commit comments

Comments
 (0)