Plugin Directory

Changeset 3093019


Ignore:
Timestamp:
05/27/2024 09:42:46 AM (21 months ago)
Author:
dashedslug
Message:

Adding version 6.2.7 of wallets

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

Legend:

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

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

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

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

    r3089855 r3093019  
    349349        global $wpdb;
    350350
    351         $debug_data[ (string) __( 'Plugin version', 'wallets' ) ]         = '6.2.6';
    352         $debug_data[ (string) __( 'Git SHA', 'wallets' ) ]                = 'c1bedcf0';
     351        $debug_data[ (string) __( 'Plugin version', 'wallets' ) ]         = '6.2.7';
     352        $debug_data[ (string) __( 'Git SHA', 'wallets' ) ]                = '52a5a16e';
    353353        $debug_data[ (string) __( 'Web Server', 'wallets' ) ]             = $_SERVER['SERVER_SOFTWARE'];
    354354        $debug_data[ (string) __( 'PHP version', 'wallets' ) ]            = PHP_VERSION;
  • wallets/trunk/frontend/assets.php

    r3089855 r3093019  
    2323            get_asset_path( 'wallets', 'style' ),
    2424            [],
    25             '6.2.6'
     25            '6.2.7'
    2626        );
    2727
     
    8686            get_asset_path( 'jsqrcode' ),
    8787            [ 'jquery' ],
    88             '6.2.6',
     88            '6.2.7',
    8989            true
    9090        );
     
    128128            get_asset_path( 'wallets-front' ),
    129129            [ 'knockout', 'jquery', 'style-scoped', 'sprintf.js' ],
    130             '6.2.6',
     130            '6.2.7',
    131131            true
    132132        );
  • wallets/trunk/post-types/class-currency.php

    r3089855 r3093019  
    299299        $currency->fee_deposit_site      = absint( $postmeta['wallets_fee_deposit_site'] ?? 0 );
    300300        $currency->fee_move_site         = absint( $postmeta['wallets_fee_move_site'] ?? 0 );
     301        $currency->fee_withdraw_site     = absint( $postmeta['wallets_fee_withdraw_site'] ?? 0 );
    301302        $currency->explorer_uri_tx       = $postmeta['wallets_explorer_uri_tx'] ?? '';
    302303        $currency->explorer_uri_add      = $postmeta['wallets_explorer_uri_add'] ?? '';
  • wallets/trunk/post-types/class-transaction.php

    r3089855 r3093019  
    309309
    310310        // populate fields
    311         $tx->post_id = $post_id;
     311        $tx->post_id    = $post_id;
    312312        $tx->category   = $postmeta['wallets_category'] ?? 'move';
    313313        $tx->txid       = $postmeta['wallets_txid'] ?? '';
     
    23812381                'shutdown',
    23822382                function() use ( &$old_statuses_original, &$new_statuses_final ) {
     2383
     2384                    // Ensure that any tx status values come straight from DB and not from cache
     2385                    foreach ( Post_Type::$object_cache as $id => $object ) {
     2386                        if ( $object instanceof Transaction ) {
     2387                            unset( Post_Type::$object_cache[ $id ] );
     2388                        }
     2389                    }
     2390                    Transaction::load_many( array_keys( $old_statuses_original ) );
     2391
    23832392                    foreach ( array_keys( $old_statuses_original ) as $post_id ) {
    23842393                        if ( $old_statuses_original[ $post_id ] != $new_statuses_final[ $post_id ] ) {
  • wallets/trunk/post-types/class-wallet.php

    r3089855 r3093019  
    157157
    158158    /**
    159      * Retrieve many walletts by their post_ids.
     159     * Retrieve many wallets by their post_ids.
    160160     *
    161161     * Any post_ids not found are skipped silently.
  • wallets/trunk/readme.txt

    r3089855 r3093019  
    66Tested up to: 6.5.3
    77Requires PHP: 7.0
    8 Stable tag: 6.2.6
     8Stable tag: 6.2.7
    99License: GPLv2 or later
    1010License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    337337
    338338== Changelog ==
     339
     340= 6.2.7 =
     341- Fix: Issue with withdrawal fees not loaded, introduced in 6.2.6 is now fixed.
     342- Fix: Issue with transaction emails not being sent in some environments, introduced in 6.2.6, is possibly now fixed (CNR).
    339343
    340344= 6.2.6 =
     
    492496== Upgrade Notice ==
    493497
    494 Version `6.2.6` improves performance of the plugin, by batching and caching plugin access to database objects.
     498Version `6.2.7` fixes a few issues introduced in `6.2.6`.
    495499
    496500== Donating ==
  • wallets/trunk/wallets.php

    r3089855 r3093019  
    33 * Plugin Name:         Bitcoin and Altcoin Wallets
    44 * Description:         Custodial cryptocurrency wallets.
    5  * Version:             6.2.6
     5 * Version:             6.2.7
    66 * Plugin URI:          https://www.dashed-slug.net/bitcoin-altcoin-wallets-wordpress-plugin
    77 * Requires at least:   6.0
Note: See TracChangeset for help on using the changeset viewer.