Made long break longer

This commit is contained in:
Silas Bartha 2023-11-13 12:05:32 -05:00
parent 4ca2b6e5e7
commit 7733a7d394
2 changed files with 2 additions and 2 deletions

View File

@ -1,6 +1,6 @@
[package] [package]
name = "pomd" name = "pomd"
version = "1.1.0" version = "1.1.1"
edition = "2021" edition = "2021"
[dependencies] [dependencies]

View File

@ -10,7 +10,7 @@ use notify_rust::Notification;
const WORK_DURATION_SECS: f32 = 15.0 * 60.0; const WORK_DURATION_SECS: f32 = 15.0 * 60.0;
const SHORT_BREAK_DURATION_SECS: f32 = 5.0 * 60.0; const SHORT_BREAK_DURATION_SECS: f32 = 5.0 * 60.0;
const LONG_BREAK_DURATION_SECS: f32 = 15.0 * 60.0; const LONG_BREAK_DURATION_SECS: f32 = 25.0 * 60.0;
const NUM_ITERATIONS: u8 = 4; const NUM_ITERATIONS: u8 = 4;
struct Pomd { struct Pomd {