File tree Expand file tree Collapse file tree 3 files changed +14
-12
lines changed
compose/src/commonMain/kotlin/com/blockstream/compose/views Expand file tree Collapse file tree 3 files changed +14
-12
lines changed Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ All notable changes to this project will be documented in this file.
33
44The 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
Original file line number Diff line number Diff 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" )
Original file line number Diff line number Diff line change @@ -28,7 +28,6 @@ import blockstream_green.common.generated.resources.text_aa
2828import blockstream_green.common.generated.resources.trash
2929import com.adamglin.PhosphorIcons
3030import com.adamglin.phosphoricons.Regular
31- import com.adamglin.phosphoricons.regular.Binoculars
3231import com.adamglin.phosphoricons.regular.CaretRight
3332import com.blockstream.common.data.GreenWallet
3433import 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 )
You can’t perform that action at this time.
0 commit comments