From 19a1573987ee41660c9686416ac38a7924a8d964 Mon Sep 17 00:00:00 2001 From: DIYgod Date: Fri, 16 May 2025 13:28:03 +0800 Subject: [PATCH 1/5] release(mobile): release v0.1.9 --- apps/mobile/changelog/0.1.9.md | 7 +++++++ apps/mobile/package.json | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) create mode 100644 apps/mobile/changelog/0.1.9.md diff --git a/apps/mobile/changelog/0.1.9.md b/apps/mobile/changelog/0.1.9.md new file mode 100644 index 000000000..d5c2968c2 --- /dev/null +++ b/apps/mobile/changelog/0.1.9.md @@ -0,0 +1,7 @@ +# What's New in v0.1.9 + +## Shiny new things + +## Improvements + +## No longer broken 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": { From 1466c04ad9dca80c1bb3dd2fe12e21c58afbba4c Mon Sep 17 00:00:00 2001 From: DIYgod Date: Fri, 16 May 2025 13:29:46 +0800 Subject: [PATCH 2/5] chore(mobile): update version --- apps/mobile/ios/Folo/Info.plist | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 From 20b508bd5aafcbb42d2320bf68ce58676e3a1139 Mon Sep 17 00:00:00 2001 From: DIYgod Date: Fri, 16 May 2025 17:43:28 +0800 Subject: [PATCH 3/5] docs(mobile): update changelog --- apps/mobile/changelog/0.1.9.md | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/apps/mobile/changelog/0.1.9.md b/apps/mobile/changelog/0.1.9.md index d5c2968c2..38fafa4bd 100644 --- a/apps/mobile/changelog/0.1.9.md +++ b/apps/mobile/changelog/0.1.9.md @@ -2,6 +2,19 @@ ## 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) From 221ab11b324b69a69f42b2846b4cc1f3db0c1876 Mon Sep 17 00:00:00 2001 From: DIYgod Date: Fri, 16 May 2025 18:19:11 +0800 Subject: [PATCH 4/5] fix(mobile): trending title overflow --- apps/mobile/src/modules/discover/DiscoverContent.tsx | 2 +- apps/mobile/src/modules/discover/FeedSummary.tsx | 8 ++------ apps/mobile/src/modules/discover/Trending.tsx | 2 +- 3 files changed, 4 insertions(+), 8 deletions(-) diff --git a/apps/mobile/src/modules/discover/DiscoverContent.tsx b/apps/mobile/src/modules/discover/DiscoverContent.tsx index b9d227bae..b065c0a2f 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..c28757590 100644 --- a/apps/mobile/src/modules/discover/Trending.tsx +++ b/apps/mobile/src/modules/discover/Trending.tsx @@ -30,7 +30,7 @@ export const Trending = ({ className }: { className?: string }) => { Date: Fri, 16 May 2025 18:51:19 +0800 Subject: [PATCH 5/5] fix(mobile): trending item press area --- apps/mobile/src/modules/discover/DiscoverContent.tsx | 2 +- apps/mobile/src/modules/discover/Trending.tsx | 10 ++++++++-- 2 files changed, 9 insertions(+), 3 deletions(-) diff --git a/apps/mobile/src/modules/discover/DiscoverContent.tsx b/apps/mobile/src/modules/discover/DiscoverContent.tsx index b065c0a2f..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/Trending.tsx b/apps/mobile/src/modules/discover/Trending.tsx index c28757590..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 }) => {