Skip to content

Commit 74a1be8

Browse files
authored
Merge pull request #142 from karbassi/master
Bump version to 2.1.0
2 parents c114594 + 33cef45 commit 74a1be8

File tree

2 files changed

+21
-3
lines changed

2 files changed

+21
-3
lines changed

CHANGELOG.md

Lines changed: 19 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,23 @@ and this project adheres to [Semantic Versioning](https://semver.org/).
77

88
## [Unreleased]
99

10+
## [2.1.0] - 2026-02-07
11+
12+
### Added
13+
14+
- URL scheme support — e.g. `open "timer://5"`, `open "timer://2:30?window=2"` (#51)
15+
- Launch argument support — e.g. `open -a Timer --args 5 --window 2` (#51)
16+
- AppleScript support with scripting definition — e.g. `tell app "Timer" to start timer "5"` (#105)
17+
- CLI wrapper script (`timer-cli`) with `make install-cli` target (#51)
18+
- Commands: start, stop, reset, pause, new — all with optional window targeting
19+
- Time input formats: `5` (5 min), `2.5` (2m30s fractional), `2:30` (2m30s colon)
20+
- Scroll wheel input for setting timer duration (#140)
21+
- Open/closed hand cursor feedback on arrow control (#139)
22+
23+
### Fixed
24+
25+
- Label colors now use Apple Lead (#191919) instead of pure black for better contrast
26+
1027
## [2.0.0] - 2026-02-07
1128

1229
### Added
@@ -190,7 +207,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/).
190207

191208
- Fixed crash on launch
192209

193-
[Unreleased]: https://github.com/michaelvillar/timer-app/compare/2.0.0...HEAD
210+
[Unreleased]: https://github.com/michaelvillar/timer-app/compare/2.1.0...HEAD
211+
[2.1.0]: https://github.com/michaelvillar/timer-app/compare/2.0.0...2.1.0
194212
[2.0.0]: https://github.com/michaelvillar/timer-app/compare/1.6.0...2.0.0
195213
[1.6.0]: https://github.com/michaelvillar/timer-app/compare/1.5.5...1.6.0
196214
[1.5.5]: https://github.com/michaelvillar/timer-app/compare/1.5.4...1.5.5

Timer.xcodeproj/project.pbxproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -503,7 +503,7 @@
503503
INFOPLIST_FILE = Timer/Info.plist;
504504
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/../Frameworks";
505505
MACOSX_DEPLOYMENT_TARGET = 14.0;
506-
MARKETING_VERSION = 1.6.0;
506+
MARKETING_VERSION = 2.1.0;
507507
PRODUCT_BUNDLE_IDENTIFIER = com.michaelvillar.Timer;
508508
PRODUCT_NAME = "$(TARGET_NAME)";
509509
SWIFT_VERSION = 6;
@@ -520,7 +520,7 @@
520520
INFOPLIST_FILE = Timer/Info.plist;
521521
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/../Frameworks";
522522
MACOSX_DEPLOYMENT_TARGET = 14.0;
523-
MARKETING_VERSION = 1.6.0;
523+
MARKETING_VERSION = 2.1.0;
524524
PRODUCT_BUNDLE_IDENTIFIER = com.michaelvillar.Timer;
525525
PRODUCT_NAME = "$(TARGET_NAME)";
526526
SWIFT_VERSION = 6;

0 commit comments

Comments
 (0)