Changeset 3172075
- Timestamp:
- 10/19/2024 06:37:53 PM (18 months ago)
- Location:
- depay-payments-for-woocommerce
- Files:
-
- 12 edited
- 1 copied
-
tags/2.12.3 (copied) (copied from depay-payments-for-woocommerce/trunk)
-
tags/2.12.3/changelog.txt (modified) (1 diff)
-
tags/2.12.3/depay-woocommerce-payments.php (modified) (2 diffs)
-
tags/2.12.3/includes/class-depay-wc-payments-rest.php (modified) (1 diff)
-
tags/2.12.3/languages/depay-woocommerce-payments.pot (modified) (1 diff)
-
tags/2.12.3/package.json (modified) (1 diff)
-
tags/2.12.3/readme.txt (modified) (1 diff)
-
trunk/changelog.txt (modified) (1 diff)
-
trunk/depay-woocommerce-payments.php (modified) (2 diffs)
-
trunk/includes/class-depay-wc-payments-rest.php (modified) (1 diff)
-
trunk/languages/depay-woocommerce-payments.pot (modified) (1 diff)
-
trunk/package.json (modified) (1 diff)
-
trunk/readme.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
depay-payments-for-woocommerce/tags/2.12.3/changelog.txt
r3170289 r3172075 1 1 *** DePay Web3 Payments for WooCommerce Changelog *** 2 3 2024-10-19 - version 2.12.3 4 * fixes some payment data issues 2 5 3 6 2024-10-16 - version 2.12.2 -
depay-payments-for-woocommerce/tags/2.12.3/depay-woocommerce-payments.php
r3170289 r3172075 12 12 * Requires at least: 5.8 13 13 * Requires PHP: 7.0 14 * Version: 2.12. 214 * Version: 2.12.3 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. 2' );24 define( 'DEPAY_CURRENT_VERSION', '2.12.3' ); 25 25 26 26 require_once DEPAY_WC_ABSPATH . '/vendor/autoload.php'; -
depay-payments-for-woocommerce/tags/2.12.3/includes/class-depay-wc-payments-rest.php
r3170279 r3172075 296 296 'x-api-key' => $api_key, 297 297 'Content-Type' => 'application/json; charset=utf-8', 298 'Origin' => get_site_url(), 298 299 ); 299 300 } else { 300 301 $endpoint = 'https://public.depay.com/payments'; 301 302 $headers = array( 302 'Content-Type' => 'application/json; charset=utf-8' 303 'Content-Type' => 'application/json; charset=utf-8', 304 'Origin' => get_site_url(), 303 305 ); 304 306 } -
depay-payments-for-woocommerce/tags/2.12.3/languages/depay-woocommerce-payments.pot
r3170289 r3172075 3 3 msgid "" 4 4 msgstr "" 5 "Project-Id-Version: DePay WooCommerce Payments 2.12. 2\n"5 "Project-Id-Version: DePay WooCommerce Payments 2.12.3\n" 6 6 "Report-Msgid-Bugs-To: " 7 7 "support@depay.com\n" -
depay-payments-for-woocommerce/tags/2.12.3/package.json
r3170289 r3172075 2 2 "name": "@depay/web3-woocommerce-depay-payments", 3 3 "moduleName": "WooCommerceDePayPayments", 4 "version": "2.12. 2",4 "version": "2.12.3", 5 5 "description": "WooCommerce DePay plugin to accept Web3 payments directly into your wallet with on-the-fly conversion.", 6 6 "main": "./dist/umd/index.js", -
depay-payments-for-woocommerce/tags/2.12.3/readme.txt
r3170289 r3172075 5 5 Tested up to: 6.5 6 6 Requires PHP: 7.2 7 Stable tag: 2.12. 27 Stable tag: 2.12.3 8 8 License: GPLv2 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html -
depay-payments-for-woocommerce/trunk/changelog.txt
r3170289 r3172075 1 1 *** DePay Web3 Payments for WooCommerce Changelog *** 2 3 2024-10-19 - version 2.12.3 4 * fixes some payment data issues 2 5 3 6 2024-10-16 - version 2.12.2 -
depay-payments-for-woocommerce/trunk/depay-woocommerce-payments.php
r3170289 r3172075 12 12 * Requires at least: 5.8 13 13 * Requires PHP: 7.0 14 * Version: 2.12. 214 * Version: 2.12.3 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. 2' );24 define( 'DEPAY_CURRENT_VERSION', '2.12.3' ); 25 25 26 26 require_once DEPAY_WC_ABSPATH . '/vendor/autoload.php'; -
depay-payments-for-woocommerce/trunk/includes/class-depay-wc-payments-rest.php
r3170279 r3172075 296 296 'x-api-key' => $api_key, 297 297 'Content-Type' => 'application/json; charset=utf-8', 298 'Origin' => get_site_url(), 298 299 ); 299 300 } else { 300 301 $endpoint = 'https://public.depay.com/payments'; 301 302 $headers = array( 302 'Content-Type' => 'application/json; charset=utf-8' 303 'Content-Type' => 'application/json; charset=utf-8', 304 'Origin' => get_site_url(), 303 305 ); 304 306 } -
depay-payments-for-woocommerce/trunk/languages/depay-woocommerce-payments.pot
r3170289 r3172075 3 3 msgid "" 4 4 msgstr "" 5 "Project-Id-Version: DePay WooCommerce Payments 2.12. 2\n"5 "Project-Id-Version: DePay WooCommerce Payments 2.12.3\n" 6 6 "Report-Msgid-Bugs-To: " 7 7 "support@depay.com\n" -
depay-payments-for-woocommerce/trunk/package.json
r3170289 r3172075 2 2 "name": "@depay/web3-woocommerce-depay-payments", 3 3 "moduleName": "WooCommerceDePayPayments", 4 "version": "2.12. 2",4 "version": "2.12.3", 5 5 "description": "WooCommerce DePay plugin to accept Web3 payments directly into your wallet with on-the-fly conversion.", 6 6 "main": "./dist/umd/index.js", -
depay-payments-for-woocommerce/trunk/readme.txt
r3170289 r3172075 5 5 Tested up to: 6.5 6 6 Requires PHP: 7.2 7 Stable tag: 2.12. 27 Stable tag: 2.12.3 8 8 License: GPLv2 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html
Note: See TracChangeset
for help on using the changeset viewer.