Skip to content

Commit d591173

Browse files
author
Ariano Ângelo
committed
v4.1
- Added a history of transactions to the order payment page - Better handling of partial payments - Minor fixes - UI Improvements
1 parent c365404 commit d591173

19 files changed

Lines changed: 1130 additions & 641 deletions

CryptAPI.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
Plugin Name: CryptAPI Payment Gateway for WooCommerce
55
Plugin URI: https://github.com/cryptapi/woocommerce-cryptapi
66
Description: Accept cryptocurrency payments on your WooCommerce website
7-
Version: 4.0.7
7+
Version: 4.1
88
Requires at least: 4.0
99
Tested up to: 5.9.1
1010
WC requires at least: 2.4
@@ -89,7 +89,7 @@ function cryptapi_is_includable($file) {
8989

9090
add_filter( 'cron_schedules', function ( $cryptapi_interval ) {
9191
$cryptapi_interval['cryptapi_interval'] = array(
92-
'interval' => 300,
92+
'interval' => 60,
9393
'display' => esc_html__( 'CryptAPI Interval' ),
9494
);
9595

README.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -199,5 +199,11 @@ The easiest and fastest way is via our live chat on our [website](https://crypta
199199
#### 4.0.7
200200
* Minor fixes
201201

202+
#### 4.1
203+
* Added a history of transactions to the order payment page
204+
* Better handling of partial payments
205+
* Minor fixes
206+
* UI Improvements
207+
202208
### Upgrade Notice
203209
* No breaking changes

controllers/CryptAPI.php

Lines changed: 183 additions & 54 deletions
Large diffs are not rendered by default.

define.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<?php
22

3-
define('CRYPTAPI_PLUGIN_VERSION', '4.0.7');
3+
define('CRYPTAPI_PLUGIN_VERSION', '4.1');
44
define('CRYPTAPI_PLUGIN_PATH', plugin_dir_path(__FILE__));
55
define('CRYPTAPI_PLUGIN_URL', plugin_dir_url(__FILE__));
1.27 KB
Binary file not shown.

0 commit comments

Comments
 (0)