Skip to content

Commit

Permalink
Release v6.1.0 (#316)
Browse files Browse the repository at this point in the history
  • Loading branch information
GiovanniCavallari authored Aug 22, 2022
1 parent f47ab73 commit 315b11a
Show file tree
Hide file tree
Showing 55 changed files with 7,963 additions and 7,254 deletions.
21 changes: 21 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,27 @@ 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).

## [6.1.0] - 2022-08-22

### Added
- Added notices scripts on plugin
- Added validation to avoid installments equal to zero
- Added trigger to payment_method_selected event if it not triggered on checkout custom load
- Added rule in notification to allow an approved payment to update if order status is pending, on_hold or failed
- Added client to handle caronte scripts success and error

### Changed
- Removed the test credentials requirement to configure the plugin
- Adjusted credential saving flow to avoid saving two public_key or access_token
- Changed how to load melidata script on window.load
- Send email from Pix and QRCode only for orders with pending status
- Audited npm packages

### Fixed
- Fixed plugin and platform version on melidata client
- Fixed order status when a partial refund is made
- Fixed currency conversion value to display at checkout

## [6.0.2] - 2022-07-13

### Added
Expand Down
11 changes: 8 additions & 3 deletions assets/css/components_mercadopago.css
Original file line number Diff line number Diff line change
Expand Up @@ -155,16 +155,20 @@
background: #ff7733;
border-radius: 6px 0 0 6px;
}
.mp-alert-color-error {
width: 6px;
background: #ff3333;
border-radius: 6px 0 0 6px;
}
.mp-card-body-payments {
display: flex;
align-items: flex-start;
padding: 12px 16px 0px 0px;
width: 512px;
padding: 24px 100px 24px 0px;
background: rgba(0, 0, 0, 0.04);
border-radius: 0 6px 6px 0;
}
.mp-card-body-size {
width: 600px;
width: 653px;
}
.mp-card-body-size-homolog {
width: 700px;
Expand All @@ -191,6 +195,7 @@
align-items: center;
color: rgba(0, 0, 0, 0.9);
margin: 4px 0px;
font-weight: bold;
}
.mp-text-subtitle {
font-family: "Proxima Nova", -apple-system, "Helvetica Neue", Helvetica,
Expand Down
2 changes: 1 addition & 1 deletion assets/css/components_mercadopago.min.css

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

11 changes: 9 additions & 2 deletions assets/css/mercadopago-settings/mercadopago_settings.css
Original file line number Diff line number Diff line change
Expand Up @@ -488,9 +488,16 @@ input:checked + .mp-settings-slider:before {
.mp-settings-alert-payment-methods-orange {
width: 6px;
background-color: #ff7733;
height: 72px;
height: 142px;
border-radius: 6px 0 0 6px;
}
.mp-settings-alert-red {
width: 6px;
background-color: #ff0000;
height: 100%;
border-radius: 6px 0 0 6px;
}

.mp-settings-alert-payment-methods-green {
width: 6px;
background-color: #00a650;
Expand All @@ -509,7 +516,7 @@ input:checked + .mp-settings-slider:before {
.mp-settings-alert-mode-body {
font-family: sans-serif;
font-size: 14px;
line-height: 18px;
line-height: 22px;
margin-top: 4px;
}
.mp-settings-alert-mode-title {
Expand Down
Loading

0 comments on commit 315b11a

Please sign in to comment.