diff --git a/apps/desktop/changelog/0.6.3.md b/apps/desktop/changelog/0.6.3.md new file mode 100644 index 000000000..2d56fa02f --- /dev/null +++ b/apps/desktop/changelog/0.6.3.md @@ -0,0 +1,33 @@ +# What's new in v0.6.3 + +## Shiny new things + +- Hide From Timeline option for subscriptions to make your timeline cleaner. +- BitTorrent attachment support and qBittorrent integration. + +## Improvements + +- Clearer loading indicators for both the entry list and the subscription list (e81220d) +- The hyperlink in the article preview has been added with an emphasis color. (db67ec8) +- Search results now persist across navigation. +- Sort feed by subscription count or update per week in feed management. +- Notification support for inbox. + +## No longer broken + +- Fresh entries are no longer incorrectly auto‑marked as read after a list refresh. (d3d1e05) +- Fixed the timing of masonry column width calculations to avoid layout glitches. (17389d9) +- Removed placeholders in the picture waterfall view to prevent incorrectly layout redraws. (3c4b152) +- Corrected initial height calculation for items in the picture waterfall view. (82a3537) +- Fixed the Microsoft Store build not being recognized by deep links. (943ef31) +- Right-click context menu shortcut can't trigger the context menu. (b44bf71) +- Text in the social media view is now selectable. +- Translation settings can not be toggled. +- Fixed can not mark read/unread for starred entries. +- Feeds with invalid site URLs being hidden in the feed list. +- List with unread entries being hidden when Hide Read option is enabled. +- Inbox can not receive text only emails like Gmail Forward verification. + +## Thanks + +Special thanks to volunteer contributors @kovsu, @cscnk52, @yansq, @hellosunghyun for their valuable contributions diff --git a/apps/desktop/layer/renderer/src/pages/settings/(settings)/ai.tsx b/apps/desktop/layer/renderer/src/pages/settings/(settings)/ai.tsx index db2f69524..abcb4d559 100644 --- a/apps/desktop/layer/renderer/src/pages/settings/(settings)/ai.tsx +++ b/apps/desktop/layer/renderer/src/pages/settings/(settings)/ai.tsx @@ -9,6 +9,7 @@ export const loader = defineSettingPageData({ icon: iconName, name: "titles.ai", priority, + hideIf: (_ctx, serverConfigs) => !serverConfigs?.AI_CHAT_ENABLED, }) export function Component() { diff --git a/apps/desktop/package.json b/apps/desktop/package.json index 579d5a5c4..a49d604ec 100644 --- a/apps/desktop/package.json +++ b/apps/desktop/package.json @@ -1,7 +1,7 @@ { "name": "Folo", "type": "module", - "version": "0.6.2", + "version": "0.6.3", "private": true, "description": "Follow everything in one place", "author": "Folo Team", @@ -89,5 +89,5 @@ "vite-tsconfig-paths": "5.1.4" }, "productName": "Folo", - "mainHash": "5cd744fea8ca1ae20151247894f9913545e7d307f8a0f324a5fb299a0432de4e" + "mainHash": "7247ff064ca9ecceac8fbc3da936ff92a4d3470aff141f0f8e0a00b67812d123" }