Skip to content

Commit ac1daa9

Browse files
committed
Remove description field from flow timer setup, 1.7.8
- Simplify flow timer setup form by removing description field - Faster task entry with fewer fields to fill - Update version to 1.7.8
1 parent 85485ee commit ac1daa9

4 files changed

Lines changed: 8 additions & 9 deletions

File tree

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
## 1.7.8 (2025-09-16)
2+
3+
### Changed
4+
- Remove description field from flow timer setup form for simpler, faster task entry
5+
16
## 1.7.7 (2025-09-16)
27

38
### Fixed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
<a href="https://goreportcard.com/report/github.com/ronilaukkarinen/focus"><img src="https://goreportcard.com/badge/github.com/ronilaukkarinen/focus" alt="GoReportCard"></a>
99
<a href="https://github.com/ronilaukkarinen/focus"><img src="https://img.shields.io/badge/go-1.24-blue.svg" alt="Go version"></a>
1010
<a href="https://github.com/ronilaukkarinen/focus/blob/master/LICENCE"><img src="https://img.shields.io/github/license/ronilaukkarinen/focus.svg" alt="LICENCE"></a>
11-
<a href="https://github.com/ronilaukkarinen/focus/releases/"><img src="https://img.shields.io/badge/version-1.7.7-blue.svg" alt="Latest release"></a>
11+
<a href="https://github.com/ronilaukkarinen/focus/releases/"><img src="https://img.shields.io/badge/version-1.7.8-blue.svg" alt="Latest release"></a>
1212
</p>
1313

1414
<h1 align="center">Focus on your task - with flow timer!</h1>

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@ronilaukkarinen/focus",
3-
"version": "1.7.7",
3+
"version": "1.7.8",
44
"description": "Focus is a flexible command-line productivity timer with flow mode for uninterrupted work sessions",
55
"main": "",
66
"repository": "https://github.com/ronilaukkarinen/focus",

timer/timer.go

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -355,15 +355,9 @@ func (t *Timer) promptFlowModeInfo() tea.Cmd {
355355
Placeholder("What are you working on?").
356356
CharLimit(200)) // Allow longer task names
357357

358-
// Add task description (optional)
358+
// Description field removed - can be enabled in future if needed
359359
// Reset description to empty for each new flow session
360360
t.taskDescription = ""
361-
fields = append(fields, huh.NewInput().
362-
Key("taskDescription").
363-
Title("Description").
364-
Value(&t.taskDescription).
365-
Placeholder("Optional details...").
366-
CharLimit(500))
367361

368362
// Add tag selection if pre-defined tags are available
369363
if len(t.Opts.Settings.PreDefinedTags) > 0 {

0 commit comments

Comments
 (0)