Skip to content

Commit

Permalink
fix: focus notification time (#126)
Browse files Browse the repository at this point in the history
* fix: focus notification time

* chore: update to 0.2.2
  • Loading branch information
vjousse authored Oct 16, 2024
1 parent 3d4df94 commit cde0bb7
Show file tree
Hide file tree
Showing 10 changed files with 22 additions and 9 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,23 @@

All notable changes to this project will be documented in this file.

## [[app-v0.2.2](https://github.com/vjousse/pomodorolm/releases/tag/app-v0.2.2)] - 2024-10-16

### 🐛 Bug Fixes

- Focus notification time

## [[app-v0.2.1](https://github.com/vjousse/pomodorolm/releases/tag/app-v0.2.1)] - 2024-09-29

### 🐛 Bug Fixes

- Load themes and config synchronously ([#110](https://github.com/vjousse/pomodorolm/issues/110))
- Aur sha computation

### ⚙️ Miscellaneous Tasks

- Bump version to 0.2.1

## [[app-v0.2.0](https://github.com/vjousse/pomodorolm/releases/tag/app-v0.2.0)] - 2024-09-27

### 🚀 Features
Expand Down
2 changes: 1 addition & 1 deletion aur/PKGBUILD
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Maintainer: Vincent Jousse <[email protected]> - https://vincent.jousse.org
pkgname=pomodorolm-bin
pkgver=0.2.1
pkgver=0.2.2
pkgrel=1
pkgdesc="Multi-platform pomodoro tracker with a nice looking UI, inspired by Pomotroid"
arch=('x86_64')
Expand Down
3 changes: 3 additions & 0 deletions org.jousse.vincent.Pomodorolm.metainfo.xml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,9 @@
</screenshots>
<content_rating type="oars-1.1" />
<releases>
<release version="0.2.2" date="2024-10-16">
<url type="details">https://github.com/vjousse/pomodorolm/releases/tag/app-v0.2.2</url>
</release>
<release version="0.2.1" date="2024-09-29">
<url type="details">https://github.com/vjousse/pomodorolm/releases/tag/app-v0.2.1</url>
</release>
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

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

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "pomodorolm",
"private": true,
"version": "0.2.1",
"version": "0.2.2",
"type": "module",
"scripts": {
"dev": "vite",
Expand Down
2 changes: 1 addition & 1 deletion snapcraft.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ platforms:
amd64:
arm64:

version: "0.2.1"
version: "0.2.2"
summary: A simple, good looking and multi-platform pomodoro tracker
description: |
Pomodorolm is a simple and configurable Pomodoro timer. It aims to provide a visually-pleasing and reliable way to track productivity using the Pomodoro Technique.
Expand Down
2 changes: 1 addition & 1 deletion src-elm/Main.elm
Original file line number Diff line number Diff line change
Expand Up @@ -366,7 +366,7 @@ getNextRoundInfo model =
, htmlIdOfAudioToPlay = "audio-work"
, nextRoundNumber = model.currentRoundNumber + 1
, nextTime = model.config.pomodoroDuration
, notification = getNotification "Short break completed" "focus round" "start_focus" model.config.shortBreakDuration Pomodoro
, notification = getNotification "Short break completed" "focus round" "start_focus" model.config.pomodoroDuration Pomodoro
}

LongBreak ->
Expand Down
2 changes: 1 addition & 1 deletion src-tauri/Cargo.lock

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

2 changes: 1 addition & 1 deletion src-tauri/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "pomodorolm"
version = "0.2.1"
version = "0.2.2"
description = "A Tauri App"
authors = ["Vincent Jousse"]
license = ""
Expand Down
2 changes: 1 addition & 1 deletion src-tauri/tauri.conf.json
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
}
},
"productName": "pomodorolm",
"version": "0.2.1",
"version": "0.2.2",
"identifier": "org.jousse.vincent.Pomodorolm",
"plugins": {},
"app": {
Expand Down

0 comments on commit cde0bb7

Please sign in to comment.