Skip to content

Commit 6b9ed57

Browse files
committed
Release 5.0.7
1 parent 7c4d8e9 commit 6b9ed57

File tree

3 files changed

+14
-12
lines changed

3 files changed

+14
-12
lines changed

CHANGELOG.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ All notable changes to this project will be documented in this file.
33

44
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
55

6-
## [Unreleased]
6+
## [5.0.7] - 2025-07-31
77

88
#### Added
99
- Asset account details and list screens to view account-specific asset transactions and balances
@@ -12,6 +12,10 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
1212
- Watch-only security screen with informative description and learn more link
1313

1414
#### Fixed
15+
- 2FA popup being dismissed when user clicked outside of the dialog
16+
- Crash when sharing address on receive screen
17+
- Show alerts for expired 2FA
18+
- Display total balance in user selected btc or fiat denomination
1519

1620
## [5.0.6] - 2025-07-01
1721

androidApp/build.gradle.kts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,8 +43,8 @@ android {
4343
defaultConfig {
4444
minSdk = libs.versions.androidMinSdk.get().toInt()
4545
targetSdk = libs.versions.androidTargetSdk.get().toInt()
46-
versionCode = 506
47-
versionName = "5.0.6"
46+
versionCode = 507
47+
versionName = "5.0.7"
4848

4949
setProperty("archivesBaseName", "BlockstreamGreen-v$versionName")
5050
proguardFiles(getDefaultProguardFile("proguard-android-optimize.txt"), "proguard-rules.pro")

compose/src/commonMain/kotlin/com/blockstream/compose/views/WalletListItem.kt

Lines changed: 7 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,6 @@ import blockstream_green.common.generated.resources.text_aa
2828
import blockstream_green.common.generated.resources.trash
2929
import com.adamglin.PhosphorIcons
3030
import com.adamglin.phosphoricons.Regular
31-
import com.adamglin.phosphoricons.regular.Binoculars
3231
import com.adamglin.phosphoricons.regular.CaretRight
3332
import com.blockstream.common.data.GreenWallet
3433
import com.blockstream.common.looks.wallet.WalletListLook
@@ -82,14 +81,13 @@ private fun WalletListRow(
8281
Text(text = subtitle, style = bodySmall, color = whiteMedium)
8382
}
8483

85-
86-
if (isWatchOnly) {
87-
Icon(
88-
imageVector = PhosphorIcons.Regular.Binoculars,
89-
contentDescription = null,
90-
tint = whiteLow
91-
)
92-
}
84+
// if (isWatchOnly) {
85+
// Icon(
86+
// imageVector = PhosphorIcons.Regular.Binoculars,
87+
// contentDescription = null,
88+
// tint = whiteLow
89+
// )
90+
// }
9391

9492
if (isConnected) {
9593
GreenCircle(size = 6)

0 commit comments

Comments
 (0)