Bluesky app fork with some witchin' additions 💫

remove new line in appearance settings & replace Help with Code

also put a space between RedDwarf

xan.lol e48f8a77 492603d5

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