Skip to content

Commit

Permalink
Release 1.0.14
Browse files Browse the repository at this point in the history
  • Loading branch information
sauliususoniswallee committed Oct 14, 2022
1 parent 83f5a4e commit dc86872
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 7 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,5 +15,5 @@ This repository contains the wallee WooCommerce Subscriptions addon that enables

## License

Please see the [license file](https://github.com/wallee-payment/woocommerce-subscription/blob/1.0.13/LICENSE) for more information.
Please see the [license file](https://github.com/wallee-payment/woocommerce-subscription/blob/1.0.14/LICENSE) for more information.

2 changes: 2 additions & 0 deletions changelog.txt
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,8 @@ test release

readme updates

Bug fix, if space_view_id is not set, it does not send it to the service portal.

= 1.0.2 - March 19, 2019 =

* Fix - WooCommerce Subscription > 2.5.0
Expand Down
2 changes: 1 addition & 1 deletion docs/en/documentation.html
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ <h2>Documentation</h2> </div>
</a>
</li>
<li>
<a href="https://github.com/wallee-payment/woocommerce-subscription/releases/tag/1.0.13/">
<a href="https://github.com/wallee-payment/woocommerce-subscription/releases/tag/1.0.14/">
Source
</a>
</li>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,10 @@ public function create_transaction_by_renewal_order(WC_Order $order, $order_tota
$space_id = get_option(WooCommerce_Wallee::CK_SPACE_ID);
$create_transaction = new \Wallee\Sdk\Model\TransactionCreate();
$create_transaction->setCustomersPresence(\Wallee\Sdk\Model\CustomersPresence::VIRTUAL_PRESENT);
$create_transaction->setSpaceViewId(get_option(WooCommerce_Wallee::CK_SPACE_VIEW_ID));
$space_view_id = get_option(WooCommerce_Wallee::CK_SPACE_VIEW_ID);
if (is_numeric($space_view_id)) {
$create_transaction->setSpaceViewId($space_view_id);
}
$create_transaction->setToken($token_id);
$this->assemble_order_transaction_data($order, $create_transaction);
$this->set_modified_order_line_items($order, $order_total, $create_transaction);
Expand Down
4 changes: 2 additions & 2 deletions readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ Contributors: customwebgmbh
Tags: woocommerce wallee, woocommerce, wallee, payment, e-commerce, webshop, psp, subscription, recurring payment, processing
Requires at least: 4.7
Tested up to: 5.7.2
Stable tag: 1.0.13
Stable tag: 1.0.14
License: Apache 2
License URI: http://www.apache.org/licenses/LICENSE-2.0

Expand Down Expand Up @@ -49,4 +49,4 @@ Therefore, it is necessary that you install the this plugin as well.

== Changelog ==

readme updates
Bug fix, if space_view_id is not set, it does not send it to the service portal.
4 changes: 2 additions & 2 deletions woocommerce-wallee-subscription.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* Plugin Name: WooCommerce wallee Subscription
* Plugin URI: https://wordpress.org/plugins/woo-wallee-subscription
* Description: Addon to processs WooCommerce Subscriptions with wallee
* Version: 1.0.13
* Version: 1.0.14
* License: Apache2
* License URI: http://www.apache.org/licenses/LICENSE-2.0
* Author: customweb GmbH
Expand Down Expand Up @@ -36,7 +36,7 @@ final class WooCommerce_Wallee_Subscription
*
* @var string
*/
private $version = '1.0.13';
private $version = '1.0.14';

/**
* The single instance of the class.
Expand Down

0 comments on commit dc86872

Please sign in to comment.