Skip to content

Commit

Permalink
0.5.3
Browse files Browse the repository at this point in the history
  • Loading branch information
benthecarman committed Jan 12, 2024
1 parent 3666df4 commit 7a8ffd5
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 11 deletions.
14 changes: 5 additions & 9 deletions manifest.yaml
Original file line number Diff line number Diff line change
@@ -1,16 +1,12 @@

id: mutiny-wallet
title: "Mutiny Wallet"
version: 0.5.1
version: 0.5.3
release-notes: |
- Experimental support for Fedimint
- Experimental support for Multiple LSPs using the LSPS spec
- Increase on-chain gap limit when resyncing
- Better multi-device support
- Removed unused redshifts page
- Better address gap management
- Bug fix: Fix issue where nostr contacts would not be able to sync
- Bug fix: Fix issue with gifting not working on self-hosted instances
- New Send UI!
- Improved bitcoin price api, more currencies added
- Bug fixes with lightning connectivity
- Bug fixes with syncing nostr contacts
license: MIT
wrapper-repo: "https://github.com/benthecarman/mutiny-startos"
upstream-repo: "https://github.com/MutinyWallet/mutiny-web"
Expand Down
2 changes: 1 addition & 1 deletion mutiny-web
Submodule mutiny-web updated 75 files
+14 −0 .env.mainnet
+14 −0 .env.signet
+4 −0 .github/workflows/android-prod.yml
+4 −0 .github/workflows/android-staging.yml
+2 −2 android/app/build.gradle
+154 −0 e2e/fedimint.spec.ts
+50 −39 e2e/roundtrip.spec.ts
+3 −1 e2e/routes.spec.ts
+2 −2 ios/App/App.xcodeproj/project.pbxproj
+1 −1 ios/App/Podfile.lock
+3 −6 package.json
+4 −41 pnpm-lock.yaml
+1 −8 src/components/Activity.tsx
+1 −1 src/components/ActivityDetailsModal.tsx
+9 −50 src/components/ActivityItem.tsx
+0 −210 src/components/AmountCard.tsx
+125 −744 src/components/AmountEditable.tsx
+1 −1 src/components/BalanceBox.tsx
+1 −1 src/components/BetaWarningModal.tsx
+123 −0 src/components/BigMoney.tsx
+32 −33 src/components/ContactEditor.tsx
+40 −10 src/components/ContactForm.tsx
+86 −136 src/components/ContactViewer.tsx
+4 −0 src/components/ErrorDisplay.tsx
+106 −0 src/components/FeeDisplay.tsx
+14 −38 src/components/JsonModal.tsx
+63 −0 src/components/LabelCircle.tsx
+1 −1 src/components/LoadingIndicator.tsx
+71 −0 src/components/MethodChooser.tsx
+14 −33 src/components/MoreInfoModal.tsx
+1 −1 src/components/MutinyPlusCta.tsx
+32 −37 src/components/NWCEditor.tsx
+1 −1 src/components/NavBar.tsx
+14 −2 src/components/PendingNwc.tsx
+77 −0 src/components/ReceiveWarnings.tsx
+2 −5 src/components/ShareCard.tsx
+24 −0 src/components/SimpleInput.tsx
+1 −1 src/components/SyncContactsForm.tsx
+0 −79 src/components/TagEditor.tsx
+1 −1 src/components/Toaster.tsx
+6 −2 src/components/index.ts
+30 −0 src/components/layout/BackPop.tsx
+1 −1 src/components/layout/Button.tsx
+0 −44 src/components/layout/Linkify.tsx
+15 −28 src/components/layout/Misc.tsx
+0 −52 src/components/layout/ProgressBar.tsx
+0 −2 src/components/layout/index.ts
+11 −4 src/i18n/en/translations.ts
+1 −0 src/logic/waila.ts
+5 −1 src/root.css
+2 −0 src/router.tsx
+4 −2 src/routes/Activity.tsx
+184 −232 src/routes/Receive.tsx
+465 −0 src/routes/Search.tsx
+406 −478 src/routes/Send.tsx
+13 −5 src/routes/Swap.tsx
+1 −0 src/routes/index.ts
+1 −1 src/routes/settings/Channels.tsx
+19 −22 src/routes/settings/Gift.tsx
+1 −1 src/routes/settings/Restore.tsx
+1 −1 src/routes/settings/Servers.tsx
+3 −3 src/routes/settings/SyncNostrContacts.tsx
+2 −2 src/state/megaStore.tsx
+0 −67 src/styles/solid-select.css
+2 −3 src/utils/bech32.ts
+348 −11 src/utils/currencies.ts
+62 −3 src/utils/fetchZaps.ts
+0 −13 src/utils/getHostname.ts
+1 −2 src/utils/index.ts
+121 −0 src/utils/keypad.ts
+4 −1 src/utils/nostr.ts
+0 −12 src/utils/tags.ts
+1 −1 src/utils/useCopy.ts
+0 −8 src/utils/vibrate.ts
+15 −3 tailwind.config.cjs
2 changes: 1 addition & 1 deletion scripts/procedures/migrations.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
import { compat, types as T } from "../deps.ts";

export const migration: T.ExpectedExports.migration = compat.migrations.fromMapping({}, "0.5.1");
export const migration: T.ExpectedExports.migration = compat.migrations.fromMapping({}, "0.5.3");

0 comments on commit 7a8ffd5

Please sign in to comment.