Merge pull request #3801 from RSSNext/sync/main-to-dev-20250525
Sync main branch to dev branch
This commit is contained in:
commit
554b00e82b
|
|
@ -0,0 +1,12 @@
|
|||
# What's New in v0.2.0
|
||||
|
||||
## Shiny new things
|
||||
|
||||
- Video view now displays the video’s total duration (2234b4b)
|
||||
- Added the option to hide private subscriptions in the Timeline: `Settings → General → Subscriptions → Hide Private` (#3773)
|
||||
- Introduced pull-up to next for effortless, continuous reading (#3760)
|
||||
|
||||
## Improvements
|
||||
|
||||
- Discover page now remembers your language preference (43d07e4)
|
||||
- Added compatibility for both `folo` and `follow` URI schemes (4fa171b)
|
||||
|
|
@ -32,7 +32,7 @@
|
|||
<key>CFBundlePackageType</key>
|
||||
<string>$(PRODUCT_BUNDLE_PACKAGE_TYPE)</string>
|
||||
<key>CFBundleShortVersionString</key>
|
||||
<string>0.1.9</string>
|
||||
<string>0.2.0</string>
|
||||
<key>CFBundleSignature</key>
|
||||
<string>????</string>
|
||||
<key>CFBundleURLTypes</key>
|
||||
|
|
@ -52,7 +52,7 @@
|
|||
</dict>
|
||||
</array>
|
||||
<key>CFBundleVersion</key>
|
||||
<string>107</string>
|
||||
<string>108</string>
|
||||
<key>ITSAppUsesNonExemptEncryption</key>
|
||||
<false/>
|
||||
<key>LSApplicationCategoryType</key>
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@follow/mobile",
|
||||
"version": "0.1.9",
|
||||
"version": "0.2.0",
|
||||
"private": true,
|
||||
"main": "src/main.tsx",
|
||||
"scripts": {
|
||||
|
|
|
|||
|
|
@ -48,12 +48,12 @@ export const AISummary: FC<{
|
|||
const measureContent = (event: LayoutChangeEvent) => {
|
||||
setContentHeight(event.nativeEvent.layout.height + 10)
|
||||
height.value = withSpring(event.nativeEvent.layout.height + 10, {
|
||||
damping: 20,
|
||||
dampingRatio: 2,
|
||||
stiffness: 90,
|
||||
mass: 1,
|
||||
overshootClamping: true,
|
||||
restDisplacementThreshold: 0.01,
|
||||
restSpeedThreshold: 0.01,
|
||||
duration: 200,
|
||||
})
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -186,7 +186,7 @@
|
|||
"general.group_by_date.label": "Group by date",
|
||||
"general.hide_all_read_subscriptions.description": "Hide subscriptions without unread entries in the subscription list.",
|
||||
"general.hide_all_read_subscriptions.label": "Hide read",
|
||||
"general.hide_private_subscriptions_in_timeline.description": "Hide private subscriptions in the View Timeline.",
|
||||
"general.hide_private_subscriptions_in_timeline.description": "Hide private subscriptions from your subscriptions list and hide their entries from your timeline (they are always invisible to the public regardless of this setting).",
|
||||
"general.hide_private_subscriptions_in_timeline.label": "Hide private",
|
||||
"general.language": "Language",
|
||||
"general.launch_at_login": "Launch at login",
|
||||
|
|
|
|||
|
|
@ -185,7 +185,7 @@
|
|||
"general.group_by_date.label": "按日期分组",
|
||||
"general.hide_all_read_subscriptions.description": "在订阅列表中隐藏没有未读条目的订阅。",
|
||||
"general.hide_all_read_subscriptions.label": "隐藏已读",
|
||||
"general.hide_private_subscriptions_in_timeline.description": "在视图时间线中隐藏私密订阅。",
|
||||
"general.hide_private_subscriptions_in_timeline.description": "从你的订阅列表中隐藏私密订阅,并从你的时间线上隐藏它们的条目(无论此设置如何,它们对公众始终是不可见的)。",
|
||||
"general.hide_private_subscriptions_in_timeline.label": "隐藏私密",
|
||||
"general.language": "语言",
|
||||
"general.launch_at_login": "开机时启动",
|
||||
|
|
|
|||
Loading…
Reference in New Issue