Skip to content

Commit

Permalink
Merge pull request #151 from PluginAndPartners/release/4.5.0
Browse files Browse the repository at this point in the history
New release 4.5.0
  • Loading branch information
GiovanniCavallari authored Oct 23, 2020
2 parents 35e474b + 2229055 commit 9f74258
Show file tree
Hide file tree
Showing 56 changed files with 6,508 additions and 1,225 deletions.
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
node_modules
package-lock.json
.DS_Store
.vscode
.idea
Expand Down
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,20 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [4.5.0] - 2020-10-26

### Added
- Compatibility with WooCommerce v4.6.x
- Improved security (added access token in the header for all calls to Mercado Livre and Mercado Pago endpoints)
- Add new endpoint to validate Access Token and Public key to substitute old process to validation
- Improved performance with CSS minification

### Changed
- Fixed conflict with wc-api webhook and Mercado Pago webhook/IPN.
- Fixed alert in currency conversion
- Fixed tranlate in currency conversion
- Bug fixed when updating orders that have two or more payments associated.

## [4.4.0] - 2020-09-21

### Added
Expand Down
1 change: 1 addition & 0 deletions assets/css/admin_notice_mercadopago.min.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions assets/css/basic_checkout_mercadopago.min.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions assets/css/config_mercadopago.min.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 3 additions & 1 deletion assets/js/basic_config_mercadopago.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,9 @@ window.onload = function () {
document.querySelector('.wc-admin-breadcrumb').style.display = 'none';
document.querySelector('.mp-header-logo').style.display = 'none';
document.querySelector('#_wpnonce').parentElement.style.display = 'none';
document.querySelectorAll('h2')[4].style.display = 'none';

var h2s = document.querySelectorAll('h2');
h2s[4] !== undefined ? h2s[4].style.display = 'none' : null;


var descriptionInput = document.querySelectorAll('p.description');
Expand Down
Loading

0 comments on commit 9f74258

Please sign in to comment.