Plugin Directory

Changeset 3298461


Ignore:
Timestamp:
05/22/2025 05:26:11 AM (10 months ago)
Author:
beycanpress
Message:

Update to version 1.0.8 from GitHub

Location:
cryptopay-withdrawal-for-dokan
Files:
12 deleted
4 edited
1 copied

Legend:

Unmodified
Added
Removed
  • cryptopay-withdrawal-for-dokan/tags/1.0.8/cryptopay-withdrawal-for-dokan.php

    r3211468 r3298461  
    1212/**
    1313 * Plugin Name: CryptoPay Withdrawal for Dokan
    14  * Version:     1.0.7
     14 * Version:     1.0.8
    1515 * Plugin URI:  https://beycanpress.com/cryptopay/
    1616 * Description: Add custom cryptocurrency withdrawal method to Dokan plugin
     
    2222 * Tags: Cryptopay, Cryptocurrency, WooCommerce, WordPress, MetaMask, Trust, Binance, Wallet, Ethereum, Bitcoin, Binance smart chain, Payment, Plugin, Gateway, Moralis, Converter, API, coin market cap, CMC
    2323 * Requires at least: 5.0
    24  * Tested up to: 6.7.1
     24 * Tested up to: 6.8
    2525 * Requires PHP: 8.1
    26 */
     26 */
    2727
    2828use BeycanPress\CryptoPay\Loader;
     
    3131
    3232define('DOKAN_CRYPTOPAY_FILE', __FILE__);
    33 define('DOKAN_CRYPTOPAY_VERSION', '1.0.7');
     33define('DOKAN_CRYPTOPAY_VERSION', '1.0.8');
    3434define('DOKAN_CRYPTOPAY_URL', plugin_dir_url(__FILE__));
    3535define('DOKAN_CRYPTOPAY_PATH', plugin_dir_path(__FILE__));
     
    6161                });
    6262            } else {
    63                 $gateway = new DokanCryptoPayWithdrawal(esc_html__('CryptoPay', 'cryptopay-withdrawal-for-dokan'), 'dokan_cryptopay');
     63                $gateway = new DokanCryptoPayWithdrawal('CryptoPay', 'dokan_cryptopay');
    6464            }
    6565        } elseif (class_exists(LiteLoader::class)) {
    66             $gateway = new DokanCryptoPayWithdrawal(esc_html__('CryptoPay Lite', 'cryptopay-withdrawal-for-dokan'), 'dokan_cryptopay_lite');
     66            $gateway = new DokanCryptoPayWithdrawal('CryptoPay Lite', 'dokan_cryptopay_lite');
    6767        }
    6868
     
    7575                    'apiUrl' => home_url('/wp-json/dokan/v1/withdraw/'),
    7676                    'key' => class_exists(Loader::class) ? 'dokan_cryptopay' : 'dokan_cryptopay_lite',
    77                     'title' => class_exists(Loader::class) ? esc_html__('CryptoPay', 'cryptopay-withdrawal-for-dokan') : esc_html__('CryptoPay Lite', 'cryptopay-withdrawal-for-dokan'),
     77                    'title' => class_exists(Loader::class) ? 'CryptoPay' : 'CryptoPay Lite',
    7878                ]);
    7979            });
  • cryptopay-withdrawal-for-dokan/tags/1.0.8/readme.txt

    r3211468 r3298461  
    33Tags: Bitcoin, Ethereum, Cryptocurrency, Payments, Dokan
    44Requires at least: 5.0
    5 Tested up to: 6.7.1
     5Tested up to: 6.8
    66Requires PHP: 8.1
    7 Stable Tag: 1.0.7
    8 Version: 1.0.7
     7Stable Tag: 1.0.8
     8Version: 1.0.8
    99License: GPLv3
    1010License URI: https://www.gnu.org/licenses/gpl-3.0.html
     
    6767== Changelog ==
    6868
     69= 1.0.8 =
     70* Fixed: _load_textdomain_just_in_time early call
     71
    6972= 1.0.7 =
    7073* Fixed: Configure for new versions
  • cryptopay-withdrawal-for-dokan/trunk/cryptopay-withdrawal-for-dokan.php

    r3211468 r3298461  
    1212/**
    1313 * Plugin Name: CryptoPay Withdrawal for Dokan
    14  * Version:     1.0.7
     14 * Version:     1.0.8
    1515 * Plugin URI:  https://beycanpress.com/cryptopay/
    1616 * Description: Add custom cryptocurrency withdrawal method to Dokan plugin
     
    2222 * Tags: Cryptopay, Cryptocurrency, WooCommerce, WordPress, MetaMask, Trust, Binance, Wallet, Ethereum, Bitcoin, Binance smart chain, Payment, Plugin, Gateway, Moralis, Converter, API, coin market cap, CMC
    2323 * Requires at least: 5.0
    24  * Tested up to: 6.7.1
     24 * Tested up to: 6.8
    2525 * Requires PHP: 8.1
    26 */
     26 */
    2727
    2828use BeycanPress\CryptoPay\Loader;
     
    3131
    3232define('DOKAN_CRYPTOPAY_FILE', __FILE__);
    33 define('DOKAN_CRYPTOPAY_VERSION', '1.0.7');
     33define('DOKAN_CRYPTOPAY_VERSION', '1.0.8');
    3434define('DOKAN_CRYPTOPAY_URL', plugin_dir_url(__FILE__));
    3535define('DOKAN_CRYPTOPAY_PATH', plugin_dir_path(__FILE__));
     
    6161                });
    6262            } else {
    63                 $gateway = new DokanCryptoPayWithdrawal(esc_html__('CryptoPay', 'cryptopay-withdrawal-for-dokan'), 'dokan_cryptopay');
     63                $gateway = new DokanCryptoPayWithdrawal('CryptoPay', 'dokan_cryptopay');
    6464            }
    6565        } elseif (class_exists(LiteLoader::class)) {
    66             $gateway = new DokanCryptoPayWithdrawal(esc_html__('CryptoPay Lite', 'cryptopay-withdrawal-for-dokan'), 'dokan_cryptopay_lite');
     66            $gateway = new DokanCryptoPayWithdrawal('CryptoPay Lite', 'dokan_cryptopay_lite');
    6767        }
    6868
     
    7575                    'apiUrl' => home_url('/wp-json/dokan/v1/withdraw/'),
    7676                    'key' => class_exists(Loader::class) ? 'dokan_cryptopay' : 'dokan_cryptopay_lite',
    77                     'title' => class_exists(Loader::class) ? esc_html__('CryptoPay', 'cryptopay-withdrawal-for-dokan') : esc_html__('CryptoPay Lite', 'cryptopay-withdrawal-for-dokan'),
     77                    'title' => class_exists(Loader::class) ? 'CryptoPay' : 'CryptoPay Lite',
    7878                ]);
    7979            });
  • cryptopay-withdrawal-for-dokan/trunk/readme.txt

    r3211468 r3298461  
    33Tags: Bitcoin, Ethereum, Cryptocurrency, Payments, Dokan
    44Requires at least: 5.0
    5 Tested up to: 6.7.1
     5Tested up to: 6.8
    66Requires PHP: 8.1
    7 Stable Tag: 1.0.7
    8 Version: 1.0.7
     7Stable Tag: 1.0.8
     8Version: 1.0.8
    99License: GPLv3
    1010License URI: https://www.gnu.org/licenses/gpl-3.0.html
     
    6767== Changelog ==
    6868
     69= 1.0.8 =
     70* Fixed: _load_textdomain_just_in_time early call
     71
    6972= 1.0.7 =
    7073* Fixed: Configure for new versions
Note: See TracChangeset for help on using the changeset viewer.