From 226c9024400b40c05b820fe9e765fca89313e54a Mon Sep 17 00:00:00 2001 From: "claude[bot]" <209825114+claude[bot]@users.noreply.github.com> Date: Sat, 24 May 2025 17:13:25 +0000 Subject: [PATCH 1/2] Enable Zaprite (Bitcoin) payments on iOS app Remove iOS platform restriction for Bitcoin payment toggle in pricing page. The underlying Zaprite checkout functionality and Universal Links were already implemented for iOS, but the UI toggle was hidden. Fixes #79 Co-authored-by: AnthonyRonning --- frontend/src/routes/pricing.tsx | 26 ++++++++++++-------------- 1 file changed, 12 insertions(+), 14 deletions(-) diff --git a/frontend/src/routes/pricing.tsx b/frontend/src/routes/pricing.tsx index fe8d94560..f5e8dbc78 100644 --- a/frontend/src/routes/pricing.tsx +++ b/frontend/src/routes/pricing.tsx @@ -665,22 +665,20 @@ function PricingPage() { )} - {!isIOS && ( -
-
-
- - Pay with Bitcoin -
- +
+
+
+ + Pay with Bitcoin
+
- )} +
{products && From 314e5f4aa4de021a177319a7a74e0f4192934bc2 Mon Sep 17 00:00:00 2001 From: "claude[bot]" <209825114+claude[bot]@users.noreply.github.com> Date: Sun, 25 May 2025 01:06:26 +0000 Subject: [PATCH 2/2] Bump version from 1.0.7 to 1.0.8 Co-authored-by: AnthonyRonning --- frontend/package.json | 2 +- frontend/src-tauri/Cargo.toml | 2 +- frontend/src-tauri/tauri.conf.json | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/frontend/package.json b/frontend/package.json index 27fc12850..54bf2b79d 100644 --- a/frontend/package.json +++ b/frontend/package.json @@ -1,7 +1,7 @@ { "name": "maple", "private": true, - "version": "1.0.7", + "version": "1.0.8", "type": "module", "scripts": { "dev": "vite", diff --git a/frontend/src-tauri/Cargo.toml b/frontend/src-tauri/Cargo.toml index b0467b3b8..f2a3f5733 100644 --- a/frontend/src-tauri/Cargo.toml +++ b/frontend/src-tauri/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "maple" -version = "1.0.7" +version = "1.0.8" description = "Maple AI" authors = ["tony@opensecret.cloud"] license = "MIT" diff --git a/frontend/src-tauri/tauri.conf.json b/frontend/src-tauri/tauri.conf.json index 2a3d7a421..ed101efb5 100644 --- a/frontend/src-tauri/tauri.conf.json +++ b/frontend/src-tauri/tauri.conf.json @@ -1,7 +1,7 @@ { "$schema": "../node_modules/@tauri-apps/cli/config.schema.json", "productName": "Maple", - "version": "1.0.7", + "version": "1.0.8", "identifier": "cloud.opensecret.maple", "build": { "frontendDist": "../dist",