You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- Modularized background handler modules: extracted shared types
(LocalAccountEntry, StoredActivityEntry), helpers (resetLocalGraph,
buildStrategyCSS, withIdentityGuard), removed dead exports and
duplicate code
- Fixed sats displaying with decimals in wallet balance, transactions,
invoice previews, and payment prompts
- Fixed wallet setup banner persisting on home screen after wallet
configuration by re-checking wallet state when menu overlay closes
Copy file name to clipboardExpand all lines: CHANGELOG.md
+10Lines changed: 10 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,6 +2,16 @@
2
2
3
3
All notable changes to this project will be documented in this file.
4
4
5
+
## [0.3.2] - 2026-03-10
6
+
7
+
### Changed
8
+
-**Modularized background service worker** — split the monolithic `background.ts` (~2800 lines) into 8 focused handler modules under `lib/bg/`: state, wot-handlers, misc-handlers, domain-handlers, vault-handlers, wallet-handlers, nip07-handlers, onboarding-handlers; background.ts is now a ~300-line orchestrator with Map-based dispatch
9
+
-**Code quality improvements** — eliminated duplicate types (`DistanceInfo`, `LocalAccountEntry`), extracted shared helpers (`resetLocalGraph`, `buildStrategyCSS`, `withIdentityGuard`), converted key zeroing to try/finally pattern, removed dead code and unnecessary exports
10
+
11
+
### Fixed
12
+
-**Sats display shows whole numbers** — wallet balance, transaction amounts, invoice previews, and payment prompts no longer show decimal fractions
13
+
-**Wallet setup banner persists after setup** — the "Set up wallet" banner on the home screen now disappears immediately after configuring a wallet, instead of requiring a restart
0 commit comments