diff --git a/README.md b/README.md index 0455cd7..11768f4 100644 --- a/README.md +++ b/README.md @@ -583,7 +583,7 @@ aitherboard/ **Components**: - `ReactionButtons.svelte` - For threads/comments (kind 11/1111) -- `Kind1ReactionButtons.svelte` - For kind 1 feed +- `FeedReactionButtons.svelte` - For kind 1 feed **REQUIREMENTS**: - **Kind 11/1111**: Only `+` and `-` allowed @@ -629,12 +629,12 @@ aitherboard/ ### Kind 1 Feed Module (`src/lib/modules/feed/`) **Components**: -- `Kind1FeedPage.svelte` - Main feed page -- `Kind1Post.svelte` - Individual kind 1 post -- `Kind1Reply.svelte` - Kind 1 reply display +- `FeedPage.svelte` - Main feed page +- `FeedPost.svelte` - Individual kind 1 post +- `FeedReply.svelte` - Kind 1 reply display - `ZapReceiptReply.svelte` - Zap receipt as reply (with ⚡) -- `CreateKind1Form.svelte` - Create new kind 1 events -- `ReplyToKind1Form.svelte` - Reply to kind 1 events +- `CreateFeedForm.svelte` - Create new kind 1 events +- `ReplyToFeedForm.svelte` - Reply to kind 1 events **REQUIREMENTS**: - "View feed" button on landing page opens `/feed` diff --git a/public/healthz.json b/public/healthz.json index da510e3..f26830a 100644 --- a/public/healthz.json +++ b/public/healthz.json @@ -2,7 +2,7 @@ "status": "ok", "service": "aitherboard", "version": "0.1.0", - "buildTime": "2026-02-02T14:49:18.071Z", + "buildTime": "2026-02-02T15:23:47.430Z", "gitCommit": "unknown", - "timestamp": 1770043758071 + "timestamp": 1770045827431 } \ No newline at end of file diff --git a/src/app.css b/src/app.css index b9d2056..e40728f 100644 --- a/src/app.css +++ b/src/app.css @@ -117,12 +117,12 @@ img[src*="emoji" i] { /* Apply grayscale filter to reaction buttons containing emojis */ .reaction-btn, -.kind1-reaction-buttons button { +.Feed-reaction-buttons button { filter: grayscale(100%) sepia(15%) hue-rotate(200deg) saturate(60%) brightness(0.95); } .dark .reaction-btn, -.dark .kind1-reaction-buttons button { +.dark .Feed-reaction-buttons button { filter: grayscale(100%) sepia(20%) hue-rotate(200deg) saturate(70%) brightness(0.9); } diff --git a/src/lib/components/content/ReplyContext.svelte b/src/lib/components/content/ReplyContext.svelte new file mode 100644 index 0000000..5cee1b5 --- /dev/null +++ b/src/lib/components/content/ReplyContext.svelte @@ -0,0 +1,63 @@ + + +
+ + diff --git a/src/lib/modules/comments/Comment.svelte b/src/lib/modules/comments/Comment.svelte index 17ceae7..b08c4d1 100644 --- a/src/lib/modules/comments/Comment.svelte +++ b/src/lib/modules/comments/Comment.svelte @@ -1,9 +1,8 @@