Skip to content

Commit

Permalink
Release v0.2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
ShadoySV committed Aug 12, 2023
1 parent d157952 commit 21a1e6a
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 5 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 2 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -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 <shadoysv@gmail.com>"]
repository = "https://github.com/ShadoySV/work-break"
keywords = ["productivity", "app", "cross-platform", "time-tracker"]

build = "build.rs"

Expand Down
2 changes: 0 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
# Work-break balancer for Windows / MacOS / Linux desktops

![work-break](screenshot.png)

## Introduction
Expand Down
5 changes: 4 additions & 1 deletion src/app.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down

0 comments on commit 21a1e6a

Please sign in to comment.