diff --git a/CHANGELOG.md b/CHANGELOG.md index 9907737..eff7bc4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,13 @@ +## 1.6.1 +Release date - Dec 22nd, 2022 + +### Fixed ++ PLGCSCS-140: Fix the options within the select field for Ideal issuers ++ PLGCSCS-136: Fix miscalculations of the shipping item when this one is not including taxes ++ PLGCSCS-128: Fix missing merchant_item_id on discounts + +*** + ## 1.6.0 Release date - Jun 18th, 2021 diff --git a/src/app/payments/multisafepay.php b/src/app/payments/multisafepay.php index 183e3af..8b7fe16 100644 --- a/src/app/payments/multisafepay.php +++ b/src/app/payments/multisafepay.php @@ -291,10 +291,10 @@ $msp->transaction['items'] = $cart_items; $msp->transaction['gateway'] = getGateway($processor_data['processor_params']['gateway']); $msp->plugin_name = 'CS-Cart 4.x'; - $msp->version = '1.6.0'; + $msp->version = '1.6.1'; $msp->plugin['shop'] = 'CS-Cart'; $msp->plugin['shop_version'] = PRODUCT_VERSION; - $msp->plugin['plugin_version'] = '1.6.0'; + $msp->plugin['plugin_version'] = '1.6.1'; $msp->plugin['partner'] = ''; $msp->plugin['shop_root_url'] = Registry::get('config.current_location'); diff --git a/src/app/payments/multisafepay/multisafepay_fastcheckout.functions.php b/src/app/payments/multisafepay/multisafepay_fastcheckout.functions.php index 8dd3205..a64df1f 100644 --- a/src/app/payments/multisafepay/multisafepay_fastcheckout.functions.php +++ b/src/app/payments/multisafepay/multisafepay_fastcheckout.functions.php @@ -88,11 +88,10 @@ function fn_multisafepay_set_fastcheckout($payment_id, $order_id = 0, $order_inf $msp->transaction['description'] = 'Order #' . $msp->transaction['id']; $msp->transaction['items'] = $cart_items; $msp->plugin_name = 'CS-Cart 4.x'; - $msp->version = '1.6.0'; - + $msp->version = '1.6.1'; $msp->plugin['shop'] = 'CS-Cart'; $msp->plugin['shop_version'] = PRODUCT_VERSION; - $msp->plugin['plugin_version'] = '1.6.0'; + $msp->plugin['plugin_version'] = '1.6.1'; $msp->plugin['partner'] = ''; $msp->plugin['shop_root_url'] = Registry::get('config.current_location');