Changeset 3217507
- Timestamp:
- 01/06/2025 08:18:31 AM (15 months ago)
- Location:
- depay-payments-for-woocommerce
- Files:
-
- 10 edited
- 1 copied
-
tags/2.12.19 (copied) (copied from depay-payments-for-woocommerce/trunk)
-
tags/2.12.19/depay-woocommerce-payments.php (modified) (2 diffs)
-
tags/2.12.19/includes/class-depay-wc-payments-gateway.php (modified) (1 diff)
-
tags/2.12.19/languages/depay-woocommerce-payments.pot (modified) (1 diff)
-
tags/2.12.19/package.json (modified) (1 diff)
-
tags/2.12.19/readme.txt (modified) (2 diffs)
-
trunk/depay-woocommerce-payments.php (modified) (2 diffs)
-
trunk/includes/class-depay-wc-payments-gateway.php (modified) (1 diff)
-
trunk/languages/depay-woocommerce-payments.pot (modified) (1 diff)
-
trunk/package.json (modified) (1 diff)
-
trunk/readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
depay-payments-for-woocommerce/tags/2.12.19/depay-woocommerce-payments.php
r3205102 r3217507 12 12 * Requires at least: 5.8 13 13 * Requires PHP: 7.0 14 * Version: 2.12.1 814 * Version: 2.12.19 15 15 * 16 16 * @package DePay\Payments … … 22 22 define( 'DEPAY_WC_ABSPATH', __DIR__ . '/' ); 23 23 define( 'DEPAY_MIN_WC_ADMIN_VERSION', '0.23.2' ); 24 define( 'DEPAY_CURRENT_VERSION', '2.12.1 8' );24 define( 'DEPAY_CURRENT_VERSION', '2.12.19' ); 25 25 26 26 require_once DEPAY_WC_ABSPATH . '/vendor/autoload.php'; -
depay-payments-for-woocommerce/tags/2.12.19/includes/class-depay-wc-payments-gateway.php
r3197927 r3217507 94 94 return( [ 95 95 'result' => 'success', 96 'redirect' => get_option('woocommerce_enable_signup_and_login_from_checkout') === 'yes' ? $order->get_checkout_payment_url() . '#wc-depay-checkout-' . $checkout_id . '@' . time() : '#wc-depay-checkout-' . $checkout_id . '@' . time() 96 'redirect' => '#wc-depay-checkout-' . $checkout_id . '@' . time() 97 // 'redirect' => get_option('woocommerce_enable_signup_and_login_from_checkout') === 'yes' ? $order->get_checkout_payment_url() . '#wc-depay-checkout-' . $checkout_id . '@' . time() : '#wc-depay-checkout-' . $checkout_id . '@' . time() 97 98 ] ); 98 99 } else { -
depay-payments-for-woocommerce/tags/2.12.19/languages/depay-woocommerce-payments.pot
r3205102 r3217507 3 3 msgid "" 4 4 msgstr "" 5 "Project-Id-Version: DePay WooCommerce Payments 2.12.1 8\n"5 "Project-Id-Version: DePay WooCommerce Payments 2.12.19\n" 6 6 "Report-Msgid-Bugs-To: " 7 7 "support@depay.com\n" -
depay-payments-for-woocommerce/tags/2.12.19/package.json
r3205102 r3217507 2 2 "name": "@depay/web3-woocommerce-depay-payments", 3 3 "moduleName": "WooCommerceDePayPayments", 4 "version": "2.12.1 8",4 "version": "2.12.19", 5 5 "description": "Accept Web3 Crypto Payments. Supports various tokens, blockchains and wallets. MetaMask, Phantom, USDC, USDT, ETH, SOL, BSC, POL, xDAI…", 6 6 "main": "./dist/umd/index.js", -
depay-payments-for-woocommerce/tags/2.12.19/readme.txt
r3205102 r3217507 5 5 Tested up to: 6.7 6 6 Requires PHP: 7.2 7 Stable tag: 2.12.1 87 Stable tag: 2.12.19 8 8 License: GPLv2 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 83 83 == Changelog == 84 84 85 = 2025-1-6 - v2.12.19 = 86 * fixes checkout when login and account creation at checkout is enabled 87 85 88 = 2024-12-9 - v2.12.18 = 86 89 * improves debug endpoint -
depay-payments-for-woocommerce/trunk/depay-woocommerce-payments.php
r3205102 r3217507 12 12 * Requires at least: 5.8 13 13 * Requires PHP: 7.0 14 * Version: 2.12.1 814 * Version: 2.12.19 15 15 * 16 16 * @package DePay\Payments … … 22 22 define( 'DEPAY_WC_ABSPATH', __DIR__ . '/' ); 23 23 define( 'DEPAY_MIN_WC_ADMIN_VERSION', '0.23.2' ); 24 define( 'DEPAY_CURRENT_VERSION', '2.12.1 8' );24 define( 'DEPAY_CURRENT_VERSION', '2.12.19' ); 25 25 26 26 require_once DEPAY_WC_ABSPATH . '/vendor/autoload.php'; -
depay-payments-for-woocommerce/trunk/includes/class-depay-wc-payments-gateway.php
r3197927 r3217507 94 94 return( [ 95 95 'result' => 'success', 96 'redirect' => get_option('woocommerce_enable_signup_and_login_from_checkout') === 'yes' ? $order->get_checkout_payment_url() . '#wc-depay-checkout-' . $checkout_id . '@' . time() : '#wc-depay-checkout-' . $checkout_id . '@' . time() 96 'redirect' => '#wc-depay-checkout-' . $checkout_id . '@' . time() 97 // 'redirect' => get_option('woocommerce_enable_signup_and_login_from_checkout') === 'yes' ? $order->get_checkout_payment_url() . '#wc-depay-checkout-' . $checkout_id . '@' . time() : '#wc-depay-checkout-' . $checkout_id . '@' . time() 97 98 ] ); 98 99 } else { -
depay-payments-for-woocommerce/trunk/languages/depay-woocommerce-payments.pot
r3205102 r3217507 3 3 msgid "" 4 4 msgstr "" 5 "Project-Id-Version: DePay WooCommerce Payments 2.12.1 8\n"5 "Project-Id-Version: DePay WooCommerce Payments 2.12.19\n" 6 6 "Report-Msgid-Bugs-To: " 7 7 "support@depay.com\n" -
depay-payments-for-woocommerce/trunk/package.json
r3205102 r3217507 2 2 "name": "@depay/web3-woocommerce-depay-payments", 3 3 "moduleName": "WooCommerceDePayPayments", 4 "version": "2.12.1 8",4 "version": "2.12.19", 5 5 "description": "Accept Web3 Crypto Payments. Supports various tokens, blockchains and wallets. MetaMask, Phantom, USDC, USDT, ETH, SOL, BSC, POL, xDAI…", 6 6 "main": "./dist/umd/index.js", -
depay-payments-for-woocommerce/trunk/readme.txt
r3205102 r3217507 5 5 Tested up to: 6.7 6 6 Requires PHP: 7.2 7 Stable tag: 2.12.1 87 Stable tag: 2.12.19 8 8 License: GPLv2 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 83 83 == Changelog == 84 84 85 = 2025-1-6 - v2.12.19 = 86 * fixes checkout when login and account creation at checkout is enabled 87 85 88 = 2024-12-9 - v2.12.18 = 86 89 * improves debug endpoint
Note: See TracChangeset
for help on using the changeset viewer.