Skip to content

Commit 7f1e9c9

Browse files
authored
Merge pull request #4643 from RSSNext/sync/main-to-dev-20251101
Sync main branch to dev branch
2 parents 5aed1af + 8187784 commit 7f1e9c9

File tree

4 files changed

+23
-5
lines changed

4 files changed

+23
-5
lines changed

apps/desktop/changelog/1.0.0.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
# What's new in v1.0.0
2+
3+
## Shiny new things
4+
5+
- 🌟 **Folo is now the AI Reader** — a smarter way to follow everything.
6+
7+
## Improvements
8+
9+
- Added support for multilingual `params` in YouTube video previews (#4610)
10+
- Redirects now go to your configured first view instead of always defaulting to All (a82b0e9)
11+
12+
## No longer broken
13+
14+
- Fixed the hover indicator style on the audio player progress bar (#4600)
15+
- Fixed video autoplay in media previews (#4531)
16+
17+
## Thanks
18+
19+
Special thanks to volunteer contributors @yeeway0609 @kovsu @unixzii for their valuable contributions

apps/desktop/layer/renderer/src/modules/ai-chat/components/3d-models/AISplineLoader.tsx

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,7 @@ import { clamp, cn } from "@follow/utils"
22
import Spline from "@splinetool/react-spline"
33
import { useCallback, useRef } from "react"
44

5-
// TODO: use folo cdn
6-
const resolvedAIIconUrl = "https://prod.spline.design/n2hjp93nWReC-512/scene.splinecode"
5+
const resolvedAIIconUrl = "https://cdn.follow.is/ai2.splinecode"
76

87
export const AISplineLoader = ({ className }: { className?: string }) => {
98
const containerRef = useRef<HTMLDivElement>(null)

apps/desktop/layer/renderer/src/modules/shared/ViewSelectorRadioGroup.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ export const ViewSelectorRadioGroup = ({
4242

4343
return (
4444
<Card className={rest.disabled ? "pointer-events-none" : void 0}>
45-
<CardHeader className={cn("grid grid-cols-6 space-y-0 px-2 py-3", className)}>
45+
<CardHeader className={cn("flex flex-row justify-around space-y-0 px-2 py-3", className)}>
4646
{configuredViews.map((view) => (
4747
<div key={view.name}>
4848
<input

apps/desktop/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "Folo",
33
"type": "module",
4-
"version": "0.9.0",
4+
"version": "1.0.0",
55
"private": true,
66
"description": "Follow everything in one place",
77
"author": "Folo Team",
@@ -87,5 +87,5 @@
8787
"vite-tsconfig-paths": "5.1.4"
8888
},
8989
"productName": "Folo",
90-
"mainHash": "823542ad4a3ce980cca614cb0cb5c928d00a3f44e955ffa162e9ddf071a0dfb0"
90+
"mainHash": "f1dfc9d28134209d9561f5da2f735250b7c20d9e9759d0f7bc982b0790ad89f5"
9191
}

0 commit comments

Comments
 (0)