diff --git a/ROADMAP.md b/ROADMAP.md index 1e6238b9..ba7baaf1 100644 --- a/ROADMAP.md +++ b/ROADMAP.md @@ -1,6 +1,13 @@ # Current -- [ ] Fix reactions and replies +- [ ] Fix relays notification when multiplexing +- [ ] Disable self-zap +- [ ] Move blog to nostr +- [ ] Improve note rendering + - [ ] Fix reactions and replies showing up + - [ ] Show all images in preview as slideshow or something + - [ ] Extract nostr: links and bech32 entities, hover + - [ ] Linkify topics - [ ] Multiplexer - [ ] Announce multiplextr, paravel, coracle update w/url - [ ] Write NIP to support proxies. Update COUNT NIP to mention how proxies are a good use case for COUNT diff --git a/src/partials/Channel.svelte b/src/partials/Channel.svelte index 62ab36de..1383597f 100644 --- a/src/partials/Channel.svelte +++ b/src/partials/Channel.svelte @@ -3,7 +3,7 @@ import {fly} from "svelte/transition" import {navigate} from "svelte-routing" import {prop, path as getPath, reverse, pluck, uniqBy, sortBy, last} from "ramda" - import {sleep, timedelta, createScroller, Cursor} from "src/util/misc" + import {sleep, createScroller, Cursor} from "src/util/misc" import Spinner from "src/partials/Spinner.svelte" import user from "src/agent/user" import {getPersonWithFallback} from "src/agent/tables" @@ -18,9 +18,7 @@ let loading = sleep(30_000) let annotatedMessages = [] let showNewMessages = false - let cursor = new Cursor({ - delta: timedelta(7, "days"), - }) + let cursor = new Cursor() $: { // Group messages so we're only showing the person once per chunk diff --git a/src/routes/Notifications.svelte b/src/routes/Notifications.svelte index ea5b020d..3707cbec 100644 --- a/src/routes/Notifications.svelte +++ b/src/routes/Notifications.svelte @@ -1,8 +1,8 @@