diff --git a/CHANGELOG.md b/CHANGELOG.md index a18f1fb..8c9a9ab 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,12 @@ 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 @@ -9,6 +15,10 @@ All notable changes to this project will be documented in this file. - 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 diff --git a/aur/PKGBUILD b/aur/PKGBUILD index f928d3b..80d2df7 100644 --- a/aur/PKGBUILD +++ b/aur/PKGBUILD @@ -1,6 +1,6 @@ # Maintainer: Vincent Jousse - 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') diff --git a/org.jousse.vincent.Pomodorolm.metainfo.xml b/org.jousse.vincent.Pomodorolm.metainfo.xml index 0c32a5c..c24c833 100644 --- a/org.jousse.vincent.Pomodorolm.metainfo.xml +++ b/org.jousse.vincent.Pomodorolm.metainfo.xml @@ -24,6 +24,9 @@ + + https://github.com/vjousse/pomodorolm/releases/tag/app-v0.2.2 + https://github.com/vjousse/pomodorolm/releases/tag/app-v0.2.1 diff --git a/package-lock.json b/package-lock.json index f1c92e7..2297811 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "pomodorolm", - "version": "0.2.1", + "version": "0.2.2", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "pomodorolm", - "version": "0.2.1", + "version": "0.2.2", "dependencies": { "@tauri-apps/api": ">=2.0.0-beta.0", "@tauri-apps/plugin-log": ">=2.0.0-rc.1", diff --git a/package.json b/package.json index d0fb1f0..8800365 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "pomodorolm", "private": true, - "version": "0.2.1", + "version": "0.2.2", "type": "module", "scripts": { "dev": "vite", diff --git a/snapcraft.yaml b/snapcraft.yaml index 06cc350..ccd3aeb 100644 --- a/snapcraft.yaml +++ b/snapcraft.yaml @@ -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. diff --git a/src-elm/Main.elm b/src-elm/Main.elm index 9797e84..c78894a 100644 --- a/src-elm/Main.elm +++ b/src-elm/Main.elm @@ -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 -> diff --git a/src-tauri/Cargo.lock b/src-tauri/Cargo.lock index 5c8a15b..57d47d4 100644 --- a/src-tauri/Cargo.lock +++ b/src-tauri/Cargo.lock @@ -3499,7 +3499,7 @@ dependencies = [ [[package]] name = "pomodorolm" -version = "0.2.1" +version = "0.2.2" dependencies = [ "futures", "hex_color", diff --git a/src-tauri/Cargo.toml b/src-tauri/Cargo.toml index 0e43cee..c2eb346 100644 --- a/src-tauri/Cargo.toml +++ b/src-tauri/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pomodorolm" -version = "0.2.1" +version = "0.2.2" description = "A Tauri App" authors = ["Vincent Jousse"] license = "" diff --git a/src-tauri/tauri.conf.json b/src-tauri/tauri.conf.json index 79e1c2d..49015a8 100644 --- a/src-tauri/tauri.conf.json +++ b/src-tauri/tauri.conf.json @@ -41,7 +41,7 @@ } }, "productName": "pomodorolm", - "version": "0.2.1", + "version": "0.2.2", "identifier": "org.jousse.vincent.Pomodorolm", "plugins": {}, "app": {