Bluesky app fork with some witchin' additions 💫
0
fork

Configure Feed

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

youtube iframe embed support

commit d0be1a371cf7eb9c44258a61a5eb67d00b17944c
Author: Aviva Ruben <aviva@rubenfamily.com>
Date: Mon Apr 14 11:35:04 2025 -0500

copy web iframes and use deer social for iframe hosting

+5 -2
+3
pages_build.sh
··· 6 6 # build system outputs some srcs and hrefs like src="static/" 7 7 # need to rewrite to be src="/static/" to handle non root pages 8 8 sed -i 's/\(src\|href\)="static/\1="\/static/g' web-build/index.html 9 + 10 + # we need to copy the static iframe html to support youtube embeds 11 + cp -r bskyweb/static/iframe/ web-build/iframe
+2 -2
src/lib/strings/embed-player.ts
··· 9 9 ? // @ts-ignore only for web 10 10 window.location.host === 'localhost:8100' 11 11 ? 'http://localhost:8100' 12 - : 'https://bsky.app' 12 + : 'https://deer.social' 13 13 : __DEV__ && !process.env.JEST_WORKER_ID 14 14 ? 'http://localhost:8100' 15 - : 'https://bsky.app' 15 + : 'https://deer.social' 16 16 17 17 export const embedPlayerSources = [ 18 18 'youtube',