Changeset 2848052
- Timestamp:
- 01/13/2023 04:20:26 PM (3 years ago)
- Location:
- cryptapi-payment-gateway-for-woocommerce
- Files:
-
- 5 edited
- 7 copied
-
tags/4.7.0 (copied) (copied from cryptapi-payment-gateway-for-woocommerce/trunk)
-
tags/4.7.0/CryptAPI.php (copied) (copied from cryptapi-payment-gateway-for-woocommerce/trunk/CryptAPI.php) (1 diff)
-
tags/4.7.0/README.md (copied) (copied from cryptapi-payment-gateway-for-woocommerce/trunk/README.md) (1 diff)
-
tags/4.7.0/controllers/CryptAPI.php (copied) (copied from cryptapi-payment-gateway-for-woocommerce/trunk/controllers/CryptAPI.php) (2 diffs)
-
tags/4.7.0/define.php (copied) (copied from cryptapi-payment-gateway-for-woocommerce/trunk/define.php) (1 diff)
-
tags/4.7.0/readme.txt (copied) (copied from cryptapi-payment-gateway-for-woocommerce/trunk/readme.txt) (2 diffs)
-
tags/4.7.0/static/payment.js (copied) (copied from cryptapi-payment-gateway-for-woocommerce/trunk/static/payment.js)
-
trunk/CryptAPI.php (modified) (1 diff)
-
trunk/README.md (modified) (1 diff)
-
trunk/controllers/CryptAPI.php (modified) (2 diffs)
-
trunk/define.php (modified) (1 diff)
-
trunk/readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
cryptapi-payment-gateway-for-woocommerce/tags/4.7.0/CryptAPI.php
r2844569 r2848052 4 4 Plugin URI: https://github.com/cryptapi/woocommerce-cryptapi 5 5 Description: Accept cryptocurrency payments on your WooCommerce website 6 Version: 4. 6.96 Version: 4.7.0 7 7 Requires at least: 5 8 8 Tested up to: 6.1.1 -
cryptapi-payment-gateway-for-woocommerce/tags/4.7.0/README.md
r2844569 r2848052 302 302 * Minor fixes 303 303 304 #### 4.7.0 305 * Minor fixes 306 * Improvements on the callback processing algorithm 307 304 308 ### Upgrade Notice 305 309 #### 4.3 -
cryptapi-payment-gateway-for-woocommerce/tags/4.7.0/controllers/CryptAPI.php
r2844569 r2848052 621 621 } 622 622 623 if (($counter_calc <= 0 && !$order->is_paid()) || ($remaining_pending <= 0 && empty($history))) { 624 $this->ca_cronjob(true, $order_id); 623 if (!$order->is_paid()) { 624 if ($counter_calc <= 0) { 625 $this->ca_cronjob(true, $order_id); 626 } 625 627 } 626 628 … … 1150 1152 1151 1153 if ( $value_refresh !== 0 && ( (int)$last_price_update + (int)$value_refresh < time() ) && ! empty( $last_price_update ) || ((int)$order_id === $order->get_id() && $force) ) { 1152 if ( ($remaining === $remaining_pending && $remaining_pending > 0) || ((int)$order_id === $order->get_id() && $force )) {1154 if ( ($remaining === $remaining_pending && $remaining_pending > 0) || ((int)$order_id === $order->get_id() && $force && $remaining === $remaining_pending && $remaining_pending > 0)) { 1153 1155 $cryptapi_coin = $order->get_meta( 'cryptapi_currency' ); 1154 1156 -
cryptapi-payment-gateway-for-woocommerce/tags/4.7.0/define.php
r2844569 r2848052 1 1 <?php 2 2 3 define('CRYPTAPI_PLUGIN_VERSION', '4. 6.9');3 define('CRYPTAPI_PLUGIN_VERSION', '4.7.0'); 4 4 define('CRYPTAPI_PLUGIN_PATH', plugin_dir_path(__FILE__)); 5 5 define('CRYPTAPI_PLUGIN_URL', plugin_dir_url(__FILE__)); -
cryptapi-payment-gateway-for-woocommerce/tags/4.7.0/readme.txt
r2844569 r2848052 4 4 Requires at least: 5 5 5 Tested up to: 6.1.1 6 Stable tag: 4. 6.96 Stable tag: 4.7.0 7 7 Requires PHP: 7.2 8 8 WC requires at least: 5.8 … … 312 312 * Minor fixes 313 313 314 = 4.7.0 = 315 * Minor fixes 316 * Improvements on the callback processing algorithm 317 314 318 == Upgrade Notice == 315 319 -
cryptapi-payment-gateway-for-woocommerce/trunk/CryptAPI.php
r2844569 r2848052 4 4 Plugin URI: https://github.com/cryptapi/woocommerce-cryptapi 5 5 Description: Accept cryptocurrency payments on your WooCommerce website 6 Version: 4. 6.96 Version: 4.7.0 7 7 Requires at least: 5 8 8 Tested up to: 6.1.1 -
cryptapi-payment-gateway-for-woocommerce/trunk/README.md
r2844569 r2848052 302 302 * Minor fixes 303 303 304 #### 4.7.0 305 * Minor fixes 306 * Improvements on the callback processing algorithm 307 304 308 ### Upgrade Notice 305 309 #### 4.3 -
cryptapi-payment-gateway-for-woocommerce/trunk/controllers/CryptAPI.php
r2844569 r2848052 621 621 } 622 622 623 if (($counter_calc <= 0 && !$order->is_paid()) || ($remaining_pending <= 0 && empty($history))) { 624 $this->ca_cronjob(true, $order_id); 623 if (!$order->is_paid()) { 624 if ($counter_calc <= 0) { 625 $this->ca_cronjob(true, $order_id); 626 } 625 627 } 626 628 … … 1150 1152 1151 1153 if ( $value_refresh !== 0 && ( (int)$last_price_update + (int)$value_refresh < time() ) && ! empty( $last_price_update ) || ((int)$order_id === $order->get_id() && $force) ) { 1152 if ( ($remaining === $remaining_pending && $remaining_pending > 0) || ((int)$order_id === $order->get_id() && $force )) {1154 if ( ($remaining === $remaining_pending && $remaining_pending > 0) || ((int)$order_id === $order->get_id() && $force && $remaining === $remaining_pending && $remaining_pending > 0)) { 1153 1155 $cryptapi_coin = $order->get_meta( 'cryptapi_currency' ); 1154 1156 -
cryptapi-payment-gateway-for-woocommerce/trunk/define.php
r2844569 r2848052 1 1 <?php 2 2 3 define('CRYPTAPI_PLUGIN_VERSION', '4. 6.9');3 define('CRYPTAPI_PLUGIN_VERSION', '4.7.0'); 4 4 define('CRYPTAPI_PLUGIN_PATH', plugin_dir_path(__FILE__)); 5 5 define('CRYPTAPI_PLUGIN_URL', plugin_dir_url(__FILE__)); -
cryptapi-payment-gateway-for-woocommerce/trunk/readme.txt
r2844569 r2848052 4 4 Requires at least: 5 5 5 Tested up to: 6.1.1 6 Stable tag: 4. 6.96 Stable tag: 4.7.0 7 7 Requires PHP: 7.2 8 8 WC requires at least: 5.8 … … 312 312 * Minor fixes 313 313 314 = 4.7.0 = 315 * Minor fixes 316 * Improvements on the callback processing algorithm 317 314 318 == Upgrade Notice == 315 319
Note: See TracChangeset
for help on using the changeset viewer.