Coffee journaling on ATProto (alpha) alpha.arabica.social
coffee
17
fork

Configure Feed

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

fix: use custom font again

+3 -3
+1 -1
internal/firehose/index.go
··· 1160 1160 func (idx *FeedIndex) ListRecordsByCollection(ctx context.Context, collection string) ([]IndexedRecord, error) { 1161 1161 rows, err := idx.db.QueryContext(ctx, ` 1162 1162 SELECT uri, did, collection, rkey, record, cid, indexed_at, created_at 1163 - FROM records WHERE collection = ? ORDER BY created_at DESC 1163 + FROM records WHERE collection = ? ORDER BY created_at ASC 1164 1164 `, collection) 1165 1165 if err != nil { 1166 1166 return nil, err
+2 -2
internal/web/components/layout.templ
··· 107 107 <link rel="icon" href="/static/favicon.svg" type="image/svg+xml"/> 108 108 <link rel="icon" href="/static/favicon-32.svg" type="image/svg+xml" sizes="32x32"/> 109 109 <link rel="apple-touch-icon" href="/static/icon-192.svg"/> 110 - <link rel="stylesheet" href="/static/css/output.css?v=0.8.3"/> 110 + <link rel="stylesheet" href="/static/css/output.css?v=0.8.4"/> 111 111 <style> 112 112 [x-cloak] { display: none !important; } 113 113 </style> ··· 300 300 <meta name="traceparent" content={ tp }/> 301 301 } 302 302 <body 303 - class="min-h-full flex flex-col" 303 + class="min-h-full flex flex-col font-sans" 304 304 style="background-color: var(--page-bg); color: var(--page-text);" 305 305 if data.UserDID != "" { 306 306 data-user-did={ data.UserDID }