Changeset 3298461
- Timestamp:
- 05/22/2025 05:26:11 AM (10 months ago)
- Location:
- cryptopay-withdrawal-for-dokan
- Files:
-
- 12 deleted
- 4 edited
- 1 copied
-
tags/1.0.8 (copied) (copied from cryptopay-withdrawal-for-dokan/trunk)
-
tags/1.0.8/.gitattributes (deleted)
-
tags/1.0.8/.github (deleted)
-
tags/1.0.8/.gitignore (deleted)
-
tags/1.0.8/.wordpress-org (deleted)
-
tags/1.0.8/cryptopay-withdrawal-for-dokan.php (modified) (5 diffs)
-
tags/1.0.8/phpcs.xml (deleted)
-
tags/1.0.8/readme.md (deleted)
-
tags/1.0.8/readme.txt (modified) (2 diffs)
-
trunk/.gitattributes (deleted)
-
trunk/.github (deleted)
-
trunk/.gitignore (deleted)
-
trunk/.wordpress-org (deleted)
-
trunk/cryptopay-withdrawal-for-dokan.php (modified) (5 diffs)
-
trunk/phpcs.xml (deleted)
-
trunk/readme.md (deleted)
-
trunk/readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
cryptopay-withdrawal-for-dokan/tags/1.0.8/cryptopay-withdrawal-for-dokan.php
r3211468 r3298461 12 12 /** 13 13 * Plugin Name: CryptoPay Withdrawal for Dokan 14 * Version: 1.0. 714 * Version: 1.0.8 15 15 * Plugin URI: https://beycanpress.com/cryptopay/ 16 16 * Description: Add custom cryptocurrency withdrawal method to Dokan plugin … … 22 22 * Tags: Cryptopay, Cryptocurrency, WooCommerce, WordPress, MetaMask, Trust, Binance, Wallet, Ethereum, Bitcoin, Binance smart chain, Payment, Plugin, Gateway, Moralis, Converter, API, coin market cap, CMC 23 23 * Requires at least: 5.0 24 * Tested up to: 6. 7.124 * Tested up to: 6.8 25 25 * Requires PHP: 8.1 26 */26 */ 27 27 28 28 use BeycanPress\CryptoPay\Loader; … … 31 31 32 32 define('DOKAN_CRYPTOPAY_FILE', __FILE__); 33 define('DOKAN_CRYPTOPAY_VERSION', '1.0. 7');33 define('DOKAN_CRYPTOPAY_VERSION', '1.0.8'); 34 34 define('DOKAN_CRYPTOPAY_URL', plugin_dir_url(__FILE__)); 35 35 define('DOKAN_CRYPTOPAY_PATH', plugin_dir_path(__FILE__)); … … 61 61 }); 62 62 } else { 63 $gateway = new DokanCryptoPayWithdrawal( esc_html__('CryptoPay', 'cryptopay-withdrawal-for-dokan'), 'dokan_cryptopay');63 $gateway = new DokanCryptoPayWithdrawal('CryptoPay', 'dokan_cryptopay'); 64 64 } 65 65 } 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'); 67 67 } 68 68 … … 75 75 'apiUrl' => home_url('/wp-json/dokan/v1/withdraw/'), 76 76 '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', 78 78 ]); 79 79 }); -
cryptopay-withdrawal-for-dokan/tags/1.0.8/readme.txt
r3211468 r3298461 3 3 Tags: Bitcoin, Ethereum, Cryptocurrency, Payments, Dokan 4 4 Requires at least: 5.0 5 Tested up to: 6. 7.15 Tested up to: 6.8 6 6 Requires PHP: 8.1 7 Stable Tag: 1.0. 78 Version: 1.0. 77 Stable Tag: 1.0.8 8 Version: 1.0.8 9 9 License: GPLv3 10 10 License URI: https://www.gnu.org/licenses/gpl-3.0.html … … 67 67 == Changelog == 68 68 69 = 1.0.8 = 70 * Fixed: _load_textdomain_just_in_time early call 71 69 72 = 1.0.7 = 70 73 * Fixed: Configure for new versions -
cryptopay-withdrawal-for-dokan/trunk/cryptopay-withdrawal-for-dokan.php
r3211468 r3298461 12 12 /** 13 13 * Plugin Name: CryptoPay Withdrawal for Dokan 14 * Version: 1.0. 714 * Version: 1.0.8 15 15 * Plugin URI: https://beycanpress.com/cryptopay/ 16 16 * Description: Add custom cryptocurrency withdrawal method to Dokan plugin … … 22 22 * Tags: Cryptopay, Cryptocurrency, WooCommerce, WordPress, MetaMask, Trust, Binance, Wallet, Ethereum, Bitcoin, Binance smart chain, Payment, Plugin, Gateway, Moralis, Converter, API, coin market cap, CMC 23 23 * Requires at least: 5.0 24 * Tested up to: 6. 7.124 * Tested up to: 6.8 25 25 * Requires PHP: 8.1 26 */26 */ 27 27 28 28 use BeycanPress\CryptoPay\Loader; … … 31 31 32 32 define('DOKAN_CRYPTOPAY_FILE', __FILE__); 33 define('DOKAN_CRYPTOPAY_VERSION', '1.0. 7');33 define('DOKAN_CRYPTOPAY_VERSION', '1.0.8'); 34 34 define('DOKAN_CRYPTOPAY_URL', plugin_dir_url(__FILE__)); 35 35 define('DOKAN_CRYPTOPAY_PATH', plugin_dir_path(__FILE__)); … … 61 61 }); 62 62 } else { 63 $gateway = new DokanCryptoPayWithdrawal( esc_html__('CryptoPay', 'cryptopay-withdrawal-for-dokan'), 'dokan_cryptopay');63 $gateway = new DokanCryptoPayWithdrawal('CryptoPay', 'dokan_cryptopay'); 64 64 } 65 65 } 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'); 67 67 } 68 68 … … 75 75 'apiUrl' => home_url('/wp-json/dokan/v1/withdraw/'), 76 76 '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', 78 78 ]); 79 79 }); -
cryptopay-withdrawal-for-dokan/trunk/readme.txt
r3211468 r3298461 3 3 Tags: Bitcoin, Ethereum, Cryptocurrency, Payments, Dokan 4 4 Requires at least: 5.0 5 Tested up to: 6. 7.15 Tested up to: 6.8 6 6 Requires PHP: 8.1 7 Stable Tag: 1.0. 78 Version: 1.0. 77 Stable Tag: 1.0.8 8 Version: 1.0.8 9 9 License: GPLv3 10 10 License URI: https://www.gnu.org/licenses/gpl-3.0.html … … 67 67 == Changelog == 68 68 69 = 1.0.8 = 70 * Fixed: _load_textdomain_just_in_time early call 71 69 72 = 1.0.7 = 70 73 * Fixed: Configure for new versions
Note: See TracChangeset
for help on using the changeset viewer.