Changeset 2937179
- Timestamp:
- 07/11/2023 02:15:56 PM (3 years ago)
- Location:
- trelis-crypto-payments/trunk
- Files:
-
- 3 edited
-
ReadMe.txt (modified) (2 diffs)
-
admin/MeprTrelisGateway.php (modified) (1 diff)
-
trelis-crypto-payments.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trelis-crypto-payments/trunk/ReadMe.txt
r2930962 r2937179 5 5 Requires at least: 6.1 6 6 Tested up to: 6.2.2 7 Stable tag: 2.0. 17 Stable tag: 2.0.2 8 8 Requires PHP: 7.4 9 9 License: GPL-3.0 … … 70 70 == Changelog == 71 71 72 = 2.0.2 = 73 * Fix bug with MemberPress expiring memberships 74 72 75 = 2.0.1 = 73 76 * Tested up to WordPress 6.2.2 -
trelis-crypto-payments/trunk/admin/MeprTrelisGateway.php
r2897687 r2937179 405 405 // Initialize the charge on Trelis's servers - this will charge the user's card 406 406 407 // Initialize the charge on Trelis's servers - this will charge the user's card 407 408 $args = MeprHooks::apply_filters('mepr_trelis_payment_args', array( 408 409 409 "productName" => $productName, 410 411 410 "productPrice" => $productPrice, 412 413 411 "token" => $this->trelis_api->get_mepr_token(), 414 415 412 "redirectLink" => $this->notify_url('return') . '?txn=' . $txn->trans_num, 416 417 413 "fiatCurrency" => $this->trelis_api->get_mepr_currency(), 418 419 "isPrime" => $this->settings->is_prime, 420 421 "isGasless" => $this->settings->is_gasless 422 414 "isPrime" => ($this->settings->is_prime == 'on'), // Convert to boolean 415 "isGasless" => ($this->settings->is_gasless == 'on') // Convert to boolean 423 416 ), $txn); 424 417 -
trelis-crypto-payments/trunk/trelis-crypto-payments.php
r2897690 r2937179 17 17 * Plugin URI: https://docs.trelis.com/products/woocommerce-plugin 18 18 * Description: Accept USDC payments, including recurring payments to your wallet. 19 * Version: 2.0. 119 * Version: 2.0.2 20 20 * Requires at least: 6.1 21 21 * Requires PHP: 7.4 … … 38 38 * Rename this for your plugin and update it as you release new versions. 39 39 */ 40 define('TRELIS_CRYPTO_PAYMENTS_VERSION', ' 1.0.0');40 define('TRELIS_CRYPTO_PAYMENTS_VERSION', '2.0.2'); 41 41 42 42
Note: See TracChangeset
for help on using the changeset viewer.