Changelog update

This commit is contained in:
Milan Cerovsky 2025-05-12 13:22:46 +02:00
parent 06fab9e839
commit 23be1ab1d5
2 changed files with 11 additions and 1 deletions

View File

@ -6,6 +6,16 @@ and this application adheres to [Semantic Versioning](https://semver.org/spec/v2
## [Unreleased]
### Fixed
- Fiat text field on Send screen does not display anymore if fetching exchange rate fails
### Changed
- When entering amount in USD in the Send or Request ZEC flow, we floor the Zatoshi amount automatically to the nearest 5000 Zatoshi to prevent creating unspendable dust notes in your wallet.
- Integrations dialog screen now displays a disclaimer
- Primary & secondary button order now follows UX best practices
- Receive screen design now aligns better with UX after home navigation changes
- Copy updated in a few places
## [2.0.1 (941)] - 2025-04-29
### Fixed

View File

@ -36,7 +36,7 @@ fun Zatoshi.toZecStringAbbreviated(suffix: String): ZecAmountPair {
}
@Suppress("MagicNumber")
fun Zatoshi.floor(): Zatoshi = Zatoshi(floorRoundBy(value.toDouble(), 2500.0).toLong())
fun Zatoshi.floor(): Zatoshi = Zatoshi(floorRoundBy(value.toDouble(), 5000.0).toLong())
data class ZecAmountPair(
val main: String,