Bump to v0.8.3 — trending feed, NIP-46 remote signer, media feed, profile media gallery

This commit is contained in:
Jure
2026-03-20 12:45:58 +01:00
parent 57630227e1
commit 0bcbba6e8f
21 changed files with 538 additions and 162 deletions
@@ -98,6 +98,9 @@ export function AccountSwitcher() {
>
<Avatar account={a} />
<span className="text-text-muted text-[11px] truncate flex-1">{displayName(a)}</span>
{a.loginType === "remote-signer" && (
<span className="text-[10px] text-text-dim" title="Remote signer (NIP-46)">NIP-46</span>
)}
<button
onClick={(e) => handleRemove(e, a.pubkey)}
className="text-text-dim hover:text-danger text-[11px] opacity-0 group-hover:opacity-100 transition-opacity"
+1
View File
@@ -11,6 +11,7 @@ import pkg from "../../../package.json";
const NAV_ITEMS = [
{ id: "feed" as const, label: "feed", icon: "◈" },
{ id: "articles" as const, label: "articles", icon: "☰" },
{ id: "media" as const, label: "media", icon: "▶" },
{ id: "search" as const, label: "search", icon: "⌕" },
{ id: "bookmarks" as const, label: "bookmarks", icon: "▪" },
{ id: "dm" as const, label: "messages", icon: "✉" },