Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions src/content/releases/2025-08-28.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,3 +14,8 @@ public: true
## Improvements

- Data is persisted locally between sessions, speeding startup times

## Tweaks & Improvements (2025-08-31)

- The "Inbox" time window is now "One Month"
- Articles now include the `description` field for items (as a fallback for page content) if the RSS feed has it
2 changes: 1 addition & 1 deletion src/lib/data/views/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ export function useViewsQuery() {
const inboxView: ApplicationView = {
id: INBOX_VIEW_ID,
name: "Inbox",
daysWindow: 7,
daysWindow: 30,
orientation: FEED_ITEM_ORIENTATION.HORIZONTAL,
readStatus: VIEW_READ_STATUS.UNREAD,
placement: INBOX_VIEW_PLACEMENT,
Expand Down
1 change: 1 addition & 0 deletions src/server/db/migrations/0020_misty_cannonball.sql
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
ALTER TABLE `serial_views` RENAME COLUMN "read_status" TO "placement";
1 change: 1 addition & 0 deletions src/server/db/migrations/0021_legal_warbird.sql
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
ALTER TABLE `serial_views` ADD `read_status` integer DEFAULT 0 NOT NULL;
Loading