From a1f6166eb5da85e99c236c5b47e72cd516f17390 Mon Sep 17 00:00:00 2001 From: mARTin Date: Thu, 19 Mar 2026 10:14:08 +0100 Subject: [PATCH] fix: replace 2h timeslot with 20min option Timeslot options are now 15min (4/hr), 20min (3/hr), 30min (2/hr), and 1h (1/hr). Removed the 2h option which didn't make sense. v1.51.5 Co-Authored-By: Claude Opus 4.6 --- package.json | 2 +- src/components/WeeklyView.tsx | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/package.json b/package.json index 266c2b7..5a43464 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "my-weekly-todo-list", - "version": "1.51.4", + "version": "1.51.5", "description": "A web-based weekly task management application that organizes to-dos and calendar events in a single, intuitive weekly view", "main": "index.js", "scripts": { diff --git a/src/components/WeeklyView.tsx b/src/components/WeeklyView.tsx index a8c8294..2e8cf4a 100644 --- a/src/components/WeeklyView.tsx +++ b/src/components/WeeklyView.tsx @@ -177,7 +177,7 @@ interface SomedayList { } // Time grid configuration options -type CellDuration = 15 | 30 | 60 | 120; +type CellDuration = 15 | 20 | 30 | 60; const DEFAULT_SOMEDAY_SLOT_COUNT = 5; const getSomedaySlotCount = (tasks: Task[]) => { @@ -11032,9 +11032,9 @@ function SettingsSidebar({ style={{ width: "100%", padding: "8px", border: "1px solid #ddd", borderRadius: "4px" }} > + -