Changeset 3200330
- Timestamp:
- 12/01/2024 06:05:51 PM (16 months ago)
- Location:
- depay-payments
- Files:
-
- 10 edited
- 1 copied
-
tags/3.0.3 (copied) (copied from depay-payments/trunk)
-
tags/3.0.3/block.json (modified) (1 diff)
-
tags/3.0.3/core/includes/classes/class-depay-payments-block.php (modified) (1 diff)
-
tags/3.0.3/depay-payments.php (modified) (2 diffs)
-
tags/3.0.3/package.json (modified) (1 diff)
-
tags/3.0.3/readme.txt (modified) (2 diffs)
-
trunk/block.json (modified) (1 diff)
-
trunk/core/includes/classes/class-depay-payments-block.php (modified) (1 diff)
-
trunk/depay-payments.php (modified) (2 diffs)
-
trunk/package.json (modified) (1 diff)
-
trunk/readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
depay-payments/tags/3.0.3/block.json
r3200318 r3200330 7 7 "description": "Accept Web3 Crypto Payments & Donations. Supports various tokens, blockchains and wallets. MetaMask, Phantom, USDC, USDT, ETH, SOL, BSC, POL, xDAI…", 8 8 "keywords": [ "payments", "crypto", "web3", "DePay", "USDC" ], 9 "version": "3.0. 2",9 "version": "3.0.3", 10 10 "textdomain": "depay-payments", 11 11 "example": {}, -
depay-payments/tags/3.0.3/core/includes/classes/class-depay-payments-block.php
r3200318 r3200330 163 163 $receiver = get_option('DePay_payments_receiving_wallet_address'); 164 164 $widgetTitle = isset($attributes['widgetTitle']) ? $attributes['widgetTitle'] : 'Payment'; 165 $widgetAmountType = isset($attributes['paymentAmountType']) ? $attributes['paymentAmountType'] : get_option( 'DePay_payments_widget_amount_type' );165 $widgetAmountType = isset($attributes['paymentAmountType']) ? $attributes['paymentAmountType'] : 'fixed'; 166 166 $widgetAmountCurrency = get_option( 'DePay_payments_widget_amount_currency' ); 167 167 $widgetDisplayCurrency = get_option( 'DePay_payments_widget_display_currency' ); -
depay-payments/tags/3.0.3/depay-payments.php
r3200318 r3200330 15 15 * Plugin URI: https://depay.com/plugins/wordpress 16 16 * Description: Accept Web3 Crypto Payments & Donations. Supports various tokens, blockchains and wallets. MetaMask, Phantom, USDC, USDT, ETH, SOL, BSC, POL, xDAI… 17 * Version: 3.0. 217 * Version: 3.0.3 18 18 * License: GPL-2.0+ 19 19 * License URI: http://www.gnu.org/licenses/gpl-2.0.txt … … 30 30 31 31 // Plugin version 32 define( 'DEPAYPAYMENTS_VERSION', '3.0. 2' );32 define( 'DEPAYPAYMENTS_VERSION', '3.0.3' ); 33 33 34 34 // Plugin Root File -
depay-payments/tags/3.0.3/package.json
r3200318 r3200330 2 2 "name": "@depay/web3-wordpress-depay", 3 3 "moduleName": "WordpressDePayPayments", 4 "version": "3.0. 2",4 "version": "3.0.3", 5 5 "description": "Accept Web3 Crypto Payments & Donations. Supports various tokens, blockchains and wallets. MetaMask, Phantom, USDC, USDT, ETH, SOL, BSC, POL, xDAI…", 6 6 "main": "./dist/umd/index.js", -
depay-payments/tags/3.0.3/readme.txt
r3200318 r3200330 4 4 Requires at least: 5.0 5 5 Tested up to: 6.7 6 Stable tag: 3.0. 26 Stable tag: 3.0.3 7 7 Requires PHP: 5.6 8 8 License: GPLv2 … … 71 71 == Changelog == 72 72 73 = 2024-12-1 - v3.0.3 = 74 * fix block configuration amountType 75 73 76 = 2024-12-1 - v3.0.2 = 74 77 * fixes JSON parse error in some currency situations -
depay-payments/trunk/block.json
r3200318 r3200330 7 7 "description": "Accept Web3 Crypto Payments & Donations. Supports various tokens, blockchains and wallets. MetaMask, Phantom, USDC, USDT, ETH, SOL, BSC, POL, xDAI…", 8 8 "keywords": [ "payments", "crypto", "web3", "DePay", "USDC" ], 9 "version": "3.0. 2",9 "version": "3.0.3", 10 10 "textdomain": "depay-payments", 11 11 "example": {}, -
depay-payments/trunk/core/includes/classes/class-depay-payments-block.php
r3200318 r3200330 163 163 $receiver = get_option('DePay_payments_receiving_wallet_address'); 164 164 $widgetTitle = isset($attributes['widgetTitle']) ? $attributes['widgetTitle'] : 'Payment'; 165 $widgetAmountType = isset($attributes['paymentAmountType']) ? $attributes['paymentAmountType'] : get_option( 'DePay_payments_widget_amount_type' );165 $widgetAmountType = isset($attributes['paymentAmountType']) ? $attributes['paymentAmountType'] : 'fixed'; 166 166 $widgetAmountCurrency = get_option( 'DePay_payments_widget_amount_currency' ); 167 167 $widgetDisplayCurrency = get_option( 'DePay_payments_widget_display_currency' ); -
depay-payments/trunk/depay-payments.php
r3200318 r3200330 15 15 * Plugin URI: https://depay.com/plugins/wordpress 16 16 * Description: Accept Web3 Crypto Payments & Donations. Supports various tokens, blockchains and wallets. MetaMask, Phantom, USDC, USDT, ETH, SOL, BSC, POL, xDAI… 17 * Version: 3.0. 217 * Version: 3.0.3 18 18 * License: GPL-2.0+ 19 19 * License URI: http://www.gnu.org/licenses/gpl-2.0.txt … … 30 30 31 31 // Plugin version 32 define( 'DEPAYPAYMENTS_VERSION', '3.0. 2' );32 define( 'DEPAYPAYMENTS_VERSION', '3.0.3' ); 33 33 34 34 // Plugin Root File -
depay-payments/trunk/package.json
r3200318 r3200330 2 2 "name": "@depay/web3-wordpress-depay", 3 3 "moduleName": "WordpressDePayPayments", 4 "version": "3.0. 2",4 "version": "3.0.3", 5 5 "description": "Accept Web3 Crypto Payments & Donations. Supports various tokens, blockchains and wallets. MetaMask, Phantom, USDC, USDT, ETH, SOL, BSC, POL, xDAI…", 6 6 "main": "./dist/umd/index.js", -
depay-payments/trunk/readme.txt
r3200318 r3200330 4 4 Requires at least: 5.0 5 5 Tested up to: 6.7 6 Stable tag: 3.0. 26 Stable tag: 3.0.3 7 7 Requires PHP: 5.6 8 8 License: GPLv2 … … 71 71 == Changelog == 72 72 73 = 2024-12-1 - v3.0.3 = 74 * fix block configuration amountType 75 73 76 = 2024-12-1 - v3.0.2 = 74 77 * fixes JSON parse error in some currency situations
Note: See TracChangeset
for help on using the changeset viewer.