Skip to content

Commit

Permalink
Bump to v0.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
benthecarman committed Dec 29, 2023
1 parent 1de0117 commit 3180a64
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 6 deletions.
12 changes: 8 additions & 4 deletions manifest.yaml
Original file line number Diff line number Diff line change
@@ -1,11 +1,15 @@

id: mutiny-wallet
title: "Mutiny Wallet"
version: 0.4.39-1
version: 0.5.0
release-notes: |
- Dynamic Channel Fees, setting up your channels should be cheaper now
- General backend improvements
- Bug fixes
- 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
- 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
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
+4 −0 Dockerfile
+5 −3 README.md
+2 −2 android/app/build.gradle
+9 −0 default.conf
+11 −13 e2e/routes.spec.ts
+2 −2 ios/App/App.xcodeproj/project.pbxproj
+3 −0 justfile
+2 −2 package.json
+4 −4 pnpm-lock.yaml
+4 −0 src/assets/icons/community.svg
+2 −4 src/components/Activity.tsx
+2 −2 src/components/ActivityItem.tsx
+5 −1 src/components/Amount.tsx
+6 −11 src/components/AmountEditable.tsx
+21 −1 src/components/BalanceBox.tsx
+18 −4 src/components/ContactForm.tsx
+8 −12 src/components/ContactViewer.tsx
+3 −0 src/components/ErrorDisplay.tsx
+129 −0 src/components/HomePrompt.tsx
+125 −22 src/components/KitchenSink.tsx
+4 −4 src/components/NWCEditor.tsx
+0 −8 src/components/NavBar.tsx
+1 −2 src/components/PendingNwc.tsx
+1 −0 src/components/index.ts
+36 −25 src/i18n/en/translations.ts
+0 −19 src/i18n/ko/translations.ts
+21 −0 src/logic/mutinyWalletSetup.ts
+5 −1 src/logic/waila.ts
+5 −4 src/router.tsx
+28 −10 src/routes/Activity.tsx
+3 −1 src/routes/Gift.tsx
+2 −0 src/routes/Main.tsx
+3 −8 src/routes/Receive.tsx
+0 −652 src/routes/Redshift.tsx
+19 −21 src/routes/Send.tsx
+2 −13 src/routes/Swap.tsx
+0 −1 src/routes/index.ts
+19 −6 src/routes/settings/Connections.tsx
+0 −77 src/routes/settings/LnUrlAuth.tsx
+232 −0 src/routes/settings/ManageFederations.tsx
+5 −5 src/routes/settings/Plus.tsx
+1 −0 src/routes/settings/Restore.tsx
+4 −4 src/routes/settings/Root.tsx
+1 −1 src/routes/settings/index.ts
+35 −4 src/state/megaStore.tsx
+243 −0 src/utils/bech32.ts
+0 −20 src/utils/fakeLabels.ts
+2 −2 src/utils/gradientHash.ts
+1 −1 src/utils/index.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.4.39-1");
export const migration: T.ExpectedExports.migration = compat.migrations.fromMapping({}, "0.5.0");

0 comments on commit 3180a64

Please sign in to comment.