diff --git a/CHANGELOG.md b/CHANGELOG.md index e8dff67..6b5e813 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,9 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html). ## [Unreleased] +### Added +- 1 new program + 1. `coffee-break` ## [1.9] - 2024-12-18 ### Added - 5 new tones diff --git a/PROGRAMS.md b/PROGRAMS.md index 7c228a9..7fcbb62 100644 --- a/PROGRAMS.md +++ b/PROGRAMS.md @@ -1,6 +1,6 @@ # Programs List -**Last Update: 2024-12-06** +**Last Update: 2025-01-06** ⚠️ By default, the **alarm** is **active** for all programs @@ -137,6 +137,12 @@ 00:05:00 >=0.9 + + Coffee break + coffee-break + 00:10:00 + >=2.0 + Medium break mid-break diff --git a/mytimer/params.py b/mytimer/params.py index 5c29189..ef39ea1 100644 --- a/mytimer/params.py +++ b/mytimer/params.py @@ -265,6 +265,12 @@ "second": 0, "message": "Short break (5 mins)", }, + "coffee-break": { + "hour": 0, + "minute": 10, + "second": 0, + "message": "Coffee break (10 mins)", + }, "mid-break": { "hour": 0, "minute": 15,