diff --git a/CHANGELOG b/CHANGELOG index 45613a3..4572d2f 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [0.2.1] - 2023-08-12 + +### Added + +- Using work-break icon (if exists in system, Linux/BSD) + ## [0.2.0] - 2023-07-23 ### Added diff --git a/Cargo.lock b/Cargo.lock index 84a6478..efe16b8 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1663,7 +1663,7 @@ dependencies = [ [[package]] name = "work-break" -version = "0.2.0" +version = "0.2.1" dependencies = [ "chrono", "clap", diff --git a/Cargo.toml b/Cargo.toml index 879349a..71d624b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,11 +1,12 @@ [package] name = "work-break" -version = "0.2.0" +version = "0.2.1" edition = "2021" description = "Work-break balancer for Windows / MacOS / Linux desktops" license = "MIT" authors = ["Sergei Shadoy "] repository = "https://github.com/ShadoySV/work-break" +keywords = ["productivity", "app", "cross-platform", "time-tracker"] build = "build.rs" diff --git a/README.md b/README.md index 0ddc0fd..0dd3faa 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,3 @@ -# Work-break balancer for Windows / MacOS / Linux desktops - ![work-break](screenshot.png) ## Introduction diff --git a/src/app.rs b/src/app.rs index 114ec2a..a486b6a 100644 --- a/src/app.rs +++ b/src/app.rs @@ -174,7 +174,10 @@ impl App { if notify_anyway || notify_on_threshold { let mut notification = Notification::new(); - notification.summary("Work-break balancer").body(&status); + notification + .summary("Work-break balancer") + .auto_icon() + .body(&status); #[cfg(not(any(target_os = "windows", target_os = "macos")))] notification.urgency(urgency);