Skip to content

Commit 30a2470

Browse files
committed
v1.0.18
* Add new choices for order cancellation.
1 parent 1164680 commit 30a2470

14 files changed

+1305
-1108
lines changed

BlockBee.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
Plugin Name: BlockBee Cryptocurrency Payment Gateway
44
Plugin URI: https://blockbee.io/resources/woocommerce/
55
Description: Accept cryptocurrency payments on your WooCommerce website
6-
Version: 1.0.17
6+
Version: 1.0.18
77
Requires at least: 5
88
Tested up to: 6.3
99
WC requires at least: 5.8

README.md

+3
Original file line numberDiff line numberDiff line change
@@ -207,4 +207,7 @@ The easiest and fastest way is via our live chat on our [website](https://blockb
207207
* Support for WooCommerce HPOS.
208208
* Minor fixes.
209209

210+
#### 1.0.18
211+
* Add new choices for order cancellation.
212+
210213
### Upgrade Notice

controllers/BlockBee.php

+3
Original file line numberDiff line numberDiff line change
@@ -256,6 +256,9 @@ function init_form_fields()
256256
'default' => '0',
257257
'options' => array(
258258
'0' => __('Never', 'blockbee-cryptocurrency-payment-gateway'),
259+
'900' => __('15 Minutes', 'blockbee-cryptocurrency-payment-gateway'),
260+
'1800' => __('30 Minutes', 'blockbee-cryptocurrency-payment-gateway'),
261+
'2700' => __('45 Minutes', 'blockbee-cryptocurrency-payment-gateway'),
259262
'3600' => __('1 Hour', 'blockbee-cryptocurrency-payment-gateway'),
260263
'21600' => __('6 Hours', 'blockbee-cryptocurrency-payment-gateway'),
261264
'43200' => __('12 Hours', 'blockbee-cryptocurrency-payment-gateway'),

define.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<?php
22

3-
define('BLOCKBEE_PLUGIN_VERSION', '1.0.17');
3+
define('BLOCKBEE_PLUGIN_VERSION', '1.0.18');
44
define('BLOCKBEE_PLUGIN_PATH', plugin_dir_path(__FILE__));
55
define('BLOCKBEE_PLUGIN_URL', plugin_dir_url(__FILE__));
Binary file not shown.

0 commit comments

Comments
 (0)