@ledgerhq/live-mobile@3.5.0
github-actions
released this
11 Aug 10:53
·
12618 commits
to develop
since this release
3.5.0
Minor Changes
- #740
709020dd7
Thanks @juan-cortes! - Fixed incorrect value for used space in Manager
- #389
d4a71a6d8
Thanks @laure-lebon! - Fix wrong gas Price Polygon
- #104
6adbe47e2
Thanks @haammar-ledger! - Add support of memo for Hedera on LLM
- #104
6adbe47e2
Thanks @haammar-ledger! - LIVE-1004 Hedera integration on LLM
- #731
0e115ae5c
Thanks @juan-cortes! - Update UI for manager app install/uninstall buttons
- #507
3bdbfd3cb
Thanks @jules-grenier-ledger! - Push notifications support added to ledger live mobile, new 'notifications' section added to the settings to enable or disable them, new modal added to ask the user if he wants to allow the notifications
- #728
b0053cced
Thanks @LFBarreto! - LLM - Learn page add a close button to allow back navigation
Patch Changes
- #718
14245392b
Thanks @grsoares21! - Fix the error wording for users trying to update the firmware via bluetooth
- #374
111160df7
Thanks @ofreyssinet-ledger! - Fix 2 firmware update banners being displayed on the wallet screen
- #767
b80857e94
Thanks @JunichiSugiura! - Disable ftx ftxus temporary as a swap provider before official mobile release
- #811
0872e6688
Thanks @LFBarreto! - LLM - add microphone permission to LLM for live apps
- #792
555c334eb
Thanks @LFBarreto! - LLM - fix issue related to navigation on receive flow
- #897
bb92400cf
Thanks @LFBarreto! - LLM - Receive flow fix issue on receive token accounts from market page
- #435
8319ff45a
Thanks @ofreyssinet-ledger! - - Upgradedreact-native
to0.68.2
, following this guide and picked what works for us:- we don't upgrade Flipper as it crashes on runtime
- we don't upgrade gradle as it builds fine like this and v7 didn't work out of the box
- we don't keep
react-native-gradle-plugin
as it's only necessary for the new architecture.. - we don't change
AppDelegate.m
to the newAppDelegate.mm
as it's only useful for the new RN arch which we aren't using yet + it was a pain to migrate the existing config (Firebase, Flipper, splash screen) - Upgraded
react-native-reanimated
to2.8.0
- Upgraded
lottie-react-native
to5.1.3
as it was not building on iOS without upgrading -> I tested the device lotties in the "Debug Lottie" menu and it seems to work fine. - Upgraded
react-native-gesture-handler
to2.5.0
& Migrating off RNGHEnabledRootView as its setup on Android (inMainActivity.java
) might conflict with react-native stuff later on - Fixed an issue in the portfolio where if there was no assets, scrolling was crashing the app on iOS. This is a mysterious issue and the logs are similar to this issue software-mansion/react-native-reanimated#2285, for now it has been solved by removing the animation of a border width (border which anyway was invisible so the animation was pointless).
- #821
7e46d2828
Thanks @LFBarreto! - revert storyly
- #699
957d942a4
Thanks @LFBarreto! - Reborn analytics
- #804
10aba54ba
Thanks @cgrellard-ledger! - Keyboard avoiding view fixed on Send Coin Amount page
- #794
661719e15
Thanks @LFBarreto! - LLM - fic issue on redirection after account deletion
- #823
4df8aed2e
Thanks @LFBarreto! - LLM - market receive flow redirection issue
- #796
078665b95
Thanks @LFBarreto! - LLM - Send Flow navigation issue
- #847
03c90eebe
Thanks @LFBarreto! - LLM - Receive flow prevent creation of multiple accounts at the same time
- #833
91cfea6e2
Thanks @LFBarreto! - LLM - Receive flow copy address button overflow issue
- #883
7101ca25c
Thanks @LFBarreto! - LLM - Receive flow - prevent double modal to pop during verification of address
- #834
7aa93b8b2
Thanks @LFBarreto! - LLM - fixes issue on market header button touch highlight color
- #797
b2eb19311
Thanks @LFBarreto! - LLM - Receive flow - fix issue on token account creation name
-
8d0dc4733
Thanks @Justkant! - #### Replace webpack with vite.js to speed up the ledger live desktop development process.To fully embrace the "bundleless" vite.js approach, it is necessary to transpile our packages contained in the monorepository to the ESM format, and subpath exports have been added to silently map to commonjs or esm depending on the need.
🔥 BREAKING CHANGES for
@ledgerhq/live-common
,@ledgerhq/devices
and@ledgerhq/hw-app-btc
consumers.As highlighted here, it is not possible to target folders directly when using subpath exports.
The workaround is to suffix the call with
/index
(or/
).For instance…
import * as currencies from "@ledgerhq/live-common/currencies";
…must be rewritten to…
import * as currencies from "@ledgerhq/live-common/currencies/index;";
…or:
import * as currencies from "@ledgerhq/live-common/currencies/;";