Bluesky app fork with some witchin' additions 💫

match web version exports (#4257)

authored by samuel.fm and committed by

GitHub 33de856c 613884a3

+8 -10
+2
src/lib/app-info.web.ts
··· 1 import {version} from '../../package.json' 2 3 export const IS_DEV = process.env.EXPO_PUBLIC_ENV === 'development' 4 5 // This is the commit hash that the current bundle was made from. The user can see the commit hash in the app's settings 6 // along with the other version info. Useful for debugging/reporting.
··· 1 import {version} from '../../package.json' 2 3 + export const BUILD_ENV = process.env.EXPO_PUBLIC_ENV 4 export const IS_DEV = process.env.EXPO_PUBLIC_ENV === 'development' 5 + export const IS_TESTFLIGHT = false 6 7 // This is the commit hash that the current bundle was made from. The user can see the commit hash in the app's settings 8 // along with the other version info. Useful for debugging/reporting.
+4
src/lib/media/manip.web.ts
··· 159 a.download = filename 160 a.click() 161 }
··· 159 a.download = filename 160 a.click() 161 } 162 + 163 + export async function safeDeleteAsync() { 164 + // no-op 165 + }
+2 -10
src/view/com/util/images/Image.web.tsx
··· 1 - import { 2 - Image, 3 - NativeSyntheticEvent, 4 - ImageLoadEventData, 5 - ImageSourcePropType, 6 - } from 'react-native' 7 - export default Image 8 export const HighPriorityImage = Image 9 - export type OnLoadEvent = NativeSyntheticEvent<ImageLoadEventData> 10 - export type Source = ImageSourcePropType 11 - export type {ImageStyle} from 'react-native'
··· 1 + import {Image} from 'react-native' 2 + 3 export const HighPriorityImage = Image