Skip to content

Commit

Permalink
Merge pull request #350 from reepay/pre-1.7.9.3
Browse files Browse the repository at this point in the history
v 1.7.9.3
  • Loading branch information
ponddeja authored Oct 7, 2024
2 parents a536e58 + 508b88c commit 4a67fb7
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 12 deletions.
21 changes: 12 additions & 9 deletions Readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Tags: billwerk+, visa, mastercard, dankort, mobilepay
Requires at least: 4.0
Tested up to: 6.6.1
Requires PHP: 7.4
Stable tag: 1.7.9.2
Stable tag: 1.7.9.3
License: GPL
License URI: http://www.gnu.org/licenses/old-licenses/gpl-2.0.en.html

Expand All @@ -18,19 +18,22 @@ The Billwerk+ Pay plugin extends WooCommerce allowing you to take payments on yo
See installation guide right here: https://docu.billwerk.plus/help/en/apps/woocommerce/setup-woocommerce-plugin.html

== Changelog ==
v 1.7.9.3
- [Fix] - Vipps Recurring could not save card.

v 1.7.9.2
- [Fix] - WebHook URL for plain permalink structure
- [Fix] - Remove debug log is make notice message on cart page.
- [Fix] - Since v1.7.9.1, setting "skip order lines" caused the authorized amount to be multiplied by 100 one more time. Only when using saved card to pay.
- [Fix] - Webhook URL for plain permalink structure.
- [Fix] - Removed debug log notice message on cart page.
- [Fix] - Since v1.7.9.1, setting "skip order lines" caused the authorized amount to be multiplied by 100 one more time. Only when using a saved card to pay for a non-subscription product.

v 1.7.9.1
- [Fix] The payment method 'Vipps MobilePay Recurring' did not save the token.
- [Fix] - The payment method 'Vipps MobilePay Recurring' did not save the token.

v 1.7.9
- [Improvement] New payment method added: "Vipps MobilePay".
- [Improvement] Warning messages added for "Mobilepay" to encourage switch to "Vipps Mobilepay".
- [Improvement] Name change payment method "Vipps Recurring" to "Vipps MobilePay Recurring".
- [Improvement] Warning message added for "MobilePay Subscription" to encourage switch to using "Vipps MobilePay - Recurring" instead.
- [Improvement] - New payment method added: "Vipps MobilePay".
- [Improvement] - Warning messages added for "Mobilepay" to encourage switch to "Vipps Mobilepay".
- [Improvement] - Name change payment method "Vipps Recurring" to "Vipps MobilePay Recurring".
- [Improvement] - Warning message added for "MobilePay Subscription" to encourage switch to using "Vipps MobilePay - Recurring" instead.

v 1.7.8.1 -
* [Fix] - Fixed total calculation missing multiplication with number of items when using setting "Skip order lines".
Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"description": "Get a plug-n-play payment solution for WooCommerce, that is easy to use, highly secure and is built to maximize the potential of your e-commerce.",
"type": "wordpress-plugin",
"license": "GPL",
"version": "1.7.9.2",
"version": "1.7.9.3",
"autoload": {
"psr-4": {
"Reepay\\Checkout\\": "includes/",
Expand Down
2 changes: 1 addition & 1 deletion includes/Gateways/ReepayGateway.php
Original file line number Diff line number Diff line change
Expand Up @@ -1009,7 +1009,7 @@ public function process_payment( $order_id ) {
wc_get_order( $order_id )->add_order_note( $e->getMessage() );
}
}
} elseif ( wcs_cart_have_subscription() ) {
} elseif ( wcs_cart_have_subscription() && $order->get_payment_method() !== 'reepay_vipps_recurring' ) {
return $this->process_session_charge( $params, $order );
} else {
$order_lines = 'no' === $this->skip_order_lines ? $this->get_order_items( $order ) : null;
Expand Down
2 changes: 1 addition & 1 deletion reepay-woocommerce-payment.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
* Description: Get a plug-n-play payment solution for WooCommerce, that is easy to use, highly secure and is built to maximize the potential of your e-commerce.
* Author: Billwerk+
* Author URI: http://billwerk.plus
* Version: 1.7.9.2
* Version: 1.7.9.3
* Text Domain: reepay-checkout-gateway
* Domain Path: /languages
* WC requires at least: 3.0.0
Expand Down

0 comments on commit 4a67fb7

Please sign in to comment.