Plugin Directory

Changeset 3200318


Ignore:
Timestamp:
12/01/2024 05:44:03 PM (16 months ago)
Author:
depayfi
Message:

Update to version 3.0.2 from GitHub

Location:
depay-payments
Files:
10 edited
1 copied

Legend:

Unmodified
Added
Removed
  • depay-payments/tags/3.0.2/block.json

    r3200316 r3200318  
    77  "description": "Accept Web3 Crypto Payments & Donations. Supports various tokens, blockchains and wallets. MetaMask, Phantom, USDC, USDT, ETH, SOL, BSC, POL, xDAI…",
    88  "keywords": [ "payments", "crypto", "web3", "DePay", "USDC" ],
    9   "version": "3.0.1",
     9  "version": "3.0.2",
    1010  "textdomain": "depay-payments",
    1111  "example": {},
  • depay-payments/tags/3.0.2/core/includes/classes/class-depay-payments-block.php

    r3200311 r3200318  
    203203    }
    204204
    205     $currency = (empty($widgetDisplayCurrency) || $widgetDisplayCurrency === 'local') ? "" : '"currency": "'.$widgetDisplayCurrency.'"';
    206 
    207     $html = '<div class="DePayButton" label="'.esc_html($buttonLabel).'" widget="Payment" configuration=\'{ '.$currency.', "title": "' . $widgetTitle . '", "style": { "colors": { "primary": "'.esc_html($widgetColorPrimary).'", "buttonText": "'.esc_html($widgetColorButtons).'", "icons": "'.esc_html($widgetColorIcons).'", "text": "'.esc_html($widgetColorText).'" }, "css": "'.esc_html($widgetCSS).'" }, "accept": '.str_replace('&quot;', '"', esc_html($accept)).', "amount": '.json_encode($amount).' }\' css="'.esc_html($buttonCSS).'"></div><script>if(typeof DePayButtons != "undefined") { DePayButtons.init({document: document}); }</script>';
     205    $currency = (empty($widgetDisplayCurrency) || $widgetDisplayCurrency === 'local') ? "" : '"currency": "'.$widgetDisplayCurrency.'", ';
     206
     207    $html = '<div class="DePayButton" label="'.esc_html($buttonLabel).'" widget="Payment" configuration=\'{ '.$currency.' "title": "' . $widgetTitle . '", "style": { "colors": { "primary": "'.esc_html($widgetColorPrimary).'", "buttonText": "'.esc_html($widgetColorButtons).'", "icons": "'.esc_html($widgetColorIcons).'", "text": "'.esc_html($widgetColorText).'" }, "css": "'.esc_html($widgetCSS).'" }, "accept": '.str_replace('&quot;', '"', esc_html($accept)).', "amount": '.json_encode($amount).' }\' css="'.esc_html($buttonCSS).'"></div><script>if(typeof DePayButtons != "undefined") { DePayButtons.init({document: document}); }</script>';
    208208
    209209    return sprintf(
  • depay-payments/tags/3.0.2/depay-payments.php

    r3200316 r3200318  
    1515 * Plugin URI:    https://depay.com/plugins/wordpress
    1616 * 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.1
     17 * Version:       3.0.2
    1818 * License:       GPL-2.0+
    1919 * License URI:   http://www.gnu.org/licenses/gpl-2.0.txt
     
    3030
    3131// Plugin version
    32 define( 'DEPAYPAYMENTS_VERSION', '3.0.1' );
     32define( 'DEPAYPAYMENTS_VERSION', '3.0.2' );
    3333
    3434// Plugin Root File
  • depay-payments/tags/3.0.2/package.json

    r3200316 r3200318  
    22  "name": "@depay/web3-wordpress-depay",
    33  "moduleName": "WordpressDePayPayments",
    4   "version": "3.0.1",
     4  "version": "3.0.2",
    55  "description": "Accept Web3 Crypto Payments & Donations. Supports various tokens, blockchains and wallets. MetaMask, Phantom, USDC, USDT, ETH, SOL, BSC, POL, xDAI…",
    66  "main": "./dist/umd/index.js",
  • depay-payments/tags/3.0.2/readme.txt

    r3200316 r3200318  
    44Requires at least: 5.0
    55Tested up to: 6.7
    6 Stable tag: 3.0.1
     6Stable tag: 3.0.2
    77Requires PHP: 5.6
    88License: GPLv2
     
    7171== Changelog ==
    7272
     73= 2024-12-1 - v3.0.2 =
     74* fixes JSON parse error in some currency situations
     75
    7376= 2024-12-1 - v3.0.1 =
    7477* change wordpress.org screenshots
  • depay-payments/trunk/block.json

    r3200316 r3200318  
    77  "description": "Accept Web3 Crypto Payments & Donations. Supports various tokens, blockchains and wallets. MetaMask, Phantom, USDC, USDT, ETH, SOL, BSC, POL, xDAI…",
    88  "keywords": [ "payments", "crypto", "web3", "DePay", "USDC" ],
    9   "version": "3.0.1",
     9  "version": "3.0.2",
    1010  "textdomain": "depay-payments",
    1111  "example": {},
  • depay-payments/trunk/core/includes/classes/class-depay-payments-block.php

    r3200311 r3200318  
    203203    }
    204204
    205     $currency = (empty($widgetDisplayCurrency) || $widgetDisplayCurrency === 'local') ? "" : '"currency": "'.$widgetDisplayCurrency.'"';
    206 
    207     $html = '<div class="DePayButton" label="'.esc_html($buttonLabel).'" widget="Payment" configuration=\'{ '.$currency.', "title": "' . $widgetTitle . '", "style": { "colors": { "primary": "'.esc_html($widgetColorPrimary).'", "buttonText": "'.esc_html($widgetColorButtons).'", "icons": "'.esc_html($widgetColorIcons).'", "text": "'.esc_html($widgetColorText).'" }, "css": "'.esc_html($widgetCSS).'" }, "accept": '.str_replace('&quot;', '"', esc_html($accept)).', "amount": '.json_encode($amount).' }\' css="'.esc_html($buttonCSS).'"></div><script>if(typeof DePayButtons != "undefined") { DePayButtons.init({document: document}); }</script>';
     205    $currency = (empty($widgetDisplayCurrency) || $widgetDisplayCurrency === 'local') ? "" : '"currency": "'.$widgetDisplayCurrency.'", ';
     206
     207    $html = '<div class="DePayButton" label="'.esc_html($buttonLabel).'" widget="Payment" configuration=\'{ '.$currency.' "title": "' . $widgetTitle . '", "style": { "colors": { "primary": "'.esc_html($widgetColorPrimary).'", "buttonText": "'.esc_html($widgetColorButtons).'", "icons": "'.esc_html($widgetColorIcons).'", "text": "'.esc_html($widgetColorText).'" }, "css": "'.esc_html($widgetCSS).'" }, "accept": '.str_replace('&quot;', '"', esc_html($accept)).', "amount": '.json_encode($amount).' }\' css="'.esc_html($buttonCSS).'"></div><script>if(typeof DePayButtons != "undefined") { DePayButtons.init({document: document}); }</script>';
    208208
    209209    return sprintf(
  • depay-payments/trunk/depay-payments.php

    r3200316 r3200318  
    1515 * Plugin URI:    https://depay.com/plugins/wordpress
    1616 * 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.1
     17 * Version:       3.0.2
    1818 * License:       GPL-2.0+
    1919 * License URI:   http://www.gnu.org/licenses/gpl-2.0.txt
     
    3030
    3131// Plugin version
    32 define( 'DEPAYPAYMENTS_VERSION', '3.0.1' );
     32define( 'DEPAYPAYMENTS_VERSION', '3.0.2' );
    3333
    3434// Plugin Root File
  • depay-payments/trunk/package.json

    r3200316 r3200318  
    22  "name": "@depay/web3-wordpress-depay",
    33  "moduleName": "WordpressDePayPayments",
    4   "version": "3.0.1",
     4  "version": "3.0.2",
    55  "description": "Accept Web3 Crypto Payments & Donations. Supports various tokens, blockchains and wallets. MetaMask, Phantom, USDC, USDT, ETH, SOL, BSC, POL, xDAI…",
    66  "main": "./dist/umd/index.js",
  • depay-payments/trunk/readme.txt

    r3200316 r3200318  
    44Requires at least: 5.0
    55Tested up to: 6.7
    6 Stable tag: 3.0.1
     6Stable tag: 3.0.2
    77Requires PHP: 5.6
    88License: GPLv2
     
    7171== Changelog ==
    7272
     73= 2024-12-1 - v3.0.2 =
     74* fixes JSON parse error in some currency situations
     75
    7376= 2024-12-1 - v3.0.1 =
    7477* change wordpress.org screenshots
Note: See TracChangeset for help on using the changeset viewer.