Changelog update
This commit is contained in:
parent
06fab9e839
commit
23be1ab1d5
10
CHANGELOG.md
10
CHANGELOG.md
|
@ -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
|
||||
|
|
|
@ -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,
|
||||
|
|
Loading…
Reference in New Issue