appview-less bluesky client
24
fork

Configure Feed

Select the types of activity you want to include in your feed.

docs: more todos

+2 -1
+1
README.md
··· 13 - [ ] consider showing posts that mention / quote the user.. 14 - [ ] notifications when replied to (and mentioned and quoted?) 15 - [ ] basic filtering settings for the timeline (dont show self posts and if we implement mentioned / quoted add toggles for those as well) 16 - [ ] dont use listRecords to fetch own posts. we should have an index for this (red dwarf will have this so just piggyback off of that?) 17 - [ ] consider implementing feeds 18 - [ ] use jetstream to listen for own posts / likes / etc. made from other clients ? (pretty lowprio though, not sure if worth it, can just refresh)
··· 13 - [ ] consider showing posts that mention / quote the user.. 14 - [ ] notifications when replied to (and mentioned and quoted?) 15 - [ ] basic filtering settings for the timeline (dont show self posts and if we implement mentioned / quoted add toggles for those as well) 16 + - [ ] use bsky video CDN instead of linking to blob 17 - [ ] dont use listRecords to fetch own posts. we should have an index for this (red dwarf will have this so just piggyback off of that?) 18 - [ ] consider implementing feeds 19 - [ ] use jetstream to listen for own posts / likes / etc. made from other clients ? (pretty lowprio though, not sure if worth it, can just refresh)
+1 -1
src/lib/at/stardust.ts
··· 8 }; 9 10 export type LinkNotification = { 11 - operation: 'create' | 'update' | 'delete'; 12 source: BacklinksSource; 13 source_record: CanonicalResourceUri; 14 source_rev: RecordKey;
··· 8 }; 9 10 export type LinkNotification = { 11 + operation: 'create'; // todo: delete in the future 12 source: BacklinksSource; 13 source_record: CanonicalResourceUri; 14 source_rev: RecordKey;