From 36e2c5bd3926a350a2245c82a9b7e954044ee5ba Mon Sep 17 00:00:00 2001 From: Danny van der Sluijs Date: Wed, 28 Feb 2024 14:50:40 +0100 Subject: [PATCH] Add ouderschapsverlof to leave tasks (#15) * fix: Set Ouderschapsverlof as leave task as well * Update version and changelog --------- Co-authored-by: Luca Scalzotto --- CHANGELOG.md | 4 ++++ README.md | 1 + manifest.json | 2 +- src/content/stats.ts | 1 + 4 files changed, 7 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b356d8d..4f4857f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## v1.8.1 + +- Add "Ouderschapsverlof" to leave tasks. + ## v1.8.0 - Show billability percentage in chart. diff --git a/README.md b/README.md index 14e269e..0af893e 100644 --- a/README.md +++ b/README.md @@ -35,6 +35,7 @@ These are entries with the following task names: - Bijzonder verlof - Feestdag +- Ouderschapsverlof - Tijd voor tijd - Verlof diff --git a/manifest.json b/manifest.json index 12e2406..8b50c8c 100644 --- a/manifest.json +++ b/manifest.json @@ -1,7 +1,7 @@ { "name": "TimeChimp Billability Chart", "description": "Adds a billability chart on the TimeChimp hours page.", - "version": "1.8.0", + "version": "1.8.1", "manifest_version": 3, "permissions": [ "webRequest" diff --git a/src/content/stats.ts b/src/content/stats.ts index 17916e7..6fe2314 100644 --- a/src/content/stats.ts +++ b/src/content/stats.ts @@ -4,6 +4,7 @@ import { getWeek, getYear } from 'date-fns'; const LEAVE_TASKS = [ 'Bijzonder verlof', 'Feestdag', + 'Ouderschapsverlof', 'Tijd voor tijd', 'Verlof', ];