Skip to content

Commit d68d7cf

Browse files
author
Siraj Razick
committed
Release 0.90.6
2 parents 7760aab + 6361f06 commit d68d7cf

File tree

5 files changed

+33
-6
lines changed

5 files changed

+33
-6
lines changed

BlockSettleHW/hwdevicemanager.cpp

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -215,12 +215,14 @@ void HwDeviceManager::signTX(QVariant reqTX)
215215
, utxoMap, flags, true).isValid();
216216
if (!validSign) {
217217
SPDLOG_LOGGER_ERROR(logger_, "sign verification failed");
218-
emit operationFailed(tr("Sign verification failed"));
218+
releaseConnection();
219+
emit operationFailed(tr("Signing failed. Please ensure you type the correct password."));
219220
return;
220221
}
221222
} catch (const std::exception &e) {
222223
SPDLOG_LOGGER_ERROR(logger_, "sign verification failed: {}", e.what());
223-
emit operationFailed(tr("Sign verification failed"));
224+
releaseConnection();
225+
emit operationFailed(tr("Signing failed. Please ensure you type the correct password."));
224226
return;
225227
}
226228

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ set(QML2_IMPORT_PATH "${BLOCK_SETTLE_ROOT}/BlockSettleSigner/qml" CACHE STRING "
8484
# Terminal, PB, PuB and offline tools share same version for consistency
8585
SET(BS_VERSION_MAJOR 0 )
8686
SET(BS_VERSION_MINOR 90 )
87-
SET(BS_VERSION_PATCH 5 )
87+
SET(BS_VERSION_PATCH 6 )
8888
SET(BS_VERSION_STRING "${BS_VERSION_MAJOR}.${BS_VERSION_MINOR}.${BS_VERSION_PATCH}")
8989

9090
include(GetGitRevisionDescription)

Deploy/Ubuntu/DEBIAN/control

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
Package: bsterminal
2-
Version: 0.90.5
2+
Version: 0.90.6
33
Section: x11
44
Priority: optional
55
Architecture: amd64

Deploy/Windows/bsterminal.nsi

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ SetCompressor /SOLID lzma
44
# General Symbol Definitions
55
!define COMPANY "BlockSettle AB"
66
!define URL http://blocksettle.com/
7-
!define VERSION "0.90.5"
7+
!define VERSION "0.90.6"
88
!define PRODUCT_NAME "BlockSettle Terminal"
99

1010
# MultiUser Symbol Definitions

changelog.json

Lines changed: 26 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,32 @@
11
{
2-
"latest_version": "0.90.5",
2+
"latest_version": "0.90.6",
33
"release_date": "05 Jun 2020",
44
"changes": [
5+
{
6+
"version_string": "0.90.6",
7+
"previous_version": "0.90.6",
8+
"release_date": "05 Jun 2020",
9+
"release_type": "prod",
10+
"improvements": [
11+
"",
12+
""
13+
],
14+
"bug_fixes": [],
15+
"revision": "e311f0a9a",
16+
"common_revision": "e311f0a9a"
17+
},
18+
{
19+
"version_string": "0.90.6",
20+
"previous_version": "0.90.5",
21+
"release_date": "05 Jun 2020",
22+
"release_type": "prod",
23+
"improvements": [
24+
"Reset Trezor session if wrong passphrase used"
25+
],
26+
"bug_fixes": [],
27+
"revision": "e311f0a9a",
28+
"common_revision": "e311f0a9a"
29+
},
530
{
631
"version_string": "0.90.5",
732
"previous_version": "0.90.4",

0 commit comments

Comments
 (0)