Plugin Directory

Changeset 3232880


Ignore:
Timestamp:
01/31/2025 07:29:38 PM (13 months ago)
Author:
cryptapi
Message:

v5.0.1 - Minor bugfixes

Location:
cryptapi-payment-gateway-for-woocommerce
Files:
2 deleted
5 edited
52 copied

Legend:

Unmodified
Added
Removed
  • cryptapi-payment-gateway-for-woocommerce/tags/5.0.1/CryptAPI.php

    r3211174 r3232880  
    44Plugin URI: https://github.com/cryptapi/woocommerce-cryptapi
    55Description: Accept cryptocurrency payments on your WooCommerce website
    6 Version: 5.0.0
     6Version: 5.0.1
    77Requires at least: 5.8
    8 Tested up to: 6.7
     8Tested up to: 6.7.1
    99WC requires at least: 5.8
    10 WC tested up to: 9.5.2
     10WC tested up to: 9.6.0
    1111Requires PHP: 7.2
    1212Author: cryptapi
     
    1818}
    1919
    20 define('CRYPTAPI_PLUGIN_VERSION', '5.0.0');
     20define('CRYPTAPI_PLUGIN_VERSION', '5.0.1');
    2121define('CRYPTAPI_PLUGIN_PATH', plugin_dir_path(__FILE__));
    2222define('CRYPTAPI_PLUGIN_URL', plugin_dir_url(__FILE__));
  • cryptapi-payment-gateway-for-woocommerce/tags/5.0.1/README.md

    r3211174 r3232880  
    399399* Bug fixes.
    400400
     401#### 5.0.1
     402* Bug fixes.
     403
    401404### Upgrade Notice
    402405#### 4.3
  • cryptapi-payment-gateway-for-woocommerce/tags/5.0.1/blocks/CryptAPI.php

    r3211174 r3232880  
    6565
    6666        foreach ($this->get_setting('coins') as $coin) {
    67             $output_coins[] = [
    68                 'ticker' => $coin,
    69                 ...$load_coins[$coin]
    70             ];
     67            $output_coins[] = array_merge(
     68                ['ticker' => $coin],
     69                $load_coins[$coin]
     70            );
    7171        }
    7272
  • cryptapi-payment-gateway-for-woocommerce/tags/5.0.1/readme.txt

    r3211174 r3232880  
    44Requires at least: 5.8
    55Tested up to: 6.7.1
    6 Stable tag: 5.0.0
     6Stable tag: 5.0.1
    77Requires PHP: 7.2
    88WC requires at least: 5.8
    9 WC tested up to: 9.5.1
     9WC tested up to: 9.6.0
    1010License: MIT
    1111
     
    397397* Bug fixes.
    398398
     399= 5.0.1 =
     400* Bug fixes.
     401
    399402== Upgrade Notice ==
    400403
  • cryptapi-payment-gateway-for-woocommerce/trunk/CryptAPI.php

    r3211174 r3232880  
    44Plugin URI: https://github.com/cryptapi/woocommerce-cryptapi
    55Description: Accept cryptocurrency payments on your WooCommerce website
    6 Version: 5.0.0
     6Version: 5.0.1
    77Requires at least: 5.8
    8 Tested up to: 6.7
     8Tested up to: 6.7.1
    99WC requires at least: 5.8
    10 WC tested up to: 9.5.2
     10WC tested up to: 9.6.0
    1111Requires PHP: 7.2
    1212Author: cryptapi
     
    1818}
    1919
    20 define('CRYPTAPI_PLUGIN_VERSION', '5.0.0');
     20define('CRYPTAPI_PLUGIN_VERSION', '5.0.1');
    2121define('CRYPTAPI_PLUGIN_PATH', plugin_dir_path(__FILE__));
    2222define('CRYPTAPI_PLUGIN_URL', plugin_dir_url(__FILE__));
  • cryptapi-payment-gateway-for-woocommerce/trunk/README.md

    r3211174 r3232880  
    399399* Bug fixes.
    400400
     401#### 5.0.1
     402* Bug fixes.
     403
    401404### Upgrade Notice
    402405#### 4.3
  • cryptapi-payment-gateway-for-woocommerce/trunk/blocks/CryptAPI.php

    r3211174 r3232880  
    6565
    6666        foreach ($this->get_setting('coins') as $coin) {
    67             $output_coins[] = [
    68                 'ticker' => $coin,
    69                 ...$load_coins[$coin]
    70             ];
     67            $output_coins[] = array_merge(
     68                ['ticker' => $coin],
     69                $load_coins[$coin]
     70            );
    7171        }
    7272
  • cryptapi-payment-gateway-for-woocommerce/trunk/readme.txt

    r3211174 r3232880  
    44Requires at least: 5.8
    55Tested up to: 6.7.1
    6 Stable tag: 5.0.0
     6Stable tag: 5.0.1
    77Requires PHP: 7.2
    88WC requires at least: 5.8
    9 WC tested up to: 9.5.1
     9WC tested up to: 9.6.0
    1010License: MIT
    1111
     
    397397* Bug fixes.
    398398
     399= 5.0.1 =
     400* Bug fixes.
     401
    399402== Upgrade Notice ==
    400403
Note: See TracChangeset for help on using the changeset viewer.