Skip to content

Commit

Permalink
Merge branch 'hotfix'
Browse files Browse the repository at this point in the history
* hotfix:
  chore(hotfix): 🔥 hotfix release [skip ci]
  chore(hotfix): 🔥 hotfix prerelease [LLD(2.82.2), LLM(3.45.3-hotfix.0)]
  bugfix(llm): add missing condition for nano x BLE fw update
  chore(hotfix) 🚀 entering hotfix mode
  Merge branch 'hotfix'
  • Loading branch information
valpinkman committed Jul 3, 2024
2 parents 1328245 + 7c9d518 commit 63e2a8d
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 1 deletion.
12 changes: 12 additions & 0 deletions apps/ledger-live-mobile/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,17 @@
# live-mobile

## 3.45.3

### Patch Changes

- [#7252](https://github.com/LedgerHQ/ledger-live/pull/7252) [`da24c80`](https://github.com/LedgerHQ/ledger-live/commit/da24c80d4e038767c55522160587a3ae5b163562) Thanks [@valpinkman](https://github.com/valpinkman)! - Add missing condition for BLE nano X firmware update

## 3.45.3-hotfix.0

### Patch Changes

- [#7252](https://github.com/LedgerHQ/ledger-live/pull/7252) [`da24c80`](https://github.com/LedgerHQ/ledger-live/commit/da24c80d4e038767c55522160587a3ae5b163562) Thanks [@valpinkman](https://github.com/valpinkman)! - Add missing condition for BLE nano X firmware update

## 3.46.0

### Minor Changes
Expand Down
2 changes: 1 addition & 1 deletion apps/ledger-live-mobile/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "live-mobile",
"version": "3.45.2",
"version": "3.45.3",
"private": true,
"scripts": {
"postinstall": "zx ./scripts/post.mjs",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -102,6 +102,7 @@ export function useUpdateBannerViewModel({
(connectionType === "bluetooth" &&
Platform.OS === "android" &&
!!lastSeenDeviceModelInfo &&
lastConnectedDevice?.deviceId === DeviceModelId.nanoX &&
semver.lt(lastSeenDeviceModelInfo?.deviceInfo.version, "2.4.0")),
};
}

0 comments on commit 63e2a8d

Please sign in to comment.