Bluesky app fork with some witchin' additions 💫 witchsky.app
bluesky fork client

remove new line in appearance settings & replace Help with Code

also put a space between RedDwarf

xan.lol e48f8a77 492603d5

verified
+9 -11
+1 -1
src/lib/constants.ts
··· 11 export const BSKY_SERVICE_DID = 'did:web:bsky.social' 12 export const PUBLIC_BSKY_SERVICE = 'https://public.api.bsky.app' 13 export const DEFAULT_SERVICE = BSKY_SERVICE 14 - export const HELP_DESK_URL = `https://tangled.org/jollywhoppers.com/witchsky.app/issues/new` 15 export const EMBED_SERVICE = 'https://embed.bsky.app' 16 export const EMBED_SCRIPT = `${EMBED_SERVICE}/static/embed.js` 17 export const BSKY_DOWNLOAD_URL = 'https://bsky.app/download'
··· 11 export const BSKY_SERVICE_DID = 'did:web:bsky.social' 12 export const PUBLIC_BSKY_SERVICE = 'https://public.api.bsky.app' 13 export const DEFAULT_SERVICE = BSKY_SERVICE 14 + export const HELP_DESK_URL = `https://tangled.org/jollywhoppers.com/witchsky.app/` 15 export const EMBED_SERVICE = 'https://embed.bsky.app' 16 export const EMBED_SCRIPT = `${EMBED_SERVICE}/static/embed.js` 17 export const BSKY_DOWNLOAD_URL = 'https://bsky.app/download'
+1 -3
src/screens/Settings/AppearanceSettings.tsx
··· 112 {name: 'deer', label: _(msg`Deer`)}, 113 {name: 'zeppelin', label: _(msg`Zeppelin`)}, 114 {name: 'kitty', label: _(msg`Kitty`)}, 115 - {name: 'reddwarf', label: _(msg`RedDwarf`)}, 116 ] 117 118 return ( ··· 277 <Toggle.Platform /> 278 </Toggle.Item> 279 </SettingsList.Group> 280 - 281 - <SettingsList.Divider /> 282 283 <SettingsList.Group contentContainerStyle={[a.gap_sm]}> 284 <SettingsList.ItemIcon icon={SquareIcon} />
··· 112 {name: 'deer', label: _(msg`Deer`)}, 113 {name: 'zeppelin', label: _(msg`Zeppelin`)}, 114 {name: 'kitty', label: _(msg`Kitty`)}, 115 + {name: 'reddwarf', label: _(msg`Red Dwarf`)}, 116 ] 117 118 return ( ··· 277 <Toggle.Platform /> 278 </Toggle.Item> 279 </SettingsList.Group> 280 281 <SettingsList.Group contentContainerStyle={[a.gap_sm]}> 282 <SettingsList.ItemIcon icon={SquareIcon} />
+3 -3
src/screens/Settings/Settings.tsx
··· 241 </SettingsList.LinkItem> 242 <SettingsList.PressableItem 243 onPress={() => Linking.openURL(HELP_DESK_URL)} 244 - label={_(msg`Help`)} 245 - accessibilityHint={_(msg`Opens helpdesk in browser`)}> 246 <SettingsList.ItemIcon icon={CircleQuestionIcon} /> 247 <SettingsList.ItemText> 248 - <Trans>Help</Trans> 249 </SettingsList.ItemText> 250 <SettingsList.Chevron /> 251 </SettingsList.PressableItem>
··· 241 </SettingsList.LinkItem> 242 <SettingsList.PressableItem 243 onPress={() => Linking.openURL(HELP_DESK_URL)} 244 + label={_(msg`Code`)} 245 + accessibilityHint={_(msg`Opens code repository in browser`)}> 246 <SettingsList.ItemIcon icon={CircleQuestionIcon} /> 247 <SettingsList.ItemText> 248 + <Trans>Source code</Trans> 249 </SettingsList.ItemText> 250 <SettingsList.Chevron /> 251 </SettingsList.PressableItem>
+2 -2
src/view/shell/Drawer.tsx
··· 387 </ButtonText> 388 </Button> 389 <Button 390 - label={_(msg`Get help`)} 391 size="small" 392 variant="outline" 393 color="secondary" ··· 396 backgroundColor: 'transparent', 397 }}> 398 <ButtonText> 399 - <Trans>Help</Trans> 400 </ButtonText> 401 </Button> 402 </View>
··· 387 </ButtonText> 388 </Button> 389 <Button 390 + label={_(msg`Visit code repository`)} 391 size="small" 392 variant="outline" 393 color="secondary" ··· 396 backgroundColor: 'transparent', 397 }}> 398 <ButtonText> 399 + <Trans>Code</Trans> 400 </ButtonText> 401 </Button> 402 </View>
+2 -2
src/view/shell/desktop/RightNav.tsx
··· 120 {_(msg`Terms`)} 121 </InlineLinkText> 122 {' • '} 123 - <InlineLinkText label={_(msg`Help`)} to={HELP_DESK_URL}> 124 - {_(msg`Help`)} 125 </InlineLinkText> 126 </Text> 127
··· 120 {_(msg`Terms`)} 121 </InlineLinkText> 122 {' • '} 123 + <InlineLinkText label={_(msg`Code`)} to={HELP_DESK_URL}> 124 + {_(msg`Code`)} 125 </InlineLinkText> 126 </Text> 127