Skip to content

Commit

Permalink
Version 1.10.3 (#176)
Browse files Browse the repository at this point in the history
  • Loading branch information
mntzrr authored Jun 25, 2024
2 parents 43b85f5 + 29171b9 commit 916e207
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
2 changes: 1 addition & 1 deletion classes/class-dintero-checkout-gateway.php
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ public function __construct() {
$flow = 'express_' . ( 'yes' === $popout ? 'popout' : 'embedded' );
} else {
// We don't need to check for pop-out since it's only available for express checkout.
$flow = 'checkout_' . ( 'yes' === $form_factor['redirect'] ? 'redirect' : 'embedded' );
$flow = 'checkout_' . ( 'yes' === $form_factor ? 'redirect' : 'embedded' );
}

$this->update_option( $this->plugin_id . $this->id . '_checkout_flow', $flow );
Expand Down
4 changes: 2 additions & 2 deletions dintero-checkout-for-woocommerce.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
* Description: Dintero offers a complete payment solution. Simplifying the payment process for you and the customer.
* Author: Dintero, Krokedil
* Author URI: https://krokedil.com/
* Version: 1.10.2
* Version: 1.10.3
* Text Domain: dintero-checkout-for-woocommerce
* Domain Path: /languages
*
Expand All @@ -22,7 +22,7 @@
exit;
}

define( 'DINTERO_CHECKOUT_VERSION', '1.10.2' );
define( 'DINTERO_CHECKOUT_VERSION', '1.10.3' );
define( 'DINTERO_CHECKOUT_URL', untrailingslashit( plugins_url( '/', __FILE__ ) ) );
define( 'DINTERO_CHECKOUT_PATH', untrailingslashit( plugin_dir_path( __FILE__ ) ) );
define( 'DINTERO_CHECKOUT_MAIN_FILE', __FILE__ );
Expand Down
3 changes: 3 additions & 0 deletions readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,9 @@ Go to [https://www.dintero.com/contact-us](https://www.dintero.com/contact-us) t
1. The plugin settings screen where you set up the details to connect to Dintero.

== Changelog ==
= 2024.06.25 - version 1.10.3 =
* Fix - Fixed critical error when reading settings.

= 2024.06.25 - version 1.10.2 =
* Fix - Fixed an issue where if only one customer type was set, and separate shipping was enabled, a JSON error would occur.
* Tweak - The plugin settings has been overhauled. While your existing settings should be automatically converted, please verify that this is the case, and make sure to save the settings again.
Expand Down

0 comments on commit 916e207

Please sign in to comment.