Skip to content

Commit

Permalink
bump to 0.4.39
Browse files Browse the repository at this point in the history
  • Loading branch information
futurepaul authored and TonyGiorgio committed Dec 1, 2023
1 parent 43faf46 commit 9f7c489
Show file tree
Hide file tree
Showing 6 changed files with 24 additions and 23 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 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.
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.4.38;
MARKETING_VERSION = 1.4.39;
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.4.38;
MARKETING_VERSION = 1.4.39;
PRODUCT_BUNDLE_IDENTIFIER = com.mutinywallet.mutiny;
PRODUCT_NAME = "$(TARGET_NAME)";
PROVISIONING_PROFILE_SPECIFIER = "";
Expand Down
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "mutiny-wallet",
"version": "0.4.38",
"version": "0.4.39",
"license": "MIT",
"packageManager": "pnpm@8.6.6",
"scripts": {
Expand Down Expand Up @@ -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",
Expand Down
16 changes: 8 additions & 8 deletions pnpm-lock.yaml

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

6 changes: 3 additions & 3 deletions src/components/ActivityDetailsModal.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}
Expand Down
11 changes: 6 additions & 5 deletions src/routes/settings/Connections.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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>
Expand Down Expand Up @@ -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
Expand Down Expand Up @@ -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 +
Expand All @@ -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}://`
Expand Down

0 comments on commit 9f7c489

Please sign in to comment.