From 62dcd62240cfc395bd52f0c41eb3df7abbd76943 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Niklas=20Ho=CC=88gefjord?= Date: Mon, 12 Nov 2018 10:26:20 +0100 Subject: [PATCH] Version update (1.7.4) --- klarna-checkout-for-woocommerce.php | 6 +++--- readme.txt | 15 ++++++++++++++- 2 files changed, 17 insertions(+), 4 deletions(-) diff --git a/klarna-checkout-for-woocommerce.php b/klarna-checkout-for-woocommerce.php index 909b1a35..b022af11 100644 --- a/klarna-checkout-for-woocommerce.php +++ b/klarna-checkout-for-woocommerce.php @@ -5,12 +5,12 @@ * Description: Klarna Checkout payment gateway for WooCommerce. * Author: Krokedil * Author URI: https://krokedil.com/ - * Version: 1.7.3 + * Version: 1.7.4 * Text Domain: klarna-checkout-for-woocommerce * Domain Path: /languages * * WC requires at least: 3.0 - * WC tested up to: 3.4.7 + * WC tested up to: 3.5.1 * * Copyright (c) 2017-2018 Krokedil * @@ -35,7 +35,7 @@ /** * Required minimums and constants */ -define( 'KCO_WC_VERSION', '1.7.3' ); +define( 'KCO_WC_VERSION', '1.7.4' ); define( 'KCO_WC_MIN_PHP_VER', '5.3.0' ); define( 'KCO_WC_MIN_WC_VER', '3.0.0' ); define( 'KCO_WC_MAIN_FILE', __FILE__ ); diff --git a/readme.txt b/readme.txt index d4aaa406..885a0a44 100644 --- a/readme.txt +++ b/readme.txt @@ -6,7 +6,7 @@ Requires at least: 4.0 Tested up to: 4.9.8 Requires PHP: 5.6 WC requires at least: 3.0.0 -WC tested up to: 3.4.7 +WC tested up to: 3.5.1 Stable tag: trunk License: GPLv3 or later License URI: http://www.gnu.org/licenses/gpl-3.0.html @@ -63,6 +63,19 @@ For help setting up and configuring Klarna Payments for WooCommerce please refer == Changelog == += 2018.11.12 - version 1.7.4 = +* Tweak - Improved handling of order in WooCommerce. Payment now finalized during process_payment. Plugin now allows custom thankyou page. +* Tweak - Add prefix kco_wc_order_id_ to transient name used during purchase. +* Tweak - Order creation caused by checkout_error now sets order status to On hold. +* Fix - Add support for cart_hash control to avoid mismatch in order totals between Klarna & Woo. +* Fix - Changed Klarna country stored in Woo order to prevent issue with Klarna Global. +* Fix - Deletes kco_wc_order_id_ transient on order received page. +* Fix - Added checks to prevent duplicate orders. +* Fix - Added check to ensure hash sign is added to hexcode sent to Klarna (for color display of KCO). +* Fix - Save Klarna order id in Woo order on woocommerce_checkout_order_processed (previously only saved on thankyou page). +* Fix - Improved error handling/display when request to Klarna returns in wp_error. +* Fix - PHP notice fixes. + = 2018.10.19 - version 1.7.3 = * Fix - Fixed issue with no_shipping error on free trial subscriptions. * Fix - json_decode fix to avoid crash when using more than 1 coupon code (props @johanholm).