From eb34a5c70aa844005b396006288f006dcc6638d7 Mon Sep 17 00:00:00 2001 From: Melvin Carvalho Date: Wed, 17 Jun 2026 12:11:45 +0200 Subject: [PATCH] beacon: default relays table to most-recently-checked; move pod link to footer - public/index.html: relaysState default sort -> lastChecked desc (now the prober keeps it fresh, freshest-first is the useful default; columns stay click-sortable). Move 'Link your pod' from the topbar to the footer to de-emphasize it until polished; keep Relays in the topbar. Closes #17 --- public/index.html | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/public/index.html b/public/index.html index eefda41..e16a4ae 100644 --- a/public/index.html +++ b/public/index.html @@ -143,7 +143,6 @@ nostr.social
@@ -154,7 +153,7 @@

A directory of did:nostr identities

-
powered by beacon · each profile resolves at /.well-known/did/nostr/<pubkey>.json
+
powered by beacon · link your pod · each profile resolves at /.well-known/did/nostr/<pubkey>.json
@@ -350,7 +349,7 @@

${esc(c.name || short(pk))}

} // ---- relay directory (firehose health data) ---- -const relaysState = { online: true, sortKey: 'uptime', dir: -1, rows: [], meta: {} }; +const relaysState = { online: true, sortKey: 'lastChecked', dir: -1, rows: [], meta: {} }; const RCOLS = [ { key: 'relay', label: 'Relay', num: false }, { key: 'online', label: 'Status', num: false },