From a7275add18f474314595cb3d3209dfb4828fca7e Mon Sep 17 00:00:00 2001 From: Steven Welch Date: Tue, 1 Sep 2026 21:23:42 -0600 Subject: [PATCH 1/2] feat: deep-link OpenCode portal card to the /home/opencode workspace --- makeitwork.cloud/index.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/makeitwork.cloud/index.html b/makeitwork.cloud/index.html index 6c3d675..865fb20 100644 --- a/makeitwork.cloud/index.html +++ b/makeitwork.cloud/index.html @@ -748,7 +748,7 @@

MAKE IT WORK

@@ -901,7 +901,7 @@

MAKE IT WORK

const isStandalone = window.matchMedia("(display-mode: standalone)").matches || - navigator.standalone === true; + window.standalone === true; const dismissedAt = localStorage.getItem(DISMISSED_KEY); const wasDismissed = dismissedAt && From 29a1e8447b0cd905ee29dc06e5e4f3c77f01ec21 Mon Sep 17 00:00:00 2001 From: Steven Welch Date: Tue, 1 Sep 2026 21:25:48 -0600 Subject: [PATCH 2/2] fix: restore navigator.standalone check lost in prior commit --- makeitwork.cloud/index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/makeitwork.cloud/index.html b/makeitwork.cloud/index.html index 865fb20..9211039 100644 --- a/makeitwork.cloud/index.html +++ b/makeitwork.cloud/index.html @@ -901,7 +901,7 @@

MAKE IT WORK

const isStandalone = window.matchMedia("(display-mode: standalone)").matches || - window.standalone === true; + navigator.standalone === true; const dismissedAt = localStorage.getItem(DISMISSED_KEY); const wasDismissed = dismissedAt &&