Skip to content

Commit 8dba6a9

Browse files
committed
this commit mirrors the 6.2.3 release
1 parent bebb88c commit 8dba6a9

27 files changed

+24
-23
lines changed

adapters/class-bank-fiat-adapter.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -157,7 +157,7 @@ public function do_description_text(): void {
157157
}
158158

159159
public function get_wallet_version(): string {
160-
return '6.2.2';
160+
return '6.2.3';
161161
}
162162

163163
public function get_block_height( Currency $currency = null ): int {
@@ -682,7 +682,7 @@ function() {
682682
'wallets-admin-deposit-tool',
683683
get_asset_path( 'wallets-admin-deposit-tool' ),
684684
[ 'jquery' ],
685-
'6.2.2',
685+
'6.2.3',
686686
true
687687
);
688688
}

adapters/class-bitcoin-core-like-wallet-adapter.php

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -275,15 +275,13 @@ function wallets_scrape_restart() {
275275
'wallet_id': wallet_id,
276276
'wallets_height': wallet_height,
277277
},
278-
complete: location.reload
278+
complete: function() {
279+
location.reload();
280+
}
279281
});
280282
}
281283
</script>
282284

283-
<!--
284-
<input type="hidden" name="action" value="wallets_scrape_restart" />
285-
<input type="hidden" name="wallet_id" value="<?php echo absint( $this->wallet->post_id ); ?>" />
286-
-->
287285
<label>
288286

289287
<p>
@@ -739,7 +737,7 @@ protected function rpc( string $method, ...$params ) {
739737
$this->get_url( true ),
740738
[
741739
'timeout' => absint( get_ds_option( 'wallets_http_timeout', 5 ) ),
742-
'user-agent' => 'Bitcoin and Altcoin Wallets version 6.2.2',
740+
'user-agent' => 'Bitcoin and Altcoin Wallets version 6.2.3',
743741
'headers' => [
744742
'Accept-Encoding: gzip',
745743
'Content-type: application/json',

admin/assets.php

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ function( $hook ) {
2121
'wallets-admin-styles',
2222
get_asset_path( 'wallets-admin', 'style' ),
2323
[],
24-
'6.2.2'
24+
'6.2.3'
2525
);
2626

2727
wp_register_script(
@@ -51,15 +51,15 @@ function( $hook ) {
5151
'wallets-admin-menu-item',
5252
get_asset_path( 'wallets-admin-menu-item' ),
5353
[ 'jquery' ],
54-
'6.2.2',
54+
'6.2.3',
5555
true
5656
);
5757

5858
wp_register_script(
5959
'wallets-admin-cs-tool',
6060
get_asset_path( 'wallets-admin-cs-tool' ),
6161
[ 'jquery-qrcode' ],
62-
'6.2.2',
62+
'6.2.3',
6363
true
6464
);
6565

@@ -74,31 +74,31 @@ function( $hook ) {
7474
'wallets-admin-capabilities',
7575
get_asset_path( 'wallets-admin-capabilities' ),
7676
[ 'jquery-ui-tabs' ],
77-
'6.2.2',
77+
'6.2.3',
7878
true
7979
);
8080

8181
wp_register_script(
8282
'wallets-admin-dashboard',
8383
get_asset_path( 'wallets-admin-dashboard' ),
8484
[ 'jquery-ui-tabs', 'jqcloud' ],
85-
'6.2.2',
85+
'6.2.3',
8686
true
8787
);
8888

8989
wp_register_script(
9090
'wallets-admin-docs',
9191
get_asset_path( 'wallets-admin-docs' ),
9292
[ 'jquery' ],
93-
'6.2.2',
93+
'6.2.3',
9494
true
9595
);
9696

9797
wp_register_script(
9898
'wallets-admin-editor',
9999
get_asset_path( 'wallets-admin-editor' ),
100100
[ 'suggest' ],
101-
'6.2.2',
101+
'6.2.3',
102102
true
103103
);
104104

admin/dashboard.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -348,8 +348,8 @@ function db_debug_cb() {
348348
function( $debug_data ) {
349349
global $wpdb;
350350

351-
$debug_data[ (string) __( 'Plugin version', 'wallets' ) ] = '6.2.2';
352-
$debug_data[ (string) __( 'Git SHA', 'wallets' ) ] = '4bafbcf3';
351+
$debug_data[ (string) __( 'Plugin version', 'wallets' ) ] = '6.2.3';
352+
$debug_data[ (string) __( 'Git SHA', 'wallets' ) ] = '81fdc730';
353353
$debug_data[ (string) __( 'Web Server', 'wallets' ) ] = $_SERVER['SERVER_SOFTWARE'];
354354
$debug_data[ (string) __( 'PHP version', 'wallets' ) ] = PHP_VERSION;
355355
$debug_data[ (string) __( 'WordPress version', 'wallets' ) ] = (string) get_bloginfo( 'version' );
File renamed without changes.

0 commit comments

Comments
 (0)