bump to 0.4.39

This commit is contained in:
Paul Miller
2023-12-01 14:30:31 -06:00
committed by Tony Giorgio
parent 43faf46eb7
commit 9f7c48975f
6 changed files with 24 additions and 23 deletions

View File

@@ -7,8 +7,8 @@ android {
applicationId "com.mutinywallet.mutinywallet"
minSdkVersion rootProject.ext.minSdkVersion
targetSdkVersion rootProject.ext.targetSdkVersion
versionCode 39
versionName "0.4.38"
versionCode 40
versionName "0.4.39"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
aaptOptions {
// Files and dirs to omit from the packaged assets dir, modified to accommodate modern web apps.

View File

@@ -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.4.38;
MARKETING_VERSION = 1.4.39;
OTHER_SWIFT_FLAGS = "$(inherited) \"-D\" \"COCOAPODS\" \"-DDEBUG\"";
PRODUCT_BUNDLE_IDENTIFIER = com.mutinywallet.mutiny;
PRODUCT_NAME = "$(TARGET_NAME)";
@@ -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.4.38;
MARKETING_VERSION = 1.4.39;
PRODUCT_BUNDLE_IDENTIFIER = com.mutinywallet.mutiny;
PRODUCT_NAME = "$(TARGET_NAME)";
PROVISIONING_PROFILE_SPECIFIER = "";

View File

@@ -1,6 +1,6 @@
{
"name": "mutiny-wallet",
"version": "0.4.38",
"version": "0.4.39",
"license": "MIT",
"packageManager": "pnpm@8.6.6",
"scripts": {
@@ -55,8 +55,8 @@
"@kobalte/core": "^0.9.8",
"@kobalte/tailwindcss": "^0.5.0",
"@modular-forms/solid": "^0.18.1",
"@mutinywallet/mutiny-wasm": "0.4.38",
"@mutinywallet/waila-wasm": "^0.2.4",
"@mutinywallet/mutiny-wasm": "0.4.39",
"@mutinywallet/waila-wasm": "^0.2.6",
"@solid-primitives/upload": "^0.0.111",
"@solid-primitives/websocket": "^1.2.0",
"@solidjs/meta": "^0.29.1",

16
pnpm-lock.yaml generated
View File

@@ -54,11 +54,11 @@ importers:
specifier: ^0.18.1
version: 0.18.1(solid-js@1.8.5)
'@mutinywallet/mutiny-wasm':
specifier: 0.4.38
version: 0.4.38
specifier: 0.4.39
version: 0.4.39
'@mutinywallet/waila-wasm':
specifier: ^0.2.4
version: 0.2.4
specifier: ^0.2.6
version: 0.2.6
'@solid-primitives/upload':
specifier: ^0.0.111
version: 0.0.111(solid-js@1.8.5)
@@ -2584,12 +2584,12 @@ packages:
solid-js: 1.8.5
dev: false
/@mutinywallet/mutiny-wasm@0.4.38:
resolution: {integrity: sha512-OaYwKLYwKYT0QrjNhn1muKWTIH0TVTjiBeWTLuwepabSJbAZ+hCxuPXxDiXzYJArLm9Xvvmq3RVjDktdt0jOwA==}
/@mutinywallet/mutiny-wasm@0.4.39:
resolution: {integrity: sha512-7vMgwteU0lCzMdX/INIIlsrq5jvEJA2aXuJmqHzGb6Bgty2jOfuWVvW54c2SZ3HQvuFHDPxjrrDB2QHabdBhMw==}
dev: false
/@mutinywallet/waila-wasm@0.2.4:
resolution: {integrity: sha512-wd4+Pht5GFP7jHFYA6T6Q9lZFOKfAFjEW2n6HPa6cqOK+SFbUTbrDn4GHwLQm6vDvQ48m0rV08CkyFvGFCWiOw==}
/@mutinywallet/waila-wasm@0.2.6:
resolution: {integrity: sha512-qiyhaWX/zDKuh23VXIzeWGlmXne9IdRIx+ldGdse15JwEiC97OjATXMECX3Xo0tc3RTOo50cKyMlouKKRbLYpQ==}
dev: false
/@ndelangen/get-tarball@3.0.9:

View File

@@ -499,11 +499,11 @@ export function ActivityDetailsModal(props: {
) {
try {
// find if there's just one for now
const contacts = state.mutiny_wallet?.get_contact(
const tags = state.mutiny_wallet?.get_tag_item(
data().labels[0]
);
if (contacts) {
return contacts;
if (tags) {
return tags;
} else {
return;
}

View File

@@ -133,10 +133,10 @@ function NwcDetails(props: {
return (
<VStack>
<Show when={props.profile.index >= 1000}>
<Show when={props.profile.index >= 1000 && props.profile.nwc_uri}>
<div class="w-full rounded-xl bg-white">
<QRCodeSVG
value={props.profile.nwc_uri}
value={props.profile.nwc_uri!}
class="h-full max-h-[320px] w-full p-8"
/>
</div>
@@ -179,7 +179,8 @@ function NwcDetails(props: {
<Show
when={
props.profile.tag !== "Gift" &&
props.profile.tag !== "Subscription"
props.profile.tag !== "Subscription" &&
props.profile.nwc_uri
}
>
<Button
@@ -293,7 +294,7 @@ function Nwc() {
// If there's a "return_to" param we use that instead of the callbackUri scheme
const returnUrl = searchParams.return_to;
if (returnUrl) {
if (returnUrl && newProfile.nwc_uri) {
// add the nwc query param to the return url
const fullURI =
returnUrl +
@@ -306,7 +307,7 @@ function Nwc() {
}
const callbackUriScheme = searchParams.callbackUri;
if (callbackUriScheme) {
if (callbackUriScheme && newProfile.nwc_uri) {
const fullURI = newProfile.nwc_uri.replace(
"nostr+walletconnect://",
`${callbackUriScheme}://`