Plugin Directory

Changeset 3148563


Ignore:
Timestamp:
09/09/2024 09:57:16 AM (18 months ago)
Author:
solpressplugins
Message:

version bump

Location:
solpress-payment-gateway/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • solpress-payment-gateway/trunk/includes/class-wc-solpress-solana.php

    r3028991 r3148563  
    114114
    115115        if (strlen($this->get_option('custom_spl_symbol')) > 0 && strlen($this->get_option('custom_spl_name')) > 0) {
    116             $this->addCustomTokenCurrency();
     116            try {
     117                if (empty(WP_ALLOW_MULTISITE)) {
     118                    // $this->addCustomTokenCurrency();
     119                }
     120            } catch (Exception $e) {
     121                echo 'Caught exception: ',  $e->getMessage(), "\n";
     122            }
    117123
    118124            add_action( 'woocommerce_settings_pricing_options', array( $this, 'my_custom_pricing_options_description') );
  • solpress-payment-gateway/trunk/readme.txt

    r3029098 r3148563  
    44Tags: solana pay, woocommerce, crypto payment, payment gateway, solana, crypto, phantom, phantom wallet, crypto woocommerce, payment crypto
    55Requires at least: 4.7
    6 Tested up to: 6.4
    7 Stable tag: 2.0.31
     6Tested up to: 6.6
     7Stable tag: 2.0.34
    88Requires PHP: 7.0
    99License: GPLv2 or later
  • solpress-payment-gateway/trunk/solpress.php

    r3028991 r3148563  
    1717 * Plugin URI:        https://solpress.dev
    1818 * Description:       A payment gateway using Solana Pay for your WooCommerce store.
    19  * Version:           2.0.31
     19 * Version:           2.0.34
    2020 * Author:            Solpress
    2121 * Author URI:        https://profiles.wordpress.org/solpressplugins/
     
    3636 * Rename this for your plugin and update it as you release new versions.
    3737 */
    38 define( 'SOLPRESS_VERSION', '2.0.31' );
     38define( 'SOLPRESS_VERSION', '2.0.34' );
    3939define( 'SOLPRESS_ROOT', plugin_dir_path( __FILE__ ) );
    4040define( 'SOLPRESS_ASSETS', SOLPRESS_ROOT . '/assets/' );
Note: See TracChangeset for help on using the changeset viewer.