From 3673849a9a5af2ce9499ae5c6f80aaee1acdba41 Mon Sep 17 00:00:00 2001 From: Gigi Date: Mon, 20 Oct 2025 20:40:17 +0200 Subject: [PATCH] feat: enable media display options by default - Set fullWidthImages default to true - Set renderVideoLinksAsEmbeds default to true - Users now get enhanced media experience out of the box - Can still be disabled in settings if preferred --- src/components/Settings.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/Settings.tsx b/src/components/Settings.tsx index 92304ab2..b6e3f594 100644 --- a/src/components/Settings.tsx +++ b/src/components/Settings.tsx @@ -40,8 +40,8 @@ const DEFAULT_SETTINGS: UserSettings = { useLocalRelayAsCache: true, rebroadcastToAllRelays: false, paragraphAlignment: 'justify', - fullWidthImages: false, - renderVideoLinksAsEmbeds: false, + fullWidthImages: true, + renderVideoLinksAsEmbeds: true, syncReadingPosition: true, autoMarkAsReadOnCompletion: false, hideBookmarksWithoutCreationDate: true,