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
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
## [Unreleased]
### Fixed
- fix crashes on system unlock
- fix custom title for Mini break from command line

## [1.21.0] - 2026-04-25
### Added
Expand Down
2 changes: 1 addition & 1 deletion app/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ if (!gotTheLock) {
log.error('Stretchly: error parsing wait interval to ms because of invalid value')
return
}
if (cmd.options.title) nextIdea = [cmd.options.title]
if (cmd.options.title) nextIdea = cmd.options.title
if (!cmd.options.noskip || delay) skipToMicrobreak(delay)
break
}
Expand Down
Loading