Skip to content

Commit ed529a8

Browse files
authored
Merge pull request #4 from arianoangelo/master
Update 4.0.2
2 parents 5c11270 + 045b98c commit ed529a8

17 files changed

Lines changed: 2804 additions & 593 deletions

.gitignore

Lines changed: 0 additions & 10 deletions
This file was deleted.

CryptAPI.php

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,11 @@
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: 3.1
7+
Version: 4.0.2
88
Requires at least: 4.0
9-
Tested up to: 5.8
9+
Tested up to: 5.9
1010
WC requires at least: 2.4
11-
WC tested up to: 5.6
11+
WC tested up to: 6.2
1212
Requires PHP: 5.5
1313
Author: cryptapi
1414
Author URI: https://cryptapi.io/
@@ -36,10 +36,14 @@ function cryptapi_loader() {
3636
$dirs = [
3737
CRYPTAPI_PLUGIN_PATH . 'controllers/',
3838
CRYPTAPI_PLUGIN_PATH . 'utils/',
39+
CRYPTAPI_PLUGIN_PATH . 'languages/',
3940
];
4041

4142
cryptapi_include_dirs($dirs);
4243

44+
$mo_file_path = dirname(__FILE__) . '/languages/cryptapi-payment-gateway-for-woocommerce-'. get_locale() . '.mo';
45+
load_textdomain('cryptapi', $mo_file_path );
46+
4347
$cryptapi = new WC_CryptAPI_Gateway();
4448
}
4549

@@ -104,4 +108,4 @@ function cryptapi_activation() {
104108

105109
function cryptapi_deactivation() {
106110
wp_clear_scheduled_hook( 'cryptapi_cronjob' );
107-
}
111+
};

README.md

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -148,5 +148,41 @@ The easiest and fastest way is via our live chat on our [website](https://crypta
148148
* Updated codebase
149149
* New API URL
150150

151+
#### 3.0
152+
* UI Improvements
153+
* Minor Bug Fixes
154+
155+
#### 3.0.2
156+
* New setting to show QR Code by default
157+
* UI Improvements
158+
* Minor Bug Fixes
159+
160+
#### 3.1
161+
* Add support for WooCommerce Subscriptions plugin
162+
* Add new feature to refresh values based on store owner preferences
163+
* Add new feature to cancel orders if they take more than selected time to pay
164+
165+
#### 3.2
166+
* Add support for WooCommerce Subscriptions plugin
167+
* Add new feature to refresh values based on store owner preferences
168+
* Add new feature to cancel orders if they take more than selected time to pay
169+
170+
#### 3.2.1
171+
* Add translations for multiple languages
172+
173+
#### 4.0
174+
* New settings and color schemes to fit dark mode
175+
* New settings to add CryptAPI's services fees to the checkout
176+
* New settings to add blockchain fees to the checkout
177+
* Upgrade the settings
178+
* UI Improvements
179+
* Minor fixes
180+
181+
#### 4.0.1
182+
* Minor fixes
183+
184+
#### 4.0.2
185+
* Minor fixes
186+
151187
### Upgrade Notice
152188
* No breaking changes

0 commit comments

Comments
 (0)