Skip to content

Commit

Permalink
1.3.4 (FINAL RELEASE)
Browse files Browse the repository at this point in the history
  • Loading branch information
miniyev committed May 28, 2018
1 parent 45162e8 commit 5dbbdc1
Show file tree
Hide file tree
Showing 5 changed files with 44 additions and 2 deletions.
29 changes: 29 additions & 0 deletions Block/Adminhtml/Wizard/Installation/Registration/Content.php
Original file line number Diff line number Diff line change
Expand Up @@ -170,6 +170,35 @@ protected function _prepareForm()
]
);

if (!$this->getData('isLicenseStepFinished')) {
$this->css->add(
<<<CSS
#licence_agreement .admin__field {
padding-top: 8px;
}
CSS
);

$fieldset->addField(
'licence_agreement',
'checkbox',
[
'field_extra_attributes' => 'id="licence_agreement"',
'name' => 'licence_agreement',
'class' => 'admin__control-checkbox',
'style' => 'padding-top: 8px;',
'label' => $this->__('Terms and Privacy'),
'checked' => false,
'value' => 1,
'required' => true,
'after_element_html' => $this->__(<<<HTML
&nbsp; I agree to terms and <a href="https://m2epro.com/privacy-policy" target="_blank">privacy policy</a>
HTML
)
]
);
}

$form->setUseContainer(true);
$this->setForm($form);

Expand Down
4 changes: 4 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
* 1.3.4 (r2539) (24/05/2018)

* Added: Compliance with the General Data Protection Regulation (GDPR)

* 1.3.3 (r2494) (20/03/2018)

* Fix: 'Magento Order was not created' error even if Magento Order was actually created in some cases
Expand Down
2 changes: 1 addition & 1 deletion Helper/Module.php
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ public function getName()

public function getPublicVersion()
{
return '1.3.3';
return '1.3.4';
}

public function getSetupVersion()
Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "m2e/ebay-amazon-magento2",
"description": "M2E Pro is a Magento trusted (TM), award-winning extension, which allows merchants of all sizes to fully integrate Magento based system(s) into eBay/Amazon/Rakuten.com platforms.",
"type": "magento2-module",
"version": "1.3.3",
"version": "1.3.4",
"license": "proprietary",
"keywords": ["ebay", "amazon", "rakuten", "magento"],
"homepage": "http://www.m2epro.com/",
Expand Down
9 changes: 9 additions & 0 deletions versions_history.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,13 @@
{
"1.3.4": {
"versions": {
"setup": "1.3.3",
"files": "1.3.4"
},
"revisions": {
"svn": "2539"
}
},
"1.3.3": {
"versions": {
"setup": "1.3.3",
Expand Down

0 comments on commit 5dbbdc1

Please sign in to comment.