From 27f4cd6857785236a01b746c7645e3b707a63a7f Mon Sep 17 00:00:00 2001 From: Laan Tungir Date: Sun, 28 Jun 2026 20:18:18 -0400 Subject: [PATCH] Set llm-steganography page to no-login (auth mode none) by default --- www/js/version.json | 6 +++--- www/llm-steganography.html | 11 +++++------ 2 files changed, 8 insertions(+), 9 deletions(-) diff --git a/www/js/version.json b/www/js/version.json index df14d11..7526546 100644 --- a/www/js/version.json +++ b/www/js/version.json @@ -1,5 +1,5 @@ { - "VERSION": "v0.7.57", - "VERSION_NUMBER": "0.7.57", - "BUILD_DATE": "2026-06-29T00:17:04.254Z" + "VERSION": "v0.7.58", + "VERSION_NUMBER": "0.7.58", + "BUILD_DATE": "2026-06-29T00:18:18.870Z" } diff --git a/www/llm-steganography.html b/www/llm-steganography.html index b0d56dc..20fb1e4 100644 --- a/www/llm-steganography.html +++ b/www/llm-steganography.html @@ -714,12 +714,11 @@ return explicitAuth; } - // Convention: explicit target profiles are public-readable by default. - if (hasTargetPubkeyInUrl()) { - return 'optional'; - } - - return 'required'; + // This page is a standalone demo that does not require Nostr auth. + // Default to 'none' so visitors are never prompted to log in; the + // sidenav logout button doubles as a "Sign in" entry point if a user + // wants to access relay/blossom/AI sections. + return 'none'; } function isAuthRequiredError(error) {