Bluesky app fork with some witchin' additions 💫
0
fork

Configure Feed

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

A couple more android updates

+7 -2
+3 -1
src/state/index.ts
··· 1 1 import {autorun} from 'mobx' 2 + import {Platform} from 'react-native' 2 3 import {sessionClient as AtpApi} from '../third-party/api' 3 4 import type {SessionServiceClient} from '../third-party/api/src/index' 4 5 import {RootStoreModel} from './models/root-store' 5 6 import * as libapi from './lib/api' 6 7 import * as storage from './lib/storage' 7 8 8 - export const LOCAL_DEV_SERVICE = 'http://localhost:2583' 9 + export const LOCAL_DEV_SERVICE = 10 + Platform.OS === 'ios' ? 'http://localhost:2583' : 'http://10.0.2.2:2583' 9 11 export const STAGING_SERVICE = 'https://pds.staging.bsky.dev' 10 12 export const PROD_SERVICE = 'https://bsky.social' 11 13 export const DEFAULT_SERVICE = PROD_SERVICE
+3 -1
src/view/com/notifications/FeedItem.tsx
··· 166 166 style={styles.metaItem} 167 167 href={authors[0].href} 168 168 title={`@${authors[0].handle}`}> 169 - <Text style={[s.f15, s.bold]}> 169 + <Text style={[s.f15, s.bold, s.black]}> 170 170 {authors[0].displayName || authors[0].handle} 171 171 </Text> 172 172 </Link> ··· 265 265 }, 266 266 metaItem: { 267 267 paddingRight: 3, 268 + color: colors.black, 268 269 }, 269 270 postText: { 270 271 paddingBottom: 5, 272 + color: colors.black, 271 273 }, 272 274 273 275 addedContainer: {
+1
src/view/com/post/Post.tsx
··· 229 229 fontFamily: 'System', 230 230 fontSize: 16, 231 231 lineHeight: 20.8, // 1.3 of 16px 232 + color: colors.black, 232 233 }, 233 234 replyLine: { 234 235 position: 'absolute',