Plugin Directory

Changeset 3070693


Ignore:
Timestamp:
04/15/2024 11:53:04 AM (2 years ago)
Author:
dashedslug
Message:

Adding version 6.2.5 of wallets

Location:
wallets/trunk
Files:
20 added
20 deleted
10 edited

Legend:

Unmodified
Added
Removed
  • wallets/trunk/adapters/class-bank-fiat-adapter.php

    r3025661 r3070693  
    158158
    159159    public function get_wallet_version(): string {
    160         return '6.2.4';
     160        return '6.2.5';
    161161    }
    162162
     
    683683                    get_asset_path( 'wallets-admin-deposit-tool' ),
    684684                    [ 'jquery' ],
    685                     '6.2.4',
     685                    '6.2.5',
    686686                    true
    687687                );
  • wallets/trunk/adapters/class-bitcoin-core-like-wallet-adapter.php

    r3025661 r3070693  
    738738                [
    739739                    'timeout'     => absint( get_ds_option( 'wallets_http_timeout', 5 ) ),
    740                     'user-agent'  => 'Bitcoin and Altcoin Wallets version 6.2.4',
     740                    'user-agent'  => 'Bitcoin and Altcoin Wallets version 6.2.5',
    741741                    'headers'     => [
    742742                        'Accept-Encoding: gzip',
  • wallets/trunk/admin/assets.php

    r3025661 r3070693  
    2222                get_asset_path( 'wallets-admin', 'style' ),
    2323                [],
    24                 '6.2.4'
     24                '6.2.5'
    2525            );
    2626
     
    5252                get_asset_path( 'wallets-admin-menu-item' ),
    5353                [ 'jquery' ],
    54                 '6.2.4',
     54                '6.2.5',
    5555                true
    5656            );
     
    6060                get_asset_path( 'wallets-admin-cs-tool' ),
    6161                [ 'jquery-qrcode' ],
    62                 '6.2.4',
     62                '6.2.5',
    6363                true
    6464            );
     
    7575                get_asset_path( 'wallets-admin-capabilities' ),
    7676                [ 'jquery-ui-tabs' ],
    77                 '6.2.4',
     77                '6.2.5',
    7878                true
    7979            );
     
    8383                get_asset_path( 'wallets-admin-dashboard' ),
    8484                [ 'jquery-ui-tabs', 'jqcloud' ],
    85                 '6.2.4',
     85                '6.2.5',
    8686                true
    8787            );
     
    9191                get_asset_path( 'wallets-admin-docs' ),
    9292                [ 'jquery' ],
    93                 '6.2.4',
     93                '6.2.5',
    9494                true
    9595            );
     
    9999                get_asset_path( 'wallets-admin-editor' ),
    100100                [ 'suggest' ],
    101                 '6.2.4',
     101                '6.2.5',
    102102                true
    103103            );
  • wallets/trunk/admin/dashboard.php

    r3025661 r3070693  
    349349        global $wpdb;
    350350
    351         $debug_data[ (string) __( 'Plugin version', 'wallets' ) ]         = '6.2.4';
    352         $debug_data[ (string) __( 'Git SHA', 'wallets' ) ]                = 'aa58b70d';
     351        $debug_data[ (string) __( 'Plugin version', 'wallets' ) ]         = '6.2.5';
     352        $debug_data[ (string) __( 'Git SHA', 'wallets' ) ]                = 'b66f30e0';
    353353        $debug_data[ (string) __( 'Web Server', 'wallets' ) ]             = $_SERVER['SERVER_SOFTWARE'];
    354354        $debug_data[ (string) __( 'PHP version', 'wallets' ) ]            = PHP_VERSION;
  • wallets/trunk/apis/wp-rest.php

    r3025661 r3070693  
    126126                'callback' => function( $data ) {
    127127                    $currencies   = get_all_currencies();
    128                     $exclude_tags = explode(',',$data['exclude_tags'] );
     128                    $exclude_tags = explode( ',', $data['exclude_tags'] ?? '' );
    129129                    $result     = [];
    130130
     
    294294                    $params       = $data->get_url_params();
    295295                    $user_id      = $params['user_id'];
    296                     $exclude_tags = explode(',',$data['exclude_tags'] );
     296                    $exclude_tags = explode( ',', $data['exclude_tags'] ?? '' );
    297297
    298298                    $currencies           = get_all_currencies();
  • wallets/trunk/frontend/assets.php

    r3025661 r3070693  
    2323            get_asset_path( 'wallets', 'style' ),
    2424            [],
    25             '6.2.4'
     25            '6.2.5'
    2626        );
    2727
     
    8686            get_asset_path( 'jsqrcode' ),
    8787            [ 'jquery' ],
    88             '6.2.4',
     88            '6.2.5',
    8989            true
    9090        );
     
    128128            get_asset_path( 'wallets-front' ),
    129129            [ 'knockout', 'jquery', 'style-scoped', 'sprintf.js' ],
    130             '6.2.4',
     130            '6.2.5',
    131131            true
    132132        );
  • wallets/trunk/helpers/assets.php

    r2887566 r3070693  
    4545
    4646    $plugin_dir = dirname( $backtrace[0]['file'] );
    47     if ( $plugin_dir && preg_match( '*wp-content/plugins/([^/]+)/*', $plugin_dir, $matches ) ) {
     47    if ( $plugin_dir && preg_match( '*wp-content[/\\\\]plugins[/\\\\]([^\\\\/]+)[\\\\/]*', $plugin_dir, $matches ) ) {
    4848        $plugin = $matches[ 1 ];
    4949
     
    7575    return get_asset_path( $name, 'script' );
    7676}
    77 
  • wallets/trunk/post-types/class-transaction.php

    r2973854 r3070693  
    330330        $tx->comment    = $post->post_title;
    331331        $tx->block      = absint( get_post_meta( $post->ID, 'wallets_block', true ) );
     332        $tx->timestamp  = absint( get_post_meta( $post->ID, 'wallets_timestamp', true ) );
    332333        $tx->nonce      = get_post_meta( $post->ID, 'wallets_nonce', true );
    333334        $tx->error      = get_post_meta( $post->ID, 'wallets_error', true );
  • wallets/trunk/readme.txt

    r3025661 r3070693  
    33Donate link: https://flattr.com/profile/dashed-slug
    44Tags: wallet, bitcoin, cryptocurrency, altcoin, coin, money, e-money, e-cash, deposit, withdraw, account, API
    5 Requires at least: 5.0
    6 Tested up to: 6.4.2
    7 Requires PHP: 5.6
    8 Stable tag: 6.2.4
     5Requires at least: 6.0
     6Tested up to: 6.5.2
     7Requires PHP: 7.0
     8Stable tag: 6.2.5
    99License: GPLv2 or later
    1010License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    3030 The following wallet adapters are available for free to all [dashed-slug subscribers](https://www.dashed-slug.net/dashed-slug/subscribe/).
    3131
    32 - [lnd Wallet Adapter extension](https://www.dashed-slug.net/bitcoin-altcoin-wallets-wordpress-plugin/lnd-wallet-adapter-extension/) - Connect to an lnd node, and perform transactions on the Bitcoin Lightning network.
     32- [lnd and tapd Wallet Adapter extension](https://www.dashed-slug.net/bitcoin-altcoin-wallets-wordpress-plugin/lnd-wallet-adapter-extension/) - Connect to an lnd node, and perform transactions on the Bitcoin Lightning network. Also connect to a tapd node to mint and transact Taproot Assets.
    3333- [CoinPayments Adapter extension](https://www.dashed-slug.net/bitcoin-altcoin-wallets-wordpress-plugin/coinpayments-adapter-extension/) - Third-party wallet for many cryptocurrencies. Saves you from the hassle of hosting wallets on servers. But you don't control the private keys.
    3434- [Monero Coin Adapter extension](https://www.dashed-slug.net/bitcoin-altcoin-wallets-wordpress-plugin/monero-coin-adapter-extension/) - Full node wallet adapter for Monero and its forks.
     
    337337
    338338== Changelog ==
     339
     340= 6.2.5 =
     341- Fix: Issue preventing the plugins from running on Windows (XAMPP).
     342- Fix: Deprecation warning in WP-REST API currency endpoints.
     343- Fix: Plugin header now correctly indicates that the plugin requires PHP 7.0 or later.
     344- Fix: `DSWallets\Transaction` objects now correctly load the timestamp field from the DB.
    339345
    340346= 6.2.4 =
     
    15531559== Upgrade Notice ==
    15541560
    1555 Version `6.2.4` is a bugfix release.
     1561Version `6.2.5` is a bugfix release.
    15561562
    15571563== Donating ==
  • wallets/trunk/wallets.php

    r3025661 r3070693  
    33 * Plugin Name:         Bitcoin and Altcoin Wallets
    44 * Description:         Custodial cryptocurrency wallets.
    5  * Version:             6.2.4
     5 * Version:             6.2.5
    66 * Plugin URI:          https://www.dashed-slug.net/bitcoin-altcoin-wallets-wordpress-plugin
    7  * Requires at least:   5.0
     7 * Requires at least:   6.0
    88 * Requires PHP:        7.2
    99 * Author:              Alexandros Georgiou <info@dashed-slug.net>
Note: See TracChangeset for help on using the changeset viewer.