Bluesky app fork with some witchin' additions 💫

Change defaults to square, add default Bluesky trusted verifiers, & fixes

Fix loading screen background color to a lovely very dark orange instead of blue! Also fixed the ProfileMenu highlight being circular instead of square when active.

xan.lol e72a563d 73515d1a

verified
+27 -13
+4 -4
bskyweb/templates/base.html
··· 61 61 color-scheme: dark; 62 62 --text: white; 63 63 --background: black; 64 - --backgroundLight: #232e3e; 64 + --backgroundLight: #222020; 65 65 } 66 66 } 67 67 html, ··· 87 87 background-color: black; 88 88 --text: white; 89 89 --background: black; 90 - --backgroundLight: #232E3E; 90 + --backgroundLight: #222020; 91 91 } 92 92 html.theme--dim, 93 93 html.theme--dim body, 94 94 html.theme--dim #root { 95 95 color-scheme: dark; 96 - background-color: #151D28; 96 + background-color: #222020; 97 97 --text: white; 98 - --background: #151D28; 98 + --background: #222020; 99 99 --backgroundLight: #2C3A4E; 100 100 } 101 101 #splash {
+9 -3
src/state/persisted/schema.ts
··· 246 246 disableFollowedByMetrics: false, 247 247 disablePostsMetrics: false, 248 248 hideSimilarAccountsRecomm: true, 249 - enableSquareAvatars: false, 250 - enableSquareButtons: false, 249 + enableSquareAvatars: true, 250 + enableSquareButtons: true, 251 251 disableVerifyEmailReminder: false, 252 252 deerVerification: { 253 253 enabled: false, 254 254 // https://witchsky.app/profile/did:plc:p2cp5gopk7mgjegy6wadk3ep/post/3lndyqyyr4k2k 255 - // using https://bverified.vercel.app/ as a source 255 + // using https://bverified.vercel.app/trusted as a source 256 256 trusted: [ 257 257 'did:plc:z72i7hdynmk6r22z27h6tvur', 258 258 'did:plc:b2kutgxqlltwc6lhs724cfwr', ··· 268 268 'did:plc:i3fhjvvkbmirhyu4aeihhrnv', 269 269 'did:plc:fivojrvylkim4nuo3pfqcf3k', 270 270 'did:plc:ofbkqcjzvm6gtwuufsubnkaf', 271 + 'did:plc:xwqgusybtrpm67tcwqdfmzvy', 272 + 'did:plc:oxo226vi7t2btjokm2buusoy', 273 + 'did:plc:r4ve5hjtfjubdwrvlxcad62e', 274 + 'did:plc:j4eroku3volozvv6ljsnnfec', 275 + 'did:plc:6q2thhy2ohzog26mmqm4pffk', 276 + 'did:plc:rk25gdgk3cnnmtkvlae265nz', 271 277 ], 272 278 }, 273 279 highQualityImages: false,
+10 -2
src/view/com/profile/ProfileMenu.tsx
··· 268 268 color="secondary" 269 269 size="small" 270 270 shape={enableSquareButtons ? 'square' : 'round'}> 271 - {statusNudgeActive && <Gradient style={[a.rounded_full]} />} 271 + {statusNudgeActive && ( 272 + <Gradient 273 + style={[ 274 + enableSquareButtons ? a.rounded_sm : a.rounded_full, 275 + ]} 276 + /> 277 + )} 272 278 <ButtonIcon icon={Ellipsis} size="sm" /> 273 279 </Button> 274 280 ··· 324 330 <Trans>Share via bsky.app...</Trans> 325 331 )} 326 332 </Menu.ItemText> 327 - <Menu.ItemIcon icon={IS_WEB ? ChainLinkIcon : ArrowOutOfBoxIcon} /> 333 + <Menu.ItemIcon 334 + icon={IS_WEB ? ChainLinkIcon : ArrowOutOfBoxIcon} 335 + /> 328 336 </Menu.Item> 329 337 <Menu.Item 330 338 testID="profileHeaderDropdownSearchBtn"
+4 -4
web/index.html
··· 68 68 color-scheme: dark; 69 69 --text: white; 70 70 --background: black; 71 - --backgroundLight: #232e3e; 71 + --backgroundLight: #222020; 72 72 } 73 73 } 74 74 html, ··· 94 94 background-color: black; 95 95 --text: white; 96 96 --background: black; 97 - --backgroundLight: #232E3E; 97 + --backgroundLight: #222020; 98 98 } 99 99 html.theme--dim, 100 100 html.theme--dim body, 101 101 html.theme--dim #root { 102 102 color-scheme: dark; 103 - background-color: #151D28; 103 + background-color: #222020; 104 104 --text: white; 105 - --background: #151D28; 105 + --background: #222020; 106 106 --backgroundLight: #2C3A4E; 107 107 } 108 108 #splash {