Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@
- fixed: Notification center cards no longer shrink their text to fit. Long titles and messages now truncate with an ellipsis so every card renders at the same size.
- fixed: Sort the Privacy Settings Nym Mix Net asset list alphabetically by display name
- fixed: Next button overlapping the wallet list on the Choose Wallets to Add scene
- fixed: Keyboard no longer covers the Next button on the Import Wallet scene. The scene now shrinks to the space above the keyboard, the content scrolls, and the key logo keeps at least 1 rem of space above and below it while still spreading out when the scene has room.
- fixed: Wrap the fiat value in parentheses on the Stake/Unstake/Claim amount row, and remove the space between the fiat symbol and amount to match the network fee tile.
- fixed: Staked "locked" balance in the wallet view no longer gets cut off. The crypto amount is truncated to an exchange-rate-appropriate number of decimals, and the text is no longer clamped to a fraction of the card width.
- fixed: Improve the unstake error experience by replacing the popup alert and generic "unknown error occurred" with the real error in the scene's error field, and showing a clear message when the wallet lacks the balance to cover the unstaking network fee.
Expand Down
16 changes: 2 additions & 14 deletions maestro/07-wallets/C000029a-migrate-wallets.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -96,20 +96,8 @@ tags:
- tapOn: Private Key or Private Seed
- inputText: ${IMPORT_SEED}

# Drop keyboard - Android
- runFlow:
when:
platform: Android
commands:
- hideKeyboard
# - tapOn: Next # odd additional tap required on android sometimes
# Drop keyboard - iOS
- runFlow:
when:
platform: iOS
commands:
- tapOn: "Private Key or Private Seed"

# The Next button sits above the keyboard, so it is tappable without
# dismissing it first
- tapOn: Next

# Sometimes android requires additional tap
Expand Down
23 changes: 2 additions & 21 deletions maestro/common/import-wallets.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -39,29 +39,10 @@ env:
- tapOn: Private Key or Private Seed
- inputText: ${SEED_PHRASE}

# Drop keyboard - Android
- runFlow:
when:
platform: Android
commands:
- hideKeyboard
- tapOn: "Enter your.*"
# Drop keyboard - iOS
- runFlow:
when:
platform: iOS
commands:
- tapOn: "Private Key or Private Seed"

# The Next button sits above the keyboard, so it is tappable without
# dismissing it first
- tapOn: Next

# # Sometimes android requires additional tap
# - runFlow:
# when:
# visible: Import Wallet
# commands:
# - tapOn: Next

# Add birthday height for Zcash and Pirate Chain
# Index for targetting the correct "edit" icon
- evalScript: ${var index = 0}
Expand Down
Loading
Loading