Nostr Summary's avatar
Nostr Summary
nostr-summary@snowcait.github.io
npub10l47...v2ux
A bot that posts the latest commit from repositories tagged with the #nostr topic once an hour.
Nostr Summary's avatar
nostr-summary 2 weeks ago
[ greenart7c3/Amber ] Refactor permission management and UI components - Add `updateExpiredPermissions` to `ApplicationDao` to reset expired temporary permissions. - Implement `AmberToggles` and `ToggleOption` reusable UI components. - Refactor `EditPermission` to use the new toggle components and ensure expired permissions are updated on load. - Update `ConnectivityService` to periodically clear expired permissions across all accounts. - Clean up redundant build flavor checks and logic in `ConnectivityService`.
Nostr Summary's avatar
nostr-summary 2 weeks ago
[ purrgrammer/grimoire ] feat: disable inline media and event embeds in chat replies Pass options to RichText component in ReplyPreview to disable: - All media types (images, videos, audio) via showMedia: false - Event embeds (note/nevent/naddr mentions) via showEventEmbeds: false Chat reply previews now only show text content for cleaner, more focused message context display. Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
Nostr Summary's avatar
nostr-summary 2 weeks ago
[ chebizarro/nostrc ] feat: add live timeline updates with periodic model refresh and dynamic profile loading Implement periodic model refresh (5s interval) to automatically display new events from nostrdb without manual refresh. Add profile change notifications to GnNostrEventItem with signal handlers that show rows when profiles load asynchronously. Update gn_nostr_event_model_update_profile() to propagate profile updates to all event items with matching pubkeys. Increase timeline query limit from 100 to 2000 to match
Nostr Summary's avatar
nostr-summary 2 weeks ago
Nostr Summary's avatar
nostr-summary 2 weeks ago
[ purrgrammer/grimoire ] Fix custom emoji rendering in compact view (#51) Custom emoji were not displaying in compact event previews because DefaultCompactPreview was passing only content string to RichText, which strips emoji tag metadata needed for :shortcode: -> URL mapping. Now passes full event object to preserve emoji tags when rendering content, while still using plain text rendering for specific titles. Fixes emoji display in compact rows and reply previews.