Skip to content

Commit

Permalink
0.5.5
Browse files Browse the repository at this point in the history
  • Loading branch information
benthecarman authored and TonyGiorgio committed Jan 22, 2024
1 parent 9048474 commit d9ada68
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 10 deletions.
4 changes: 2 additions & 2 deletions android/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ android {
applicationId "com.mutinywallet.mutinywallet"
minSdkVersion rootProject.ext.minSdkVersion
targetSdkVersion rootProject.ext.targetSdkVersion
versionCode 45
versionName "0.5.3"
versionCode 46
versionName "0.5.5"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
aaptOptions {
// Files and dirs to omit from the packaged assets dir, modified to accommodate modern web apps.
Expand Down
4 changes: 2 additions & 2 deletions ios/App/App.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -360,7 +360,7 @@
INFOPLIST_KEY_LSApplicationCategoryType = "public.app-category.finance";
IPHONEOS_DEPLOYMENT_TARGET = 14.0;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
MARKETING_VERSION = 1.5.3;
MARKETING_VERSION = 1.5.5;
OTHER_SWIFT_FLAGS = "$(inherited) \"-D\" \"COCOAPODS\" \"-DDEBUG\"";
PRODUCT_BUNDLE_IDENTIFIER = com.mutinywallet.mutiny;
PRODUCT_NAME = "$(TARGET_NAME)";
Expand All @@ -387,7 +387,7 @@
INFOPLIST_KEY_LSApplicationCategoryType = "public.app-category.finance";
IPHONEOS_DEPLOYMENT_TARGET = 14.0;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
MARKETING_VERSION = 1.5.3;
MARKETING_VERSION = 1.5.5;
PRODUCT_BUNDLE_IDENTIFIER = com.mutinywallet.mutiny;
PRODUCT_NAME = "$(TARGET_NAME)";
PROVISIONING_PROFILE_SPECIFIER = "";
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "mutiny-wallet",
"version": "0.5.3",
"version": "0.5.5",
"license": "MIT",
"packageManager": "[email protected]",
"scripts": {
Expand Down Expand Up @@ -55,7 +55,7 @@
"@kobalte/core": "^0.9.8",
"@kobalte/tailwindcss": "^0.5.0",
"@modular-forms/solid": "^0.18.1",
"@mutinywallet/mutiny-wasm": "0.5.3",
"@mutinywallet/mutiny-wasm": "0.5.5",
"@mutinywallet/waila-wasm": "^0.2.6",
"@solid-primitives/upload": "^0.0.111",
"@solidjs/meta": "^0.29.1",
Expand Down
8 changes: 4 additions & 4 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 5 additions & 0 deletions src/logic/errorDispatch.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ type MutinyError =
| "An invoice must not get payed twice."
| "Payment timed out."
| "The given invoice is invalid."
| "The given invoice is expired."
| "Failed to create invoice."
| "Channel reserve amount is too high."
| "We do not have enough balance to pay the given amount."
Expand All @@ -22,6 +23,7 @@ type MutinyError =
| "Failed to request channel from LSP due to funding error."
| "Failed to request channel from LSP due to amount being too high."
| "Failed to have a connection to the LSP node."
| "Failed to provide an invoice to the LSP."
| "Subscription Client Not Configured"
| "Invalid Parameter"
| "Called incorrect lnurl function."
Expand Down Expand Up @@ -49,6 +51,9 @@ type MutinyError =
| "Invalid Arguments were given"
| "Incorrect password entered."
| "Cannot change password to the same password."
| "Failed to create payjoin request."
| "Payjoin response error: {0}"
| "Payjoin configuration failed."
| "Unknown Error";

export function matchError(e: unknown): Error {
Expand Down

0 comments on commit d9ada68

Please sign in to comment.