Skip to content

Commit

Permalink
Update to v0.6.3
Browse files Browse the repository at this point in the history
  • Loading branch information
benthecarman committed Apr 10, 2024
1 parent 241b53e commit 41c14b1
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
6 changes: 4 additions & 2 deletions manifest.yaml
Original file line number Diff line number Diff line change
@@ -1,9 +1,11 @@

id: mutiny-wallet
title: "Mutiny Wallet"
version: 0.6.1
version: 0.6.3
release-notes: |
- New social design! Read about it here: https://blog.mutinywallet.com/mutiny-new-design-people-oriented/
- Bug fixes
- Improved performance
- Update to fedimint v0.3.0
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 49 files
+2 −0 .env.example
+2 −0 .env.mainnet
+2 −0 .env.signet
+2 −0 .github/workflows/android-prod.yml
+2 −0 .github/workflows/android-staging.yml
+3 −0 .github/workflows/ios-prod.yml
+2 −0 .github/workflows/ios-staging.yml
+1 −0 .gitignore
+2 −2 android/app/build.gradle
+28 −1 e2e/roundtrip.spec.ts
+2 −2 ios/App/App.xcodeproj/project.pbxproj
+2 −2 package.json
+5 −4 pnpm-lock.yaml
+28 −9 public/i18n/en.json
+ public/m-plus.png
+143 −9 src/components/Activity.tsx
+1 −1 src/components/ActivityDetailsModal.tsx
+2 −2 src/components/Fab.tsx
+4 −1 src/components/GenericItem.tsx
+39 −2 src/components/HomePrompt.tsx
+0 −3 src/components/KitchenSink.tsx
+6 −3 src/components/LabelCircle.tsx
+86 −0 src/components/LightningAddressShower.tsx
+4 −5 src/components/NostrActivity.tsx
+3 −1 src/components/PendingNwc.tsx
+0 −27 src/components/ResetRouter.tsx
+11 −3 src/components/SocialActionRow.tsx
+1 −1 src/components/index.ts
+12 −6 src/components/layout/TextField.tsx
+22 −2 src/logic/mutinyWalletSetup.ts
+1 −0 src/root.css
+2 −0 src/router.tsx
+2 −0 src/routes/Chat.tsx
+2 −1 src/routes/EditProfile.tsx
+3 −2 src/routes/Feedback.tsx
+7 −2 src/routes/Main.tsx
+53 −62 src/routes/Profile.tsx
+25 −1 src/routes/Search.tsx
+26 −14 src/routes/Send.tsx
+286 −0 src/routes/settings/LightningAddress.tsx
+23 −6 src/routes/settings/ManageFederations.tsx
+3 −3 src/routes/settings/NostrKeys.tsx
+27 −1 src/routes/settings/Plus.tsx
+1 −1 src/routes/settings/Root.tsx
+1 −0 src/routes/settings/index.ts
+8 −37 src/routes/setup/ImportProfile.tsx
+11 −5 src/routes/setup/NewProfile.tsx
+0 −7 src/state/megaStore.tsx
+2 −0 src/utils/nostr.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.1");
export const migration: T.ExpectedExports.migration = compat.migrations.fromMapping({}, "0.6.3");

0 comments on commit 41c14b1

Please sign in to comment.