V0.1 release #11

Merged
kelly merged 19 commits from v0.1 into main 2026-06-02 20:49:08 -05:00
Showing only changes of commit 075c6079c3 - Show all commits
+2 -2
View File
@@ -103,7 +103,7 @@ function Receive-Webhook
}
"task.reminder" {
$notificationTitle = "Donetick Task Reminder"
$notificationContent = "$($payload.data.name) is due at $(Get-Date $payload.data.due_date)"
$notificationContent = "$($payload.data.name) is due at $((Get-Date $payload.data.due_date).ToLocalTime())"
}
"task.created" {
$notificationTitle = "Donetick Task Created"
@@ -113,7 +113,7 @@ function Receive-Webhook
}
else
{
$notificationContent = "$($payload.data.chore.name) created with due date of $(Get-Date $payload.data.chore.nextDueDate)"
$notificationContent = "$($payload.data.chore.name) created with due date of $((Get-Date $payload.data.chore.nextDueDate).ToLocalTime())"
}
}
default {