Skip to content

Commit

Permalink
Update to 1.7.1
Browse files Browse the repository at this point in the history
  • Loading branch information
benthecarman committed May 13, 2024
1 parent 7edbe63 commit da70aef
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
4 changes: 3 additions & 1 deletion manifest.yaml
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@

id: mutiny-wallet
title: "Mutiny Wallet"
version: 0.6.8
version: 1.7.1
release-notes: |
- On chain fedimint support
- Swapping between federations
- Improve performance
- Bug fixes
license: MIT
Expand Down
2 changes: 1 addition & 1 deletion mutiny-web
Submodule mutiny-web updated 90 files
+2 −2 .github/workflows/android-prod.yml
+2 −2 .github/workflows/android-staging.yml
+3 −3 android/app/build.gradle
+1 −0 android/app/capacitor.build.gradle
+2 −2 android/build.gradle
+14 −11 android/capacitor.settings.gradle
+1 −1 android/gradle/wrapper/gradle-wrapper.properties
+7 −7 android/variables.gradle
+3 −6 e2e/encrypt.spec.ts
+3 −3 e2e/fedimint.spec.ts
+20 −18 e2e/roundtrip.spec.ts
+0 −8 e2e/routes.spec.ts
+3 −3 ios/App/App.xcodeproj/project.pbxproj
+84 −0 ios/App/App.xcodeproj/xcshareddata/xcschemes/App.xcscheme
+14 −13 ios/App/Podfile
+53 −47 ios/App/Podfile.lock
+35 −32 package.json
+437 −355 pnpm-lock.yaml
+31 −15 public/i18n/en.json
+70 −79 src/components/Activity.tsx
+71 −65 src/components/ActivityDetailsModal.tsx
+9 −5 src/components/Amount.tsx
+34 −19 src/components/AmountEditable.tsx
+35 −23 src/components/BalanceBox.tsx
+8 −3 src/components/ContactForm.tsx
+4 −4 src/components/ContactViewer.tsx
+3 −6 src/components/DeleteEverything.tsx
+20 −17 src/components/EditProfileForm.tsx
+45 −0 src/components/FederationPopup.tsx
+10 −7 src/components/FeeDisplay.tsx
+4 −1 src/components/GenericItem.tsx
+0 −22 src/components/GiftLink.tsx
+14 −10 src/components/HomeBalance.tsx
+3 −4 src/components/HomePrompt.tsx
+3 −4 src/components/HomeSubnav.tsx
+9 −11 src/components/ImportExport.tsx
+3 −7 src/components/ImportNsecForm.tsx
+0 −10 src/components/IntegratedQR.tsx
+22 −26 src/components/KitchenSink.tsx
+1 −1 src/components/LoadingIndicator.tsx
+3 −2 src/components/Logs.tsx
+82 −51 src/components/NWCEditor.tsx
+7 −8 src/components/NostrActivity.tsx
+31 −32 src/components/PendingNwc.tsx
+50 −22 src/components/ReceiveWarnings.tsx
+3 −3 src/components/Restart.tsx
+2 −2 src/components/ResyncOnchain.tsx
+3 −2 src/components/SetupErrorDisplay.tsx
+23 −19 src/components/SocialActionRow.tsx
+0 −77 src/components/SyncContactsForm.tsx
+1 −2 src/components/index.ts
+10 −3 src/components/layout/Misc.tsx
+1 −167 src/logic/mutinyWalletSetup.ts
+6 −6 src/logic/waila.ts
+50 −50 src/router.tsx
+29 −40 src/routes/Chat.tsx
+10 −10 src/routes/EditProfile.tsx
+0 −270 src/routes/Gift.tsx
+23 −33 src/routes/Main.tsx
+18 −15 src/routes/Profile.tsx
+198 −198 src/routes/Receive.tsx
+7 −11 src/routes/Redeem.tsx
+5 −5 src/routes/Request.tsx
+75 −66 src/routes/Search.tsx
+55 −43 src/routes/Send.tsx
+101 −95 src/routes/Swap.tsx
+29 −25 src/routes/SwapLightning.tsx
+220 −0 src/routes/Transfer.tsx
+3 −3 src/routes/index.ts
+5 −3 src/routes/settings/Backup.tsx
+31 −23 src/routes/settings/Channels.tsx
+33 −15 src/routes/settings/Connections.tsx
+2 −2 src/routes/settings/Encrypt.tsx
+0 −323 src/routes/settings/Gift.tsx
+22 −15 src/routes/settings/ImportProfile.tsx
+23 −17 src/routes/settings/LightningAddress.tsx
+147 −116 src/routes/settings/ManageFederations.tsx
+16 −23 src/routes/settings/NostrKeys.tsx
+8 −18 src/routes/settings/Plus.tsx
+4 −6 src/routes/settings/Restore.tsx
+0 −1 src/routes/settings/index.ts
+4 −4 src/routes/setup/NewProfile.tsx
+1 −2 src/routes/setup/Root.tsx
+191 −210 src/state/megaStore.tsx
+16 −17 src/utils/conversions.ts
+49 −19 src/utils/fetchZaps.ts
+3 −2 src/utils/nostr.ts
+1 −0 src/vite-env.d.ts
+1,601 −0 src/workers/walletWorker.ts
+10 −2 vite.config.ts
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.6.8");
export const migration: T.ExpectedExports.migration = compat.migrations.fromMapping({}, "1.7.1");

0 comments on commit da70aef

Please sign in to comment.