Compare commits

...
3 Commits
Author SHA1 Message Date
klemek f3cd3b8086 style: show one-time tasks in italic
TS Lint / Oxlint (push) Successful in 1m42s
TS Lint / ESLint (push) Successful in 1m58s
TS Lint / TypeScript (push) Successful in 1m58s
Docker Build / build (push) Successful in 5m33s
2026-09-06 11:59:01 +02:00
klemek c91fc10f9f chore: 1.7.7
Python Lint CI / ruff-format-check (push) Successful in 2m46s
Python Lint CI / ty (push) Successful in 3m32s
TS Lint / Oxlint (push) Successful in 3m7s
TS Lint / ESLint (push) Successful in 3m16s
Docker Build / build (push) Successful in 7m29s
TS Lint / TypeScript (push) Successful in 1m50s
Python Lint CI / ruff (push) Successful in 3m4s
2026-08-10 12:48:31 +02:00
klemek ffab02a3f9 fix: rrule next reset
TS Lint / Oxlint (push) Canceled after 44s
TS Lint / ESLint (push) Canceled after 45s
Docker Build / build (push) Canceled after 45s
TS Lint / TypeScript (push) Canceled after 44s
2026-08-10 12:48:25 +02:00
5 changed files with 4 additions and 5 deletions
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "tout-doux",
"version": "1.7.6",
"version": "1.7.7",
"private": true,
"type": "module",
"engines": {
+1 -1
View File
@@ -1,6 +1,6 @@
[project]
name = "tout-doux"
version = "1.7.6"
version = "1.7.7"
description = ""
requires-python = ">=3.14"
dependencies = [
+1 -1
View File
@@ -173,7 +173,7 @@ watch(task, () => {
:class="showMissed && missed ? 'text-error' : ''"
@click.prevent="onOpen"
>
<div>{{ task.name }}</div>
<div :class="isOneTime(task.reset_cron) ? 'italic' : ''">{{ task.name }}</div>
<div
v-if="showLastChecked && !checked && task.check_date"
class="font-light text-xs italic"
-1
View File
@@ -201,7 +201,6 @@ export function nextCronReset(
try {
const rule = new RRule({
...RRule.parseString(cron),
count: 2,
});
return rule.after(date) ?? null;
Generated
+1 -1
View File
@@ -323,7 +323,7 @@ asyncpg = [
[[package]]
name = "tout-doux"
version = "1.7.6"
version = "1.7.7"
source = { editable = "." }
dependencies = [
{ name = "flask", extra = ["async"] },