diff --git a/apps/mobile/changelog/0.1.9.md b/apps/mobile/changelog/0.1.9.md new file mode 100644 index 000000000..38fafa4bd --- /dev/null +++ b/apps/mobile/changelog/0.1.9.md @@ -0,0 +1,20 @@ +# What's New in v0.1.9 + +## Shiny new things + +- New option: hide subscriptions that have no unread entries. Enable it via Settings → General → Subscriptions/Hide Read. (1b88d72) +- Trending Feeds now appear on the Discover page and during onboarding. (fc7b37d) + +## Improvements + +- Clearer error messages for RSSHub feed issues. (ed95fb6b) +- AI summary is now enabled by default. (f329ae9) +- Displays a fallback icon if a feed icon fails to load. (93f19c4) +- Streamlined login and sign-up flow. (e392e59) + +## No longer broken + +- Tapping the avatar now navigates correctly. (5a9af9f) +- Entries without images now display properly in the video view. (4119b9a) +- Fixed an issue where some feeds didn’t appear in search results. (74f7d52) +- Unread indicators now show correctly in both image and video views. (2244dc7) diff --git a/apps/mobile/ios/Folo/Info.plist b/apps/mobile/ios/Folo/Info.plist index 8e687f617..e11a8961e 100644 --- a/apps/mobile/ios/Folo/Info.plist +++ b/apps/mobile/ios/Folo/Info.plist @@ -32,7 +32,7 @@ CFBundlePackageType $(PRODUCT_BUNDLE_PACKAGE_TYPE) CFBundleShortVersionString - 0.1.8 + 0.1.9 CFBundleSignature ???? CFBundleURLTypes @@ -52,7 +52,7 @@ CFBundleVersion - 106 + 107 ITSAppUsesNonExemptEncryption LSApplicationCategoryType diff --git a/apps/mobile/package.json b/apps/mobile/package.json index 60e5a91f0..269304e8b 100644 --- a/apps/mobile/package.json +++ b/apps/mobile/package.json @@ -1,6 +1,6 @@ { "name": "@follow/mobile", - "version": "0.1.8", + "version": "0.1.9", "private": true, "main": "src/main.tsx", "scripts": { diff --git a/apps/mobile/src/modules/discover/DiscoverContent.tsx b/apps/mobile/src/modules/discover/DiscoverContent.tsx index b9d227bae..8dfdd47fd 100644 --- a/apps/mobile/src/modules/discover/DiscoverContent.tsx +++ b/apps/mobile/src/modules/discover/DiscoverContent.tsx @@ -28,7 +28,7 @@ export function DiscoverContent() { */} - + diff --git a/apps/mobile/src/modules/discover/FeedSummary.tsx b/apps/mobile/src/modules/discover/FeedSummary.tsx index 19435be16..5ba59ca97 100644 --- a/apps/mobile/src/modules/discover/FeedSummary.tsx +++ b/apps/mobile/src/modules/discover/FeedSummary.tsx @@ -50,7 +50,7 @@ export const FeedSummary = ({ > {preChildren} {/* Headline */} - + - + {item.feed?.title} {item.feed?.url} diff --git a/apps/mobile/src/modules/discover/Trending.tsx b/apps/mobile/src/modules/discover/Trending.tsx index 8f3968e55..27a449f53 100644 --- a/apps/mobile/src/modules/discover/Trending.tsx +++ b/apps/mobile/src/modules/discover/Trending.tsx @@ -8,7 +8,13 @@ import { PlatformActivityIndicator } from "@/src/components/ui/loading/PlatformA import { fetchFeedTrending } from "./api" import { FeedSummary } from "./FeedSummary" -export const Trending = ({ className }: { className?: string }) => { +export const Trending = ({ + className, + itemClassName, +}: { + className?: string + itemClassName?: string +}) => { const { i18n } = useTranslation() const { data, isLoading } = useQuery({ queryKey: ["trending", "feeds"], @@ -30,7 +36,7 @@ export const Trending = ({ className }: { className?: string }) => {