Changeset 2800656
- Timestamp:
- 10/18/2022 02:23:07 PM (3 years ago)
- Location:
- cryptapi-payment-gateway-for-woocommerce
- Files:
-
- 5 edited
- 14 copied
-
tags/4.6.6 (copied) (copied from cryptapi-payment-gateway-for-woocommerce/trunk)
-
tags/4.6.6/CryptAPI.php (copied) (copied from cryptapi-payment-gateway-for-woocommerce/trunk/CryptAPI.php) (1 diff)
-
tags/4.6.6/README.md (copied) (copied from cryptapi-payment-gateway-for-woocommerce/trunk/README.md) (1 diff)
-
tags/4.6.6/controllers/CryptAPI.php (copied) (copied from cryptapi-payment-gateway-for-woocommerce/trunk/controllers/CryptAPI.php) (2 diffs)
-
tags/4.6.6/define.php (copied) (copied from cryptapi-payment-gateway-for-woocommerce/trunk/define.php) (1 diff)
-
tags/4.6.6/languages/cryptapi-payment-gateway-for-woocommerce-es_ES.po (copied) (copied from cryptapi-payment-gateway-for-woocommerce/trunk/languages/cryptapi-payment-gateway-for-woocommerce-es_ES.po)
-
tags/4.6.6/languages/cryptapi-payment-gateway-for-woocommerce-it_IT.po (copied) (copied from cryptapi-payment-gateway-for-woocommerce/trunk/languages/cryptapi-payment-gateway-for-woocommerce-it_IT.po)
-
tags/4.6.6/languages/cryptapi-payment-gateway-for-woocommerce-pt_BR.po (copied) (copied from cryptapi-payment-gateway-for-woocommerce/trunk/languages/cryptapi-payment-gateway-for-woocommerce-pt_BR.po)
-
tags/4.6.6/languages/cryptapi-payment-gateway-for-woocommerce-pt_PT.po (copied) (copied from cryptapi-payment-gateway-for-woocommerce/trunk/languages/cryptapi-payment-gateway-for-woocommerce-pt_PT.po)
-
tags/4.6.6/languages/cryptapi-payment-gateway-for-woocommerce.pot (copied) (copied from cryptapi-payment-gateway-for-woocommerce/trunk/languages/cryptapi-payment-gateway-for-woocommerce.pot)
-
tags/4.6.6/readme.txt (copied) (copied from cryptapi-payment-gateway-for-woocommerce/trunk/readme.txt) (2 diffs)
-
tags/4.6.6/static/files/ca_copy_icon.svg (copied) (copied from cryptapi-payment-gateway-for-woocommerce/trunk/static/files/ca_copy_icon.svg)
-
tags/4.6.6/static/files/ca_copy_icon_dark.svg (copied) (copied from cryptapi-payment-gateway-for-woocommerce/trunk/static/files/ca_copy_icon_dark.svg)
-
tags/4.6.6/static/files/ca_loader.svg (copied) (copied from cryptapi-payment-gateway-for-woocommerce/trunk/static/files/ca_loader.svg)
-
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.6.6/CryptAPI.php
r2797338 r2800656 4 4 Plugin URI: https://github.com/cryptapi/woocommerce-cryptapi 5 5 Description: Accept cryptocurrency payments on your WooCommerce website 6 Version: 4.6. 56 Version: 4.6.6 7 7 Requires at least: 5 8 8 Tested up to: 6.0.2 9 9 WC requires at least: 5.8 10 WC tested up to: 6.9.410 WC tested up to: 7.0.0 11 11 Requires PHP: 7.2 12 12 Author: cryptapi -
cryptapi-payment-gateway-for-woocommerce/tags/4.6.6/README.md
r2797338 r2800656 290 290 * Minor fixes 291 291 292 #### 4.6.6 293 * Minor fixes 294 292 295 ### Upgrade Notice 293 296 #### 4.3 -
cryptapi-payment-gateway-for-woocommerce/tags/4.6.6/controllers/CryptAPI.php
r2797338 r2800656 59 59 60 60 add_action( 'woocommerce_admin_order_data_after_order_details', array( $this, 'order_detail_validate_logs' ) ); 61 62 } 61 } 63 62 64 63 function load_coins() { … … 1430 1429 } 1431 1430 1431 if($order->get_payment_method() !== 'cryptapi') { 1432 return; 1433 } 1434 1432 1435 $ajax_url = add_query_arg( array( 1433 'action' => ' cryptapi_validate_logs',1436 'action' => 'blockbee_validate_logs', 1434 1437 'order_id' => $order->get_ID(), 1435 1438 ), home_url( '/wp-admin/admin-ajax.php' ) ); -
cryptapi-payment-gateway-for-woocommerce/tags/4.6.6/define.php
r2797338 r2800656 1 1 <?php 2 2 3 define('CRYPTAPI_PLUGIN_VERSION', '4.6. 5');3 define('CRYPTAPI_PLUGIN_VERSION', '4.6.6'); 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.6.6/readme.txt
r2797338 r2800656 7 7 Requires PHP: 7.2 8 8 WC requires at least: 5.8 9 WC tested up to: 6.9.49 WC tested up to: 7.0.0 10 10 License: MIT 11 11 … … 300 300 * Minor fixes 301 301 302 = 4.6.6 = 303 * Minor fixes 304 302 305 == Upgrade Notice == 303 306 -
cryptapi-payment-gateway-for-woocommerce/trunk/CryptAPI.php
r2797338 r2800656 4 4 Plugin URI: https://github.com/cryptapi/woocommerce-cryptapi 5 5 Description: Accept cryptocurrency payments on your WooCommerce website 6 Version: 4.6. 56 Version: 4.6.6 7 7 Requires at least: 5 8 8 Tested up to: 6.0.2 9 9 WC requires at least: 5.8 10 WC tested up to: 6.9.410 WC tested up to: 7.0.0 11 11 Requires PHP: 7.2 12 12 Author: cryptapi -
cryptapi-payment-gateway-for-woocommerce/trunk/README.md
r2797338 r2800656 290 290 * Minor fixes 291 291 292 #### 4.6.6 293 * Minor fixes 294 292 295 ### Upgrade Notice 293 296 #### 4.3 -
cryptapi-payment-gateway-for-woocommerce/trunk/controllers/CryptAPI.php
r2797338 r2800656 59 59 60 60 add_action( 'woocommerce_admin_order_data_after_order_details', array( $this, 'order_detail_validate_logs' ) ); 61 62 } 61 } 63 62 64 63 function load_coins() { … … 1430 1429 } 1431 1430 1431 if($order->get_payment_method() !== 'cryptapi') { 1432 return; 1433 } 1434 1432 1435 $ajax_url = add_query_arg( array( 1433 'action' => ' cryptapi_validate_logs',1436 'action' => 'blockbee_validate_logs', 1434 1437 'order_id' => $order->get_ID(), 1435 1438 ), home_url( '/wp-admin/admin-ajax.php' ) ); -
cryptapi-payment-gateway-for-woocommerce/trunk/define.php
r2797338 r2800656 1 1 <?php 2 2 3 define('CRYPTAPI_PLUGIN_VERSION', '4.6. 5');3 define('CRYPTAPI_PLUGIN_VERSION', '4.6.6'); 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
r2797338 r2800656 7 7 Requires PHP: 7.2 8 8 WC requires at least: 5.8 9 WC tested up to: 6.9.49 WC tested up to: 7.0.0 10 10 License: MIT 11 11 … … 300 300 * Minor fixes 301 301 302 = 4.6.6 = 303 * Minor fixes 304 302 305 == Upgrade Notice == 303 306
Note: See TracChangeset
for help on using the changeset viewer.